How exactly do i do this? I have the cvs versions of both mplayer and ffmpeg installed, but its almost next to impossible to find a tutorial on using ffmpeg. I tried this:
Didn't work, am i even doing it right?Code:$ ffmpeg -i rome.avi -f mpeg rome.mpeg Input #0, avi, from 'rome.avi': Duration: 00:01:16.4, bitrate: 5155 kb/s Stream #0.0: Video: cinepak, 400x300, 25.00 fps Stream #0.1: Audio: adpcm_ms, 44100 Hz, stereo, 354 kb/s Output #0, mpeg, to 'rome.mpeg': Stream #0.0: Video: mpeg1video, 400x300, 25.00 fps, q=2-31, 200 kb/s Stream #0.1: Audio: mp2, 44100 Hz, stereo, 64 kb/s Stream mapping: Stream #0.0 -> #0.0 Stream #0.1 -> #0.1 Press [q] to stop encoding Segmentation fault
Thanks.
+ Reply to Thread
Results 1 to 3 of 3
-
-
Try this:
Code:ffmpeg -i file.avi -y -f vcd -vcodec mpeg1video -map 0.0:0.0 -b 1150 -s 352x240 -r 29.97 -g 12 -qmin 3 -qmax 13 -hq -acodec mp2 -ab 224 -ar 44100 -ac 2 -map 0.1:0.1 movie.mpg
Similar Threads
-
help with ffmpeg args to convert .m4v to .m2v or .mpeg
By rhfritz in forum Video ConversionReplies: 3Last Post: 28th Apr 2011, 12:09 -
Using ffmpeg command line to convert a .vob(DVD) to avi/mpeg
By alfo666 in forum Newbie / General discussionsReplies: 1Last Post: 13th Sep 2009, 03:14 -
How to use FFMPEG to convert avi/wmv to 3g2 files(mobiile phone)?
By alfo666 in forum Newbie / General discussionsReplies: 3Last Post: 5th Sep 2009, 17:10 -
convert avi to dvd with ffmpeg doesn't work-why?
By lilly333 in forum ffmpegX general discussionReplies: 21Last Post: 18th Mar 2009, 16:00 -
problems with ffmpeg x - trying to convert QT and AVI files to Flash
By Aylam in forum ffmpegX general discussionReplies: 7Last Post: 17th Sep 2008, 20:50