aboutsummaryrefslogtreecommitdiff
path: root/replay.sh
blob: 6bbbb5456ab58ed6cd3e2cc136af9ece1802e869 (plain)
1
2
3
4
5
6
#!/bin/sh -e

[ "$#" -ne 4 ] && echo "usage: replay.sh <window_id> <fps> <replay_time_sec> <output_directory>" && exit 1
active_sink="$(pactl get-default-sink).monitor"
mkdir -p "$4"
./gpu-screen-recorder -w "$1" -c mp4 -f "$2" -a "$active_sink" -r "$3" -o "$4"