====== Creating mp4 files compatible with Flowplayer using ffmpeg ====== I'm using the excellent embeddable flash applet, [[http://flowplayer.org|Flowplayer]] to display videos online taken with my digital camera. Unfortunately my dc saves videos in an AVI container with MJPEG video and PCM audio so I have to convert them to a more web-friendly and modern format using [[http://www.ffmpeg.org|ffmpeg]]. ffmpeg -vcodec h264 -b 1000k -acodec aac -ab 128k -i input.avi output.mp4 {{tag>ffmpeg video mp4 avi mjpeg pcm aac h264 convert flowplayer}} ~~LINKBACK~~