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 /interactive.sh | |
parent | 59b730a806c92acbf999a7fa35b8ece9fb7c3203 (diff) |
Move scripts to script dir, add youtube-hls-stream script, fix twitch stream script
Diffstat (limited to 'interactive.sh')
-rwxr-xr-x | interactive.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/interactive.sh b/interactive.sh deleted file mode 100755 index c02e7e9..0000000 --- a/interactive.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/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" |