FFmpeg SVN-r18602 (18.04.2009)
FFmpeg is a complete, cross-platform solution to record, convert and stream audio and video.
FFmpeg can also convert from any sample rate to any other, and resize video on the fly with a high quality polyphase filter.
Thanks to Bernd Roesch and his improved ixemul includes, it was possible to compile the latest version of FFmpeg for Amiga 68k. There is no FFplay video player in the archive, because it is still not stable enough to be released.
Examples:
1. convert avi file to mpg with audio bitrate 128kb & video bitrate 1024kb:
ffmpeg -i test.avi -acodec mp2 -ab 128kb -vcodec mpeg1video -b 1024kb test.mpg
2. convert wmv file to avi (divx) with audio bitrate 256kb and video bitrate 1024kb:
ffmpeg -i test.wmv -acodec libmp3lame -ab 256kb -vcodec msmpeg4v2 -b 1024kb test.avi
3. convert jpeg 2000 image file to bmp:
ffmpeg -i test.jp2 test.bmp
4. convert wma audio file to flac:
ffmpeg -i test.wma test.flac
Amiga 68k port by Piotr Bandurski