From aac9b9cde7540045507d3877f5a58c6253967ee2 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 5 Nov 2024 01:08:56 +0100 Subject: Fix incorrect bitrate calculation for constant bitrate --- scripts/record-application-name.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/record-application-name.sh') diff --git a/scripts/record-application-name.sh b/scripts/record-application-name.sh index 4139c9c..f8c9b0d 100755 --- a/scripts/record-application-name.sh +++ b/scripts/record-application-name.sh @@ -1,6 +1,6 @@ #!/bin/sh window=$(xdotool selectwindow) -window_name=$(xdotool getwindowclassname "$window" || xdotool getwindowname "$window" || echo "Game") +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")" -- cgit v1.2.3