Skip to content

Instantly share code, notes, and snippets.

@makokal
Last active August 29, 2015 13:56
Show Gist options
  • Save makokal/8933194 to your computer and use it in GitHub Desktop.
Save makokal/8933194 to your computer and use it in GitHub Desktop.
convert mp4 to mov and other formats
# mp4 to mov
ffmpeg -i pedsim_video3d.mp4 -acodec copy -vcodec copy -f mov pedsim.mov
# mp4 to avi
ffmpeg -i pedsim_video3d.mp4 -vcodec mpeg4 -acodec ac3 -ar 48000 -ab 192k pedsim.avi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment