ffmpeg convert mov file to mp4 for HTML5 video tag IE9
For ffmpeg: ffmpeg -i {input}.mov -vcodec h264 -acodec aac -strict -2 {output}.mp4 You may also add the -q:v/-q:a parameter to specify the quality of the video. You may also use HandBrake which is a simpler encoder than ffmpeg. For HandBrake: handbrakecli -i {input}.mov -e x264 -E facc -o {output}.mp4 EDIT: I found the solution! … Read more