Package Details: obs-v4l2sink-git 0.1.0.r12.1ec3c8a+obs25.0.8-3

Git Clone URL: https://aur.archlinux.org/obs-v4l2sink-git.git (read-only, click to copy)
Package Base: obs-v4l2sink-git
Description: v4l2-output for obs-studio
Upstream URL: https://github.com/CatxFish/obs-v4l2sink
Licenses: GPL
Conflicts: obs-v4l2sink
Provides: obs-v4l2sink
Submitter: mazieres
Maintainer: mazieres
Last Packager: mazieres
Votes: 4
Popularity: 0.000000
First Submitted: 2020-04-23 02:22 (UTC)
Last Updated: 2020-09-20 13:47 (UTC)

Dependencies (4)

Required by (0)

Sources (2)

Latest Comments

« First ‹ Previous 1 2

BGameiro commented on 2020-05-02 18:27 (UTC)

@danieltetraquark I hadn't. Thank you for that.

Just out of curiosity, shouldn't it be added as a dependency? Or is there a reason why not?

danieltetraquark commented on 2020-05-02 16:34 (UTC)

@BGameiro did you install v4l2loopback-dkms and loaded the module?

BGameiro commented on 2020-05-02 16:31 (UTC)

This dives me the following error message:

device open failed

I'm using obs-studio 25.0.8-1 from the official repos

mazieres commented on 2020-04-28 02:07 (UTC)

@jonpas Ugh... my bad, I had an alias installed. Please try the latest version. Ideally 3rd time is the charm...

jonpas commented on 2020-04-27 23:47 (UTC)

git co is probably from a wrapper, should be git checkout:

diff --git a/PKGBUILD b/PKGBUILD
index 99d7618..179c96c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -33,7 +33,7 @@ pkgver() {
 prepare() {
        cd "$srcdir"
        # If obs is installed, then try to match installed version
-       test -z "$obsver" || git -C obs-studio co "$obsver"
+       test -z "$obsver" || git -C obs-studio checkout "$obsver"
        mkdir -p build
        cd build
        cmake -DLIBOBS_INCLUDE_DIR="../obs-studio/libobs" -DCMAKE_INSTALL_PREFIX=/usr "../${pkgstem}"

danieltetraquark commented on 2020-04-27 22:20 (UTC)

There seems to be an error in the prepare function:

"co" is not a Git-command

mazieres commented on 2020-04-26 18:33 (UTC)

@BifbofII Please let me know if the new version I pushed works for you. It's not 100% clean in that it just uses the master branch of obs-studio if obs is not installed, but at least it now reflects that in the version number so you know what you have.

BifbofII commented on 2020-04-26 12:56 (UTC)

Thank you for putting together this package. I found a small problem when building it in a clean changeroot. Since obs-studio is only installed as a makedependency, the command obs --version is not fount and in line 4 of your package build, the obsver variable evaluates to an empty string. For now, I got arround this by manually overriding the variable, because I am not that experienced with PKGBUILDs but maybe you can find a solution that also works in clean changeroots.