Posts Tagged With: ffmpeg

Add Audio to a Video File Using ffmpeg

Tagged with: , , , , , ,

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
2 Comments »

Linux Command to Convert a Video to PSP’s MP4 Format

Tagged with: , , , , , ,

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"
No Comments »

Convert FLV file to MPEG

Tagged with: , , , , , , ,

Convert FLV file to MPEG using ffmpeg


ffmpeg -i myFile.flv -ab 56 -ar 22050 -b 500 -s 320x240 myFile.mpg
1 Comment »