Sunday, June 28th, 2009 12:18 AM
You can use this command to create a screencast using ffmpeg.
ffmpeg -f x11grab -s 800x600 -i :0.0 /tmp/screencast.mpg
No Comments »
Friday, October 17th, 2008 11:17 PM
This command uses ffmpeg to convert a regular video into 3gp format thats used in mobile phones
ffmpeg -i input_video.mp4 -s 176x144 -vcodec h263 -r 25 -b 12200 -ab 12200 -ac 1 -ar 8000 output_video.3gp
Original Article
1 Comment »
Friday, August 8th, 2008 11:15 PM
FFMPEG command to mix an audio file with a video file to create a final video.
ffmpeg -vcodec flv -qscale 9.5 -r 25 -ar 22050 -ab 32k -s 320x240 -i 1.mp3 -i Meta.ogv final.flv
4 Comments »
Wednesday, August 6th, 2008 09:47 PM
Linux command to convert a video file to PSP format using ffmpeg. After converting, copy the OutputFile to the video folder in your PSP.
ffmpeg -i "OriginalFile.avi" -f psp -r 29.97 -b 768k -ar 24000 -ab 64k -s 320x240 "OutputFile.mp4"
4 Comments »
Friday, September 7th, 2007 10:38 PM
Convert FLV file to MPEG using ffmpeg
ffmpeg -i myFile.flv -ab 56 -ar 22050 -b 500 -s 320x240 myFile.mpg
5 Comments »