mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #91697 from lukegb/ffmpeg-full-libsrt
ffmpeg: add libsrt support
This commit is contained in:
commit
2451111d69
1 changed files with 3 additions and 1 deletions
|
@ -118,6 +118,7 @@
|
|||
#, shine ? null # Fixed-point MP3 encoder
|
||||
, soxr ? null # Resampling via soxr
|
||||
, speex ? null # Speex de/encoder
|
||||
, srt ? null # Secure Reliable Transport (SRT) protocol
|
||||
#, twolame ? null # MP2 encoder
|
||||
#, utvideo ? null # Ut Video de/encoder
|
||||
, vid-stab ? null # Video stabilization
|
||||
|
@ -355,6 +356,7 @@ stdenv.mkDerivation rec {
|
|||
#(enableFeature (libnut != null) "libnut")
|
||||
(enableFeature (libopus != null) "libopus")
|
||||
(enableFeature (librsvg != null) "librsvg")
|
||||
(enableFeature (srt != null) "libsrt")
|
||||
(enableFeature (libssh != null) "libssh")
|
||||
(enableFeature (libtheora != null) "libtheora")
|
||||
(enableFeature (if isLinux then libv4l != null else false) "libv4l2")
|
||||
|
@ -418,7 +420,7 @@ stdenv.mkDerivation rec {
|
|||
libjack2 ladspaH lame libaom libass libbluray libbs2b libcaca libdc1394 libmodplug libmysofa
|
||||
libogg libopus librsvg libssh libtheora libvdpau libvorbis libvpx libwebp libX11
|
||||
libxcb libXv libXext lzma openal openjpeg libpulseaudio rtmpdump opencore-amr
|
||||
samba SDL2 soxr speex vid-stab vo-amrwbenc wavpack x264 x265 xavs xvidcore
|
||||
samba SDL2 soxr speex srt vid-stab vo-amrwbenc wavpack x264 x265 xavs xvidcore
|
||||
zeromq4 zlib
|
||||
] ++ optionals openglExtlib [ libGL libGLU ]
|
||||
++ optionals nonfreeLicensing [ fdk_aac openssl ]
|
||||
|
|
Loading…
Reference in a new issue