Tuesday 15 April 2014

ffmpeg Scripts

A collection of ffmpeg scripts I've created and added to my path that solve specific problems: XBOX compatible MP4
 ffmpeg -i "$1" -c:v libx264 -profile:v high -crf 22 -strict experimental -c:a aac -q:a 6 "$1.mp4"  
Convert to MP3
 ffmpeg -i "$1" "$1.mp3"  
Convert to MPEG
 ffmpeg -i "$1" -qscale:v 1 "$1.mpg"  
The last one is useful for appending videos together before final conversion.

No comments:

Post a Comment