From d9dd1a8bce1f4e91a80c10ba3608a89f63f074b8 Mon Sep 17 00:00:00 2001 From: Steve George Date: Wed, 11 Feb 2026 09:16:26 +0000 Subject: [PATCH] gnu: Add obs-branch-output. * gnu/packages/video.scm (obs-branch-output): New variable. Change-Id: I0945d487f325bf25a9977a761cfdbba9244604c4 Signed-off-by: Steve George --- gnu/packages/video.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 6ad5b17ef3..6989a64b3e 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")