Package Details: obs-pipewire-audio-capture 1.2.0-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: 7
Popularity: 0.65
First Submitted: 2023-05-03 16:16 (UTC)
Last Updated: 2025-02-15 07:56 (UTC)

Dependencies (6)

Required by (0)

Sources (1)

Latest Comments

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?