diff options
| author | Steve George <steve@futurile.net> | 2026-02-11 09:16:26 +0000 |
|---|---|---|
| committer | Steve George <steve@futurile.net> | 2026-02-14 21:35:01 +0000 |
| commit | d9dd1a8bce1f4e91a80c10ba3608a89f63f074b8 (patch) | |
| tree | 001407ace02e744f4bc3b576b30db31686e13835 /gnu | |
| parent | 3129949de6cbafbff60bd0abd106c259ae0c4553 (diff) | |
gnu: Add obs-branch-output.
* gnu/packages/video.scm (obs-branch-output): New variable.
Change-Id: I0945d487f325bf25a9977a761cfdbba9244604c4
Signed-off-by: Steve George <steve@futurile.net>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/video.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 6ad5b17ef35..6989a64b3eb 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -4364,6 +4364,36 @@ applied via a static image (.png, .jpeg, etc). ") (license license:gpl2))) +(define-public obs-branch-output + (package + (name "obs-branch-output") + (version "1.0.7") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/OPENSPHERE-Inc/branch-output/releases/download/" + version "/osi-branch-output-" version "-source.tar.xz")) + (sha256 + (base32 + "01ijh6hyp7x2gn83y2rjyaqbgcjar5p5fnaw35k7kanxdg2awzn7")))) + (build-system cmake-build-system) + (arguments + (list + #:tests? #f ;no tests + #:generator "Ninja" + #:configure-flags + #~(list "-DBUILD_OUT_OF_TREE=ON" "-Wno-dev"))) + (inputs (list obs qtbase simde)) + (home-page "https://github.com/OPENSPHERE-Inc/branch-output") + (synopsis "This OBS plugin can record individual sources and scenes") + (description "An OBS plugin to record or stream individual OBS +@code{sources} or @code{scenes}. It's an alternative to the +@command{Source Record} plugin, but more focused on streaming. The plugin can +be used to simultaneously stream to multiple platforms, or to record +@code{sources} to different files providing flexibility during editing.") + (license license:gpl2))) + (define-public obs-composite-blur (package (name "obs-composite-blur") |
