diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-05-28 23:27:36 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-05-29 21:15:39 -0400 |
commit | 9e5d9f4a2dce590e306ff99770cf51e55b5a8fab (patch) | |
tree | 7b8c34638ed99e245fd26e274982ae8dec84fb60 /gnu/packages/video.scm | |
parent | def8733e035dd08300df3894b38f828dd9b6cc2e (diff) | |
download | guix-9e5d9f4a2dce590e306ff99770cf51e55b5a8fab.tar.gz guix-9e5d9f4a2dce590e306ff99770cf51e55b5a8fab.zip |
gnu: ffmpeg-jami: Enable pipewire support.
* gnu/packages/video.scm (ffmpeg-jami)
[arguments]: Update configure flags.
[inputs]: Add pipewire.
* gnu/packages/patches/ffmpeg-jami-pipewiregrab-source-filter.patch: Fix
includes.
Change-Id: Ife3bf532496bc06144c1cbbcea50e406a58ecc7a
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 2e7ba6d10e..0960410498 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2050,6 +2050,11 @@ audio/video codec library.") "--disable-programs" "--disable-postproc" + "--enable-libpipewire" + "--enable-filter=pipewiregrab" + "--enable-indev=lavfi" + "--enable-decoder=wrapped_avframe" + "--disable-protocols" "--enable-protocol=crypto" "--enable-protocol=file" @@ -2257,7 +2262,9 @@ audio/video codec library.") "--enable-encoder=vp8_vaapi" "--enable-encoder=mjpeg_vaapi" "--enable-encoder=hevc_vaapi") - '()))))))) + '()))))) + (inputs (modify-inputs (package-inputs ffmpeg) + (append pipewire))))) (define-public ffmpegthumbnailer (package |