2012-11-24

ffmpeg/avconv Parameters for Kindle Fire

Just taking a note for myself:
# For libx264
apt-get install ffmpeg libavcodec-extra-53
# For input < 1024x600
avconv -i INPUT -acodec aac -ab 96k -vcodec libx264 -f mp4 -crf 22 -strict experimental OUTPUT.mp4
# For input > 1024x600
ffmpeg -i INPUT -acodec aac -ab 96k -vcodec libx264 -f mp4 -crf 22 -s 1024x600 -strict experimental OUTPUT
Copied from ConversionMatrix, only that -vpre slow is no longer supported.