Check out my first novel, midnight's simulacra!

FFmpeg: Difference between revisions

From dankwiki
(Created page with "Best by test. The original quasi-legal, hyperbroad, coldly efficient library for decoding, encoding, and munging digital media. ==Build options== * <tt>--enable-gpl</tt> forc...")
 
No edit summary
Line 4: Line 4:
* <tt>--enable-gpl</tt> forces creation of GPL-only modules (including e.g. <i>delogo</i>). the resulting object is GPL-licensed.
* <tt>--enable-gpl</tt> forces creation of GPL-only modules (including e.g. <i>delogo</i>). the resulting object is GPL-licensed.
* <tt>--enable-nvenc</tt> forces use of [https://en.wikipedia.org/wiki/Nvidia_NVENC NVENC] (requires [https://github.com/FFmpeg/nv-codec-headers nv-codec-headers])
* <tt>--enable-nvenc</tt> forces use of [https://en.wikipedia.org/wiki/Nvidia_NVENC NVENC] (requires [https://github.com/FFmpeg/nv-codec-headers nv-codec-headers])
==Recipes==
===Remove audio===
<tt>ffmpeg -i INPUT -c copy -an OUTPUT</tt>

Revision as of 17:11, 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 -c copy -an OUTPUT