Check out my first novel, midnight's simulacra!

FFmpeg: Difference between revisions

From dankwiki
No edit summary
No edit summary
Line 8: Line 8:
==Recipes==
==Recipes==
===Remove audio===
===Remove audio===
<tt>ffmpeg -i INPUT -c copy -an OUTPUT</tt>
<tt>ffmpeg -i INPUT -vcodec copy -an OUTPUT</tt>

Revision as of 17:12, 28 February 2021

Best by test. The original quasi-legal, hyperbroad, coldly efficient library for decoding, encoding, and munging digital media.

Build options

  • --enable-gpl forces creation of GPL-only modules (including e.g. delogo). the resulting object is GPL-licensed.
  • --enable-nvenc forces use of NVENC (requires nv-codec-headers)


Recipes

Remove audio

ffmpeg -i INPUT -vcodec copy -an OUTPUT