AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Converting .flv into .vmv .avi or .mpg
Goto page 1, 2  Next
 
Reply to topic    AutoHotkey Community Forum Index -> General Chat
View previous topic :: View next topic  
Author Message
Benny-D



Joined: 29 Feb 2008
Posts: 865

PostPosted: Wed Apr 08, 2009 4:56 am    Post subject: Converting .flv into .vmv .avi or .mpg Reply with quote

Can anyone please tell me how I could convert a .flv video file into a .vmv .avi or .mpg video file?
Back to top
View user's profile Send private message
corrupt



Joined: 29 Dec 2004
Posts: 2485

PostPosted: Wed Apr 08, 2009 6:05 am    Post subject: Reply with quote

SUPER ©
Back to top
View user's profile Send private message Visit poster's website
polyethene



Joined: 11 Aug 2004
Posts: 5248
Location: UK

PostPosted: Wed Apr 08, 2009 9:58 am    Post subject: Reply with quote

MediaCoder
_________________
GitHubScriptsIronAHK Contact by email not private message.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Benny-D



Joined: 29 Feb 2008
Posts: 865

PostPosted: Wed Apr 08, 2009 10:25 am    Post subject: Reply with quote

Thank you
Back to top
View user's profile Send private message
GodlikeFish



Joined: 09 Apr 2009
Posts: 4
Location: Germany

PostPosted: Thu Apr 09, 2009 10:10 am    Post subject: Reply with quote

check out this program - http://www.geovid.com/Flash_To_Video_Encoder/
Back to top
View user's profile Send private message
Benny-D



Joined: 29 Feb 2008
Posts: 865

PostPosted: Fri Apr 10, 2009 8:11 am    Post subject: Reply with quote

WOW!!! That one is also good! Thank you.
Back to top
View user's profile Send private message
GodlikeFish



Joined: 09 Apr 2009
Posts: 4
Location: Germany

PostPosted: Fri Apr 10, 2009 8:20 am    Post subject: Reply with quote

you are welcome! Smile
Back to top
View user's profile Send private message
Guest






PostPosted: Mon May 25, 2009 1:37 pm    Post subject: Reply with quote

I like geovid's program too!!!
Back to top
ProfessorY91



Joined: 03 Mar 2008
Posts: 12
Location: Inside your mind.

PostPosted: Fri May 29, 2009 8:04 pm    Post subject: Reply with quote

Linux Alternates, anyone? SUPER isn't supported! Mad
_________________

Back to top
View user's profile Send private message
dapengfei



Joined: 16 Nov 2009
Posts: 1

PostPosted: Mon Dec 28, 2009 8:47 am    Post subject: Reply with quote

you can try Moyea FLV Converter
it is a one-stop tool designed for you to enjoy any web videos (*.flv, *f4v) from video-sharing websites like YouTube.
With it, you can edit and convert your FLV or F4V to other formats like MP4, 3GP, AVI, SWF, MPG, MPEG-4 and so on.
Back to top
View user's profile Send private message
Guest






PostPosted: Wed Jan 20, 2010 8:06 am    Post subject: Reply with quote

Titan wrote:
MediaCoder


I got problem with MediaCoder! I am using XP PRO SP2 ... and I always use the 7Z format of the MediaCoder ... I like "self-contained" programs ...

Anyway, the ONLY Version of MediaCoder that works for me is 0.6.1.4045 - which according to the Author of MediCoder is the latest "Stable" version.

So, I have not been able to ENJOY or experiment with any other version after 4045 ... I tried again 4130 version (latest one) ... both 7Z and .EXE version and I get perfect picture but Audio ... well is all Garbled Up and Out-of-Sync.
Back to top
garry



Joined: 19 Apr 2005
Posts: 2213
Location: switzerland

PostPosted: Wed Jan 20, 2010 12:58 pm    Post subject: Reply with quote

I tried this for Nokia mobilphone

Quote:
http://www.davidtavarez.com/wp-content/2009/12/ffmpeg-r17988-komeil.cab ;---ffmpeg.exe download
-run,%comspec% /k ffmpeg.exe -i test.mp4 -ab 192k target2.mp3 ;---convert video to mp3
-run,%comspec% /k ffmpeg.exe -i test.mp4 -s qvga -r 25 target_V1.mp4 ;---qvga=320*240 nokia
http://ffmpeg.org/documentation.html ;---ffmpeg documentation

http://www.videohelp.com/tools/ffmpeg ;--- help
http://www.videohelp.com/download/ffmpeg-0.5.7z ;--- download all

one screenshot, make 300 copies ( img001.png to img300.png ) and build a 10 second Index.mpg file with:
-RunWait ffmpeg.exe -f image2 -i img`%03d.png -sameq -r 29.970 index.mpg,,
--------------------
c:\_INPUT ;-videofiles see buttons MP4toMP3OUT MP4toMP4OUT
c:\_OUTPUT ;-videofiles ( or MP3 ) converted to 320*240 for nokia
--------------------





VIDEO flv mp4 to Nokia format 320*240

Code:
;=============================

MP4toMP4OUT:

;qvga  320*240  Nokia
;vga   640*480
;svga  800*600
;xga  1024*768

Loop,%REC%\*.*,0,1
   {
   ALF= %A_LoopFileFullPath%
   SplitPath, ALF, name, dir, ext, name_no_ext, drive
   if ext=mp4
      runwait,%comspec% /k ffmpeg.exe -i "%ALF%" -s qvga -r 25 "%out%\%name%"    ;--qvga=320*240
   if ext=flv
      runwait,%comspec% /c ffmpeg.exe -i "%ALF%" -s qvga -r 25 "%out%\%name_no_ext%.mp4"
   if ext=mpg
      runwait,%comspec% /c ffmpeg.exe -i "%ALF%" -s svga -r 25 "%out%\%name_no_ext%.mp4"
   }



Audio flv mp4 to mp3
Code:
;============================================================================================
out=c:\OUTPUT
MP4toMP3OUT:
Loop, c:\rec\*.*,0,1
   {
   ALF= %A_LoopFileFullPath%
   SplitPath, ALF, name, dir, ext, name_no_ext, drive
   if (ext="mp4" or ext="flv")
      runwait,%comspec% /c ffmpeg.exe -i "%ALF%" -ab 128k "%out%\%name_no_ext%.mp3"
   }

Back to top
View user's profile Send private message
wooly_sammoth



Joined: 12 May 2009
Posts: 634
Location: Gloucester UK

PostPosted: Wed Jan 20, 2010 2:24 pm    Post subject: Reply with quote

You could also give Zamzar a try. They'll convert almost anything into almost anything. (but a different almost anything)
Back to top
View user's profile Send private message Visit poster's website
Wingfat



Joined: 23 Aug 2004
Posts: 275
Location: East Bay, California USA

PostPosted: Wed Jan 20, 2010 4:28 pm    Post subject: Reply with quote

why cant we make a converter with AHK? i think that would be sweet. I am always converting videos off my cell phone to view through my PS3 on the big screen.
_________________
----------------------------
Wingfool you fat! I mean, Wingfat you fool!
Line from Woody Allen's movie "What's Up Tiger Lilly?"
-----------------------------
Back to top
View user's profile Send private message
wenling85



Joined: 31 Mar 2010
Posts: 1

PostPosted: Wed Mar 31, 2010 12:13 pm    Post subject: Reply with quote

Hi, I am here to mention iSkysoft Video Converter. I've been using it for years and working well.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> General Chat All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group