From 8b64f915a7b5e600d44f7a825097e879e51afbf8 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Mon, 3 Jun 2024 10:26:26 +0200 Subject: Simplify hls script, set quality to high --- scripts/youtube-hls-stream.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'scripts/youtube-hls-stream.sh') diff --git a/scripts/youtube-hls-stream.sh b/scripts/youtube-hls-stream.sh index 21619af..747a310 100755 --- a/scripts/youtube-hls-stream.sh +++ b/scripts/youtube-hls-stream.sh @@ -1,11 +1,5 @@ #!/bin/sh [ "$#" -ne 3 ] && echo "usage: youtube-hls-stream.sh " && exit 1 -mkdir "youtube_stream" -cd "youtube_stream" active_sink="$(pactl get-default-sink).monitor" -gpu-screen-recorder -w "$1" -c mpegts -f "$2" -a "$active_sink" | ffmpeg -i pipe:0 -c copy -f hls \ - -hls_time 2 -hls_flags independent_segments -hls_flags delete_segments -hls_segment_type mpegts -hls_segment_filename stream%02d.ts -master_pl_name stream.m3u8 out1 & -echo "Waiting until stream segments are created..." -sleep 10 -ffmpeg -i stream.m3u8 -c copy -- "https://a.upload.youtube.com/http_upload_hls?cid=$3©=0&file=stream.m3u8" +gpu-screen-recorder -w "$1" -c hls -f "$2" -q high -a "$active_sink" -ac aac "https://a.upload.youtube.com/http_upload_hls?cid=$3©=0&file=stream.m3u8" \ No newline at end of file -- cgit v1.2.3