diff options
author | Murilo <murilo@disroot.org> | 2024-09-19 23:07:13 -0300 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2024-11-28 14:26:34 +0800 |
commit | 6e864249c2025863e18e42587cb42764a99bec27 (patch) | |
tree | 6f455061b624da3f57bd8f4746a505db9ca3b815 | |
parent | 479801db4dd8bb6dd6cf198cdfc6653dd099eb13 (diff) |
nongnu: Add obs-nvenc.
* nongnu/packages/video.scm (obs-nvenc): New variable.
Signed-off-by: Hilton Chain <hako@ultrarare.space>
-rw-r--r-- | nongnu/packages/video.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nongnu/packages/video.scm b/nongnu/packages/video.scm index 6075646..ce747c5 100644 --- a/nongnu/packages/video.scm +++ b/nongnu/packages/video.scm @@ -222,3 +222,13 @@ codec APIs.") (package-description obs) " This build of OBS includes embeded Chromium-based browser to enable Browser source.")))) + +(define-public obs-nvenc + (let ((obs-ffmpeg-nvenc (replace-ffmpeg-nvenc obs))) + (package/inherit obs-ffmpeg-nvenc + (name "obs-nvenc") + (description + (string-append + (package-description obs) + " This build of OBS includes the nonfree NVIDIA encoder for FFmpeg +@code{h264_nvenc} and @code{hevc_nvenc} hardware encoding on NVIDIA GPUs."))))) |