ffmpeg-full: add AV1 encoder with libaom (#43789)
This commit is contained in:
parent
2428f5dda1
commit
954489df24
|
@ -68,6 +68,7 @@
|
||||||
, ladspaH ? null # LADSPA audio filtering
|
, ladspaH ? null # LADSPA audio filtering
|
||||||
, lame ? null # LAME MP3 encoder
|
, lame ? null # LAME MP3 encoder
|
||||||
, libass ? null # (Advanced) SubStation Alpha subtitle rendering
|
, libass ? null # (Advanced) SubStation Alpha subtitle rendering
|
||||||
|
, libaom ? null # AV1 encoder
|
||||||
, libbluray ? null # BluRay reading
|
, libbluray ? null # BluRay reading
|
||||||
, libbs2b ? null # bs2b DSP library
|
, libbs2b ? null # bs2b DSP library
|
||||||
, libcaca ? null # Textual display (ASCII art)
|
, libcaca ? null # Textual display (ASCII art)
|
||||||
|
@ -334,6 +335,7 @@ stdenv.mkDerivation rec {
|
||||||
#(enableFeature (ilbc != null) "libilbc")
|
#(enableFeature (ilbc != null) "libilbc")
|
||||||
(enableFeature (ladspaH !=null) "ladspa")
|
(enableFeature (ladspaH !=null) "ladspa")
|
||||||
(enableFeature (lame != null) "libmp3lame")
|
(enableFeature (lame != null) "libmp3lame")
|
||||||
|
(enableFeature (libaom != null) "libaom")
|
||||||
(enableFeature (libass != null) "libass")
|
(enableFeature (libass != null) "libass")
|
||||||
#(enableFeature (libavc1394 != null) null null)
|
#(enableFeature (libavc1394 != null) null null)
|
||||||
(enableFeature (libbluray != null) "libbluray")
|
(enableFeature (libbluray != null) "libbluray")
|
||||||
|
@ -407,7 +409,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
bzip2 celt fontconfig freetype frei0r fribidi game-music-emu gnutls gsm
|
bzip2 celt fontconfig freetype frei0r fribidi game-music-emu gnutls gsm
|
||||||
libjack2 ladspaH lame libass libbluray libbs2b libcaca libdc1394 libmodplug libmysofa
|
libjack2 ladspaH lame libaom libass libbluray libbs2b libcaca libdc1394 libmodplug libmysofa
|
||||||
libogg libopus libssh libtheora libvdpau libvorbis libvpx libwebp libX11
|
libogg libopus libssh libtheora libvdpau libvorbis libvpx libwebp libX11
|
||||||
libxcb libXv lzma openal openjpeg libpulseaudio rtmpdump opencore-amr
|
libxcb libXv lzma openal openjpeg libpulseaudio rtmpdump opencore-amr
|
||||||
samba SDL2 soxr speex vid-stab vo-amrwbenc wavpack x264 x265 xavs xvidcore
|
samba SDL2 soxr speex vid-stab vo-amrwbenc wavpack x264 x265 xavs xvidcore
|
||||||
|
|
Loading…
Reference in New Issue