diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/interactive.sh | 15 | ||||
-rwxr-xr-x | scripts/list-sinks.sh | 3 | ||||
-rwxr-xr-x | scripts/record-application-name.sh | 6 | ||||
-rwxr-xr-x | scripts/record-save-application-name.sh | 14 | ||||
-rwxr-xr-x | scripts/replay-application-name.sh | 6 | ||||
-rwxr-xr-x | scripts/save-recording.sh | 3 | ||||
-rwxr-xr-x | scripts/save-replay.sh | 3 | ||||
-rwxr-xr-x | scripts/start-recording.sh | 5 | ||||
-rwxr-xr-x | scripts/start-replay.sh | 6 | ||||
-rwxr-xr-x | scripts/start-stop-recording.sh | 10 | ||||
-rwxr-xr-x | scripts/stop-replay.sh | 3 | ||||
-rwxr-xr-x | scripts/toggle-recording-selected.sh | 9 | ||||
-rwxr-xr-x | scripts/toggle-recording.sh | 6 | ||||
-rwxr-xr-x | scripts/twitch-stream-local-copy.sh | 7 | ||||
-rwxr-xr-x | scripts/twitch-stream.sh | 5 | ||||
-rwxr-xr-x | scripts/youtube-hls-stream.sh | 5 |
16 files changed, 106 insertions, 0 deletions
diff --git a/scripts/interactive.sh b/scripts/interactive.sh new file mode 100755 index 0000000..bfaaae0 --- /dev/null +++ b/scripts/interactive.sh @@ -0,0 +1,15 @@ +#!/bin/sh -e + +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 default_output -o "$output_file_name" diff --git a/scripts/list-sinks.sh b/scripts/list-sinks.sh new file mode 100755 index 0000000..e5fc44f --- /dev/null +++ b/scripts/list-sinks.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +pactl list | grep -E '(Description: Monitor of)|(Monitor Source: )' diff --git a/scripts/record-application-name.sh b/scripts/record-application-name.sh new file mode 100755 index 0000000..f8c9b0d --- /dev/null +++ b/scripts/record-application-name.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +window=$(xdotool selectwindow) +window_name=$(xdotool getwindowname "$window" || xdotool getwindowclassname "$window" || echo "Game") +window_name="$(echo "$window_name" | tr '/\\' '_')" +gpu-screen-recorder -w "$window" -f 60 -a default_output -o "$HOME/Videos/recording/$window_name/$(date +"Video_%Y-%m-%d_%H-%M-%S.mp4")" diff --git a/scripts/record-save-application-name.sh b/scripts/record-save-application-name.sh new file mode 100755 index 0000000..c95f398 --- /dev/null +++ b/scripts/record-save-application-name.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +# This script should be passed to gpu-screen-recorder with the -sc option, for example: +# gpu-screen-recorder -w screen -f 60 -a default_output -r 60 -sc scripts/record-save-application-name.sh -c mp4 -o "$HOME/Videos" + +window=$(xdotool getwindowfocus) +window_name=$(xdotool getwindowname "$window" || xdotool getwindowclassname "$window" || echo "Game") +window_name="$(echo "$window_name" | tr '/\\' '_')" + +video_dir="$HOME/Videos/Replays/$window_name" +mkdir -p "$video_dir" +video="$video_dir/$(date +"${window_name}_%Y-%m-%d_%H-%M-%S.mp4")" +mv "$1" "$video" +sleep 0.5 && notify-send -t 2000 -u low "GPU Screen Recorder" "Replay saved to $video"
\ No newline at end of file diff --git a/scripts/replay-application-name.sh b/scripts/replay-application-name.sh new file mode 100755 index 0000000..3c3f8c5 --- /dev/null +++ b/scripts/replay-application-name.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +window=$(xdotool selectwindow) +window_name=$(xdotool getwindowname "$window" || xdotool getwindowclassname "$window" || echo "Game") +window_name="$(echo "$window_name" | tr '/\\' '_')" +gpu-screen-recorder -w "$window" -f 60 -c mkv -a default_output -bm cbr -q 40000 -r 60 -o "$HOME/Videos/Replays/$window_name" diff --git a/scripts/save-recording.sh b/scripts/save-recording.sh new file mode 100755 index 0000000..90fefc1 --- /dev/null +++ b/scripts/save-recording.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +killall -SIGINT gpu-screen-recorder && sleep 0.5 && notify-send -t 1500 -u low "GPU Screen Recorder" "Recording saved" diff --git a/scripts/save-replay.sh b/scripts/save-replay.sh new file mode 100755 index 0000000..f9390aa --- /dev/null +++ b/scripts/save-replay.sh @@ -0,0 +1,3 @@ +#!/bin/sh -e + +killall -SIGUSR1 gpu-screen-recorder && sleep 0.5 && notify-send -t 1500 -u low -- "GPU Screen Recorder" "Replay saved" diff --git a/scripts/start-recording.sh b/scripts/start-recording.sh new file mode 100755 index 0000000..03fda73 --- /dev/null +++ b/scripts/start-recording.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +pidof -q gpu-screen-recorder && exit 0 +video="$HOME/Videos/$(date +"Video_%Y-%m-%d_%H-%M-%S.mp4")" +gpu-screen-recorder -w screen -f 60 -a default_output -o "$video" diff --git a/scripts/start-replay.sh b/scripts/start-replay.sh new file mode 100755 index 0000000..d47a614 --- /dev/null +++ b/scripts/start-replay.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +pidof -q gpu-screen-recorder && exit 0 +video_path="$HOME/Videos" +mkdir -p "$video_path" +gpu-screen-recorder -w screen -f 60 -a default_output -c mkv -bm cbr -q 40000 -r 30 -o "$video_path" diff --git a/scripts/start-stop-recording.sh b/scripts/start-stop-recording.sh new file mode 100755 index 0000000..775a829 --- /dev/null +++ b/scripts/start-stop-recording.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +# Simple script to start recording if it's not recording and stop recording +# if it's already recording. This script can be bound to a single hotkey +# to start/stop recording with a single hotkey. + +killall -SIGINT -q gpu-screen-recorder && exit 0 +video="$HOME/Videos/$(date +"Video_%Y-%m-%d_%H-%M-%S.mp4")" +gpu-screen-recorder -w screen -f 60 -a default_output -o "$video" +notify-send -t 2000 -u low "GPU Screen Recorder" "Video saved to $video" diff --git a/scripts/stop-replay.sh b/scripts/stop-replay.sh new file mode 100755 index 0000000..d38da9c --- /dev/null +++ b/scripts/stop-replay.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +killall -SIGINT gpu-screen-recorder diff --git a/scripts/toggle-recording-selected.sh b/scripts/toggle-recording-selected.sh new file mode 100755 index 0000000..d4c1b38 --- /dev/null +++ b/scripts/toggle-recording-selected.sh @@ -0,0 +1,9 @@ +#!/bin/sh -e + +killall -SIGINT gpu-screen-recorder && sleep 0.5 && notify-send -t 1500 -u low 'GPU Screen Recorder' 'Stopped recording' && exit 0; +window=$(xdotool selectwindow) +active_sink=default_output +mkdir -p "$HOME/Videos" +video="$HOME/Videos/$(date +"Video_%Y-%m-%d_%H-%M-%S.mp4")" +notify-send -t 1500 -u low 'GPU Screen Recorder' "Started recording video to $video" +gpu-screen-recorder -w "$window" -c mp4 -f 60 -a "$active_sink" -o "$video" diff --git a/scripts/toggle-recording.sh b/scripts/toggle-recording.sh new file mode 100755 index 0000000..b353dc9 --- /dev/null +++ b/scripts/toggle-recording.sh @@ -0,0 +1,6 @@ +#!/bin/sh -e + +killall -SIGINT gpu-screen-recorder && sleep 0.5 && notify-send -t 1500 -u low 'GPU Screen Recorder' 'Stopped recording' && exit 0; +video="$HOME/Videos/$(date +"Video_%Y-%m-%d_%H-%M-%S.mp4")" +notify-send -t 1500 -u low 'GPU Screen Recorder' "Started recording video to $video" +gpu-screen-recorder -w screen -f 60 -a "default_output" -o "$video" diff --git a/scripts/twitch-stream-local-copy.sh b/scripts/twitch-stream-local-copy.sh new file mode 100755 index 0000000..fa23cf6 --- /dev/null +++ b/scripts/twitch-stream-local-copy.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +# Stream on twitch while also saving the video to disk locally + +[ "$#" -ne 4 ] && echo "usage: twitch-stream-local-copy.sh <window_id> <fps> <livestream_key> <local_file>" && exit 1 +active_sink=default_output +gpu-screen-recorder -w "$1" -c flv -f "$2" -q high -a "$active_sink" | tee -- "$4" | ffmpeg -i pipe:0 -c copy -f flv -- "rtmp://live.twitch.tv/app/$3" diff --git a/scripts/twitch-stream.sh b/scripts/twitch-stream.sh new file mode 100755 index 0000000..99dade8 --- /dev/null +++ b/scripts/twitch-stream.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +[ "$#" -ne 3 ] && echo "usage: twitch-stream.sh <window_id> <fps> <livestream_key>" && exit 1 +active_sink=default_output +gpu-screen-recorder -w "$1" -c flv -f "$2" -q high -a "$active_sink" -o "rtmp://live.twitch.tv/app/$3" diff --git a/scripts/youtube-hls-stream.sh b/scripts/youtube-hls-stream.sh new file mode 100755 index 0000000..10fa6b2 --- /dev/null +++ b/scripts/youtube-hls-stream.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +[ "$#" -ne 3 ] && echo "usage: youtube-hls-stream.sh <window_id> <fps> <livestream_key>" && exit 1 +active_sink=default_output +gpu-screen-recorder -w "$1" -c hls -f "$2" -q high -a "$active_sink" -ac aac -o "https://a.upload.youtube.com/http_upload_hls?cid=$3©=0&file=stream.m3u8"
\ No newline at end of file |