2020-08-30 00:39:28 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
2020-04-04 12:54:12 +00:00
|
|
|
|
|
|
|
print_selected_window_id() {
|
|
|
|
xwininfo | grep 'Window id:' | cut -d' ' -f4
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "Select a window to record"
|
|
|
|
window_id=$(print_selected_window_id)
|
|
|
|
|
|
|
|
echo -n "Enter video fps: "
|
|
|
|
read fps
|
|
|
|
|
|
|
|
echo "Select audio input:"
|
|
|
|
selected_audio_input=""
|
|
|
|
select audio_input in $(pactl list | sed -rn 's/Monitor Source: (.*)/\1/p'); do
|
|
|
|
if [ "$audio_input" == "" ]; then
|
|
|
|
echo "Invalid option $REPLY"
|
|
|
|
else
|
|
|
|
selected_audio_input="$audio_input"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
echo -n "Enter output file name: "
|
|
|
|
read output_file_name
|
|
|
|
|
|
|
|
output_dir=$(dirname "$output_file_name")
|
|
|
|
mkdir -p "$output_dir"
|
|
|
|
|
2022-01-30 22:24:20 +00:00
|
|
|
./gpu-screen-recorder -w "$window_id" -c mp4 -f "$fps" -a "$selected_audio_input" -o "$output_file_name"
|