Package Details: obs-pipewire-audio-capture 1.2.1-1

Git Clone URL: https://aur.archlinux.org/obs-pipewire-audio-capture.git (read-only, click to copy)
Package Base: obs-pipewire-audio-capture
Description: PipeWire audio capturing for OBS Studio
Upstream URL: https://github.com/dimtpap/obs-pipewire-audio-capture
Licenses: GPL-2.0-or-later
Submitter: Freso
Maintainer: Freso (AutoUpdateBot, tytan652)
Last Packager: AutoUpdateBot
Votes: 15
Popularity: 1.06
First Submitted: 2023-05-03 16:16 (UTC)
Last Updated: 2025-09-06 07:56 (UTC)

Dependencies (6)

Required by (0)

Sources (1)

Latest Comments

nic96 commented on 2025-09-26 16:25 (UTC) (edited on 2025-09-26 16:25 (UTC) by nic96)

@LogicalKarma after installing simde this package builds. The maintainer needs to add simde to depends or makedepends.

LogicalKarma commented on 2025-09-25 07:54 (UTC) (edited on 2025-09-25 07:56 (UTC) by LogicalKarma)

Updating results in the following error:

CMake Error at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:227 (message): Could NOT find SIMDe (missing: SIMDe_INCLUDE_DIR) (found version "0.0.0")

  Reason given by package: Ensure SIMD Everywhere is available in local library paths.

Call Stack (most recent call first): /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:591 (_FPHSA_FAILURE_MESSAGE) /usr/lib/cmake/libobs/finders/FindSIMDe.cmake:78 (find_package_handle_standard_args) /usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:78 (find_package) /usr/lib/cmake/libobs/libobsConfig.cmake:44 (find_dependency) CMakeLists.txt:18 (find_package)

Woobee commented on 2025-02-21 10:12 (UTC)

The PKGBUILD should be changed to

build() {
  cd $pkgname-$pkgver
  cmake -B build \
    -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" \
    -DCMAKE_BUILD_TYPE=RelWithDebInfo
  cd build
  cmake --build .
}

package() {
  cd $pkgname-$pkgver/build
  cmake --build . --target install
}

so it builds with non-make default cmake generators too.

csts commented on 2024-05-15 19:58 (UTC)

After introducing the wireplumber glitch fix:

sudo touch /usr/share/pipewire/media-session.d/with-pulseaudio 
systemctl restart --user pipewire pipewire-media-session pipewire-pulse

obs-pipewire-audio-capture will not work. The fat & ugly fix I worked out means simply switching from Pipewire Media Session to Wireplumber, to record, taking care of dependencies each time I switch, then reboot to make sound work again. Something better?