Package Details: obs-studio-git 31.0.2.r138.g3e84469-1

Git Clone URL: https://aur.archlinux.org/obs-studio-git.git (read-only, click to copy)
Package Base: obs-studio-git
Description: Free and open source software for video recording and live streaming
Upstream URL: https://github.com/obsproject/obs-studio
Licenses: GPL-2.0-only
Conflicts: obs-studio
Provides: obs-studio
Submitter: ledti
Maintainer: benklett (xiota)
Last Packager: benklett
Votes: 107
Popularity: 4.43
First Submitted: 2014-03-12 22:29 (UTC)
Last Updated: 2025-03-27 23:15 (UTC)

Required by (146)

Sources (5)

Pinned Comments

thotypous commented on 2021-02-05 14:12 (UTC)

If you don't want to build this package yourself, hourly builds are available at https://aur.chaotic.cx

benklett commented on 2016-02-06 23:11 (UTC) (edited on 2016-08-10 14:01 (UTC) by benklett)

This is a -git package, that means you have to update it! Please do not flag it out of date because of the version number. The version number will automatically increase to the version of the latest commit. If you want to have the stable versions, please install the package obs-studio from [community].

Latest Comments

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

laylashiggy commented on 2024-05-11 23:39 (UTC) (edited on 2024-05-11 23:41 (UTC) by laylashiggy)

fails to build when using gcc 14 or above, made a patch to silence the errors. you can apply it by following these instructions

--- a/plugins/obs-filters/rnnoise/src/denoise.c
+++ b/plugins/obs-filters/rnnoise/src/denoise.c
@@ -265,9 +265,9 @@ int rnnoise_init(DenoiseState *st, RNNModel *model) {
     st->rnn.model = model;
   else
     st->rnn.model = &rnnoise_model_orig;
-  st->rnn.vad_gru_state = calloc(sizeof(float), st->rnn.model->vad_gru_size);
-  st->rnn.noise_gru_state = calloc(sizeof(float), st->rnn.model->noise_gru_size);
-  st->rnn.denoise_gru_state = calloc(sizeof(float), st->rnn.model->denoise_gru_size);
+  st->rnn.vad_gru_state = calloc(st->rnn.model->vad_gru_size, sizeof(float));
+  st->rnn.noise_gru_state = calloc(st->rnn.model->noise_gru_size, sizeof(float));
+  st->rnn.denoise_gru_state = calloc(st->rnn.model->denoise_gru_size, sizeof(float));
   return 0;
 }

Zeioth commented on 2024-05-09 00:12 (UTC)

The PKGBUILD is missing the dependencies 'uthash', 'ffnvcodec-headers-12-1'. After installing them manually, it install correctly.

ewen-lbh commented on 2024-04-11 21:51 (UTC)

uthash and ffnvenc-headers-12-1 should be listed as (make?) dependencies

DigitOtter commented on 2024-04-07 11:42 (UTC)

As the base ffnvcodec-headers pkg was updated to a version that's no longer compatible with obs-studio-git, I created ffnvcodec-headers-12-1 to solve the dependency issue.

ericek111 commented on 2024-04-07 06:18 (UTC) (edited on 2024-04-07 06:18 (UTC) by ericek111)

Add uthash as a dependency: https://github.com/obsproject/obs-studio/commit/e032c2d0c9f5a4f1f7302ddb0e7c171f745b8e20

Mashiroto commented on 2024-04-06 13:45 (UTC)

I have already installed ffnvcodec-headers but it doesnt work. it seems to require a lower version of it.

no-prophet commented on 2024-04-01 06:37 (UTC) (edited on 2024-04-01 06:57 (UTC) by no-prophet)

You only need to install ffnvcodec-headers first and it works fine. Thank you, @linuxmetel.

Rucker commented on 2024-03-31 14:21 (UTC)

Tried linuxmetel's solution and it worked. Dependencies need to be updated.

linuxmetel commented on 2024-03-31 11:49 (UTC)

It seems to require ffnvcodec-headers or other package which provides the same files. Without this, I got the following error:

CMake Error at /home/linuxmetel/.local/lib/python3.11/site-packages/cmake/data/share/cmake-3.26/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
  Could NOT find FFnvcodec: Found unsuitable version "0.0.0", required range
  is "12.0.0.0...<12.2.0.0" (found FFnvcodec_INCLUDE_DIR-NOTFOUND)

      Reason given by package: Ensure FFnvcodec headers are available in local include paths.

Call Stack (most recent call first):
  /home/linuxmetel/.local/lib/python3.11/site-packages/cmake/data/share/cmake-3.26/Modules/FindPackageHandleStandardArgs.cmake:598 (_FPHSA_FAILURE_MESSAGE)
  cmake/Modules/FindFFnvcodec.cmake:78 (find_package_handle_standard_args)
  plugins/obs-ffmpeg/cmake/legacy.cmake:118 (find_package)
  cmake/Modules/ObsHelpers.cmake:473 (include)
  plugins/obs-ffmpeg/CMakeLists.txt:3 (legacy_check)

benklett commented on 2024-03-27 22:47 (UTC)

@dhtseany thanks for appreciation, it seems they changed the default for Jack at some point. That's why it was not enabled anymore.