Convert video to mobile devices



ffmpeg -i input.mov \
-c:v libx264 -crf 23 -profile:v baseline -level 3.0 -pix_fmt yuv420p \
-c:a aac -ac 2 -b:a 128k \
-movflags faststart \
output.mp4

Link: What ffmpeg command line produces video more compatible across all devices?


Leave a Reply

Your email address will not be published. Required fields are marked *