https://github.com/kettek/pipewire-virtual-audio-gui
crummy little app to link app audio to a virtual microphone
https://github.com/kettek/pipewire-virtual-audio-gui
audio-capture fyne go linux pipewire virtual-microphone
Last synced: 2 days ago
JSON representation
crummy little app to link app audio to a virtual microphone
- Host: GitHub
- URL: https://github.com/kettek/pipewire-virtual-audio-gui
- Owner: kettek
- License: gpl-3.0
- Created: 2024-08-18T22:41:40.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-08-18T23:55:32.000Z (11 months ago)
- Last Synced: 2025-06-14T04:05:02.046Z (about 1 month ago)
- Topics: audio-capture, fyne, go, linux, pipewire, virtual-microphone
- Language: Go
- Homepage:
- Size: 73.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pipewire Virtual Audio GUI
This is a barebones interface to roughly the following commands:
```
# 1. create virtual microphone
pactl load-module module-null-sink media.class=Audio/Source/Virtual sink_name=my-virtualmic channel_map=front-left,front-right# 2. get list of current audio outputs
pw-link -o# 3. link the audio output to the virtual mic (stereo)
pw-link WEBRTC\ VoiceEngine:output_FL my-virtualmic:input_FL
pw-link WEBRTC\ VoiceEngine:output_FR my-virtualmic:input_FR
```It tidies up the list of potential audio to capture and allows you to name your virtual microphone. It cleans up after itself on close.