Package Details: obs-studio-browser 30.2.3-4

Git Clone URL: https://aur.archlinux.org/obs-studio-browser.git (read-only, click to copy)
Package Base: obs-studio-browser
Description: Free and open source software for video recording and live streaming. With everything except service integration
Upstream URL: https://github.com/obsproject/obs-studio
Licenses: GPL-2.0-or-later
Conflicts: libva-vdpau-driver, obs-browser, obs-linuxbrowser, obs-studio, obs-vst, obs-websocket
Provides: obs-browser, obs-studio, obs-vst, obs-websocket
Submitter: ashpie
Maintainer: tytan652
Last Packager: tytan652
Votes: 21
Popularity: 0.116169
First Submitted: 2020-11-05 09:36 (UTC)
Last Updated: 2024-11-12 09:58 (UTC)

Required by (144)

Sources (5)

Pinned Comments

tytan652 commented on 2023-01-13 07:52 (UTC) (edited on 2023-01-13 07:52 (UTC) by tytan652)

For those who might ask why libva-vdpau-driver was added to conflicts.

It is the only way at package level to prevent the user to have segfaults because of this driver. This will not be fixed on OBS side since this is not an OBS issue.

The driver is only loaded with Nvidia cards.

Try libva-nvidia-driver if you really need Nvidia decode through VAAPI.

tytan652 commented on 2022-07-08 06:02 (UTC)

This package have some dependencies with version check, it will allow you to rebuild the package only when your system is correctly updated. This feature is not enabled on Manjaro.

If you have any issue, please before commenting rebuild this package (a clean build) and try again to make sure it's not because of a library update.

Pamac has a messed up dependency checker, use another AUR helper for the first install.

This AUR package provide OBS with all the missing feature except Twitch, Restream and YouTube integrations.

More explaination here: https://ideas.obsproject.com/posts/1558/

It provide any dependency needed for Wayland support.

I'm quite active on OBS discord server (don't PM me directly).

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 .. 13 Next › Last »

darkfish commented on 2022-09-08 10:37 (UTC)

@tytan652

because I tried with yay and no issue..

I tried with yay on a fresh Archlinux install, and even on that system yay fails to resolve dependency.

What is your yay config or cli params you are using that it succeeds?

darkfish commented on 2022-09-08 08:25 (UTC)

It's = because OBS 28 support only this version officially, and it's a make dependency.

Thanks @tytan652. I'll reach out to yay devs

tytan652 commented on 2022-09-08 08:12 (UTC) (edited on 2022-09-08 08:13 (UTC) by tytan652)

It's = because OBS 28 support only this version officially, and it's a make dependency.

pkgrel is not considered as a part of the version. And about semantic, it's not me that created this version, it's the guys behind chromium and CEF.

And again you are the only one reporting. Maybe you should see with yay and pacaur devs because I tried with yay and no issue..

Normally, AUR helper that implement a deps resolver that search packages that provides the needed deps will return cef-minimal-obs-bin or cef-minimal-obs-rc-bin for cef-minimal-obs.

darkfish commented on 2022-09-08 07:54 (UTC) (edited on 2022-09-08 07:59 (UTC) by darkfish)

The pkgrel should not be considered for version matching, meaning this is a yay issue.

I'd disagree here because the versioning for cef-minimal-obs isn't following Semantic Versioning and in this PKGBUILD, version is fixed using = instead of >=.

This is not just yay, but also pacaur unable to resolve dependencies.

tytan652 commented on 2022-09-08 05:12 (UTC)

"Missing -2 suffix breaks dependency checks in yay."

The pkgrel should not be considered for version matching, meaning this is a yay issue.

darkfish commented on 2022-09-08 01:12 (UTC)

@tytan652 Shouldn't the makedepends version for cef-minimal-obs be cef-minimal-obs=103.0.0_5060_shared_textures_143.2591+g4204d54+chromium_103.0.5060.134_1-2? Missing -2 suffix breaks dependency checks in yay.

HurricanePootis commented on 2022-09-07 19:08 (UTC)

Thanks

tytan652 commented on 2022-09-07 18:52 (UTC)

Ouch, my bad will fix that quickly

HurricanePootis commented on 2022-09-07 18:49 (UTC) (edited on 2022-09-07 18:50 (UTC) by HurricanePootis)

@tytan652, why is cef-minimal-obs in depends()? From my understanding, this should be a makedepends(), since cef-minimal-obs provides the library as a static file, meaning there is no reason to keep it after obs is built, no?

darkfish commented on 2022-09-01 12:33 (UTC)

Installing v28.0.0-1 fails for me in build step with error that CMake couldn't find Python and its libraries. More specifically:

CMake Error at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
  Could NOT find Python (missing: Python_EXECUTABLE Python_INCLUDE_DIRS
  Python_LIBRARIES Interpreter Development Development.Module
  Development.Embed)

I had to add following flags to cmake lines in PKGBUILD in the build() step:

-DPython_EXECUTABLE=$(command -pv python) \
-DPython_INCLUDE_DIRS=$(command -p python -c "from distutils.sysconfig import get_python_inc; print(get_python_inc())") \
-DPython_LIBRARIES=$(command -p python -c "import distutils.sysconfig as sysconfig; print(sysconfig.get_config_var('LIBDIR'))") \

Hopefully this helps anyone else with this problem.

N.B.: This is a CMake issue, not OBS.