diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-09-19 16:19:41 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-09-19 16:19:41 +0200 |
commit | 85cd5a9d113de506c0722acaada68af56c9f9642 (patch) | |
tree | c9d3d78b1c4c335c0c48144a1d39c7ef1ae8ce1a /scripts/interactive.sh | |
parent | 59b730a806c92acbf999a7fa35b8ece9fb7c3203 (diff) |
Move scripts to script dir, add youtube-hls-stream script, fix twitch stream script
Diffstat (limited to 'scripts/interactive.sh')
-rwxr-xr-x | scripts/interactive.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/interactive.sh b/scripts/interactive.sh new file mode 100755 index 0000000..63b0eae --- /dev/null +++ b/scripts/interactive.sh @@ -0,0 +1,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" |