aboutsummaryrefslogtreecommitdiff
path: root/interactive.sh
blob: c02e7e9c7cdebcd7aa5652f2b1e563f64b58f23a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

selected_audio_input="$(pactl get-default-sink).monitor"

echo "Select a window to record"
window_id=$(xdotool selectwindow)

echo -n "Enter video fps: "
read fps

echo -n "Enter output file name: "
read output_file_name

output_dir=$(dirname "$output_file_name")
mkdir -p "$output_dir"

./gpu-screen-recorder -w "$window_id" -c mp4 -f "$fps" -a "$selected_audio_input" -o "$output_file_name"