Skip to content

Instantly share code, notes, and snippets.

@igarag
Last active June 7, 2020 12:26
Show Gist options
  • Save igarag/42341fb7f52a6aa59a754f2af5798422 to your computer and use it in GitHub Desktop.
Save igarag/42341fb7f52a6aa59a754f2af5798422 to your computer and use it in GitHub Desktop.
Comandos ffmpeg

ffmpeg commands

Extract all video frames and save it in png format

ffmpeg -i <<video>> -vf "select=eq(pict_type\,I)" -vsync vfr frame_%04d.png -hide_banner

Convert from mvk to mp4

ffmpeg -i input.mkv -codec copy output.mp4

Source: Ask Ubuntu topic

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment