Forum Discussion
mikedehaan
15 years agoVisitor
Here is the encoding command I've been using:
Where $1 is the input file (usually m2ts) and $2 is the output (mp4).
ffmpeg -y -i $1 \
-acodec libfaac -ab 128k -ar 44100 -ac 2 \
-vcodec libx264 -vpre roku -b 2048k -r 29.97 -s 720x480 -vframes 464 -threads 0 $2
Where $1 is the input file (usually m2ts) and $2 is the output (mp4).