Record microphone input with gpu-screen-recorder

This commit is contained in:
Josh Holtrop 2026-05-07 13:38:03 -04:00
parent 1f89c56c2c
commit 670707a857
2 changed files with 5 additions and 4 deletions

View File

@ -1,2 +1,2 @@
#!/bin/sh
exec gpu-screen-recorder -w screen -o ~/Videos -r 90 -c mp4 -a default_output -ac aac
exec gpu-screen-recorder -w screen -o ~/Videos -r 90 -c mp4 -a default_output -a default_input -ac aac

View File

@ -1,9 +1,10 @@
#!/bin/bash
DEFAULT_SINK=$(pactl get-default-sink)
MONITOR_SINK="${DEFAULT_SINK}.monitor"
#DEFAULT_SINK=$(pactl get-default-sink)
#MONITOR_SINK="${DEFAULT_SINK}.monitor"
gpu-screen-recorder -w screen -o ~/Videos -r 90 -c mp4 -a "$MONITOR_SINK" -ac aac & >> $HOME/.gpu-screen-recorder.log
#gpu-screen-recorder -w screen -o ~/Videos -r 90 -c mp4 -a "$MONITOR_SINK" -a default_input -ac aac >> $HOME/.gpu-screen-recorder.log &
gpu-screen-recorder -w screen -o ~/Videos -r 90 -c mp4 -a default_output -a default_input -ac aac >> $HOME/.gpu-screen-recorder.log &
PID=$!
"$@"