Same issue package looks for error: could not find all required packages:
ffnvcodec-headers<=12.1.14.0 (wanted by: obs-studio-git)
.
Yet I have ffnvcodec-headers-12-1 12.1.14.0-1
installed.
Search Criteria
Package Details: obs-studio-git 30.2.3.r364.gb854f61-1
Package Actions
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: | xiota |
Votes: | 101 |
Popularity: | 1.28 |
First Submitted: | 2014-03-12 22:29 (UTC) |
Last Updated: | 2024-11-07 23:26 (UTC) |
Dependencies (47)
- curl (curl-quiche-gitAUR, curl-http3-ngtcp2AUR, curl-gitAUR, curl-c-aresAUR)
- ffmpeg (ffmpeg-nvcodec-11-1-gitAUR, ffmpeg-ffplayoutAUR, ffmpeg-amd-full-gitAUR, ffmpeg-cudaAUR, ffmpeg-full-gitAUR, ffmpeg-gitAUR, ffmpeg-libfdk_aacAUR, ffmpeg-fullAUR, ffmpeg-decklinkAUR, ffmpeg-headlessAUR, ffmpeg-obsAUR, ffmpeg-amd-fullAUR)
- gtk-update-icon-cache (gtk-update-icon-cache-gitAUR)
- jackAUR (jack2-gitAUR, pipewire-jack-gitAUR, pipewire-full-jack-gitAUR, jack2, pipewire-jack)
- jansson (jansson-gitAUR)
- libajantv2AUR
- libdatachannel (libdatachannel-gitAUR, libdatachannel-niceAUR)
- librist (librist-gitAUR)
- libxinerama (libxinerama-randr-gitAUR)
- libxkbcommon-x11 (libxkbcommon-x11-gitAUR)
- mbedtls2
- onevpl (libvpl-gitAUR, libvpl)
- pciutils (pciutils-gitAUR)
- qrcodegencpp-cmakeAUR
- qt6-svg
- rnnoise (rnnoise-gitAUR)
- speexdsp (speexdsp-gitAUR)
- uthash
- asio (asio-gitAUR) (make)
- cef-minimal-obs-binAUR (make)
- Show 27 more dependencies...
Required by (143)
- distroav (requires obs-studio)
- distroav-git (requires obs-studio)
- droidcam-obs-plugin (requires obs-studio)
- droidcam-obs-plugin-bin (requires obs-studio)
- droidcam-obs-plugin-git (requires obs-studio)
- glava-git (requires obs-studio) (make)
- glava-git (requires obs-studio) (optional)
- glava-ridged (requires obs-studio) (optional)
- looking-glass (requires obs-studio) (make)
- looking-glass-git (requires obs-studio) (make)
- looking-glass-host (requires obs-studio) (make)
- looking-glass-host-git (requires obs-studio) (make)
- looking-glass-module-dkms (requires obs-studio) (make)
- looking-glass-module-dkms-git (requires obs-studio) (make)
- looking-glass-rc (requires obs-studio) (make)
- looking-glass-rc-host (requires obs-studio) (make)
- looking-glass-rc-module-dkms (requires obs-studio) (make)
- lyrica (requires obs-studio) (optional)
- nudgis-obs-plugin (requires obs-studio)
- obs-3d-effect (requires obs-studio)
- Show 123 more...
Sources (3)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 9 .. 35 Next › Last »
zangoku commented on 2024-05-21 06:38 (UTC)
heyimnyl commented on 2024-05-21 00:26 (UTC)
I was only able to install this after downloading this aur package, editing the pkgbuild/removing "ffnvcodec-headers<=12.1.14.0" this entry while ofc having the one from the comments installed from DigiOtter ffnvcodec-headers-12-1. installing all build depends manually, then makepkg -si.
then and only then it was able to install, all 3 options yay gave for the ffnvcodec did not work and this package was complaining about ' not found ' so yes, I flagged it out of date and build by hand instead with removed line in pkgbuild and manually installed.
Jiminimonka commented on 2024-05-16 18:49 (UTC)
I am getting this error in the latest build
libstdc++.so.6: version `CXXABI_1.3.15' not found (required by obs)
tytan652 commented on 2024-05-11 23:46 (UTC)
@laylashiggy add rnnoise
as a package dependency to avoid building the vendored one.
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.
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)