Convert .AVI video to PSP friendly .MP4 video file in Linux with FFMPEG


Convert .AVI video to a PSP friendly .MP4 video file in Linux with FFMPEG:

$ ffmpeg -i input.avi -b 300 -s 320x240 -vcodec xvid -ab 32 -ar 24000 -acodec aac output.mp4

*NOTES:
- Where input is the source file and output the outcome file.
- the $ sign at the start of the command is to signify the terminal's prompt, no need to type this in.

0 comments:

Post a Comment