Skip to content

Instantly share code, notes, and snippets.

@gringoh
Last active August 16, 2023 21:04
Show Gist options
  • Save gringoh/98399d9a37cd151a1e935e97784b1e58 to your computer and use it in GitHub Desktop.
Save gringoh/98399d9a37cd151a1e935e97784b1e58 to your computer and use it in GitHub Desktop.
[ffmpeg: mov-to-mp4] #ffmpeg

ffmpeg: Convert .mov to .mp4

ffmpeg -i input.mov -vcodec h264 -an output.mp4

ffmpeg: Reduce video size with minimal quality loss

ffmpeg -i input.mpg -c:v libx265 -crf 23 -preset medium -c:a aac -b:a 128k output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment