AutoHotkey Community

It is currently May 26th, 2012, 3:50 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 16 posts ]  Go to page 1, 2  Next
Author Message
PostPosted: April 8th, 2009, 5:56 am 
Offline

Joined: February 29th, 2008, 12:11 pm
Posts: 943
Can anyone please tell me how I could convert a .flv video file into a .vmv .avi or .mpg video file?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 8th, 2009, 7:05 am 
Offline
User avatar

Joined: December 29th, 2004, 1:28 pm
Posts: 2542
SUPER ©


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 8th, 2009, 10:58 am 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
MediaCoder

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 8th, 2009, 11:25 am 
Offline

Joined: February 29th, 2008, 12:11 pm
Posts: 943
Thank you


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 9th, 2009, 11:10 am 
Offline

Joined: April 9th, 2009, 11:08 am
Posts: 4
Location: Germany
check out this program - http://www.geovid.com/Flash_To_Video_Encoder/


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 10th, 2009, 9:11 am 
Offline

Joined: February 29th, 2008, 12:11 pm
Posts: 943
WOW!!! That one is also good! Thank you.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 10th, 2009, 9:20 am 
Offline

Joined: April 9th, 2009, 11:08 am
Posts: 4
Location: Germany
you are welcome! :)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 25th, 2009, 2:37 pm 
I like geovid's program too!!!


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: May 29th, 2009, 9:04 pm 
Offline

Joined: March 3rd, 2008, 2:48 pm
Posts: 12
Location: Inside your mind.
Linux Alternates, anyone? SUPER isn't supported! :x

_________________
ImageImage
ImageImage


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 28th, 2009, 9:47 am 
Offline

Joined: November 16th, 2009, 7:04 am
Posts: 1
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2010, 9:06 am 
Titan wrote:


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.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2010, 1:58 pm 
Offline

Joined: April 19th, 2005, 10:26 am
Posts: 2249
Location: switzerland
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"
   }



Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2010, 3:24 pm 
Offline

Joined: May 12th, 2009, 2:37 pm
Posts: 640
Location: Gloucester UK
You could also give Zamzar a try. They'll convert almost anything into almost anything. (but a different almost anything)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2010, 5:28 pm 
Offline

Joined: August 23rd, 2004, 10:06 pm
Posts: 276
Location: East Bay, California USA
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?"
-----------------------------


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 31st, 2010, 1:13 pm 
Offline

Joined: March 31st, 2010, 1:09 pm
Posts: 1
Hi, I am here to mention iSkysoft Video Converter. I've been using it for years and working well.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 16 posts ]  Go to page 1, 2  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: 0x150||ISO, Yahoo [Bot] and 8 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group