From 1dfc0a78256d9d87d928355ce2c1a631405d6887 Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Wed, 21 Sep 2022 18:01:42 +0200 Subject: Move all playbook stuff to 2021/ --- 2021/playbook/restream-flv.sh | 2 ++ 2021/playbook/restream-lowres.sh | 2 ++ 2021/playbook/restream-youtube.sh | 2 ++ 2021/playbook/stream-desktop-and-audio.sh | 1 + 4 files changed, 7 insertions(+) create mode 100644 2021/playbook/restream-flv.sh create mode 100644 2021/playbook/restream-lowres.sh create mode 100644 2021/playbook/restream-youtube.sh create mode 100644 2021/playbook/stream-desktop-and-audio.sh (limited to '2021/playbook') diff --git a/2021/playbook/restream-flv.sh b/2021/playbook/restream-flv.sh new file mode 100644 index 00000000..dc632762 --- /dev/null +++ b/2021/playbook/restream-flv.sh @@ -0,0 +1,2 @@ + MOUNT=$1 + while true; do ffmpeg -loglevel 24 -i http://localhost:8000/main.webm -cluster_size_limit 2M -cluster_time_limit 5100 -b:v 1M -crf 30 -g 125 -deadline good -threads 4 -vcodec libx264 -acodec libmp3lame -f flv $MOUNT; done diff --git a/2021/playbook/restream-lowres.sh b/2021/playbook/restream-lowres.sh new file mode 100644 index 00000000..bd6f5bfb --- /dev/null +++ b/2021/playbook/restream-lowres.sh @@ -0,0 +1,2 @@ + PASS=$1 + while true; do ffmpeg -loglevel 24 -f webm -reconnect_at_eof 1 -reconnect_streamed 1 -re -i http://localhost:8000/main.webm -vf scale=854:480 -f webm -c:a copy -b:v 500k -maxrate 1M -bufsize 1M -content_type video/webm -c:v libvpx icecast://ec2020main480pmu:$PASS@localhost:8000/main-480p.webm; done diff --git a/2021/playbook/restream-youtube.sh b/2021/playbook/restream-youtube.sh new file mode 100644 index 00000000..1cc2994b --- /dev/null +++ b/2021/playbook/restream-youtube.sh @@ -0,0 +1,2 @@ + KEY=$1 + while true; do ffmpeg -loglevel 8 -f webm -reconnect_at_eof 1 -reconnect_streamed 1 -re -i http://localhost:8000/main.webm -f webm -c:a copy -c:v copy rtmp://a.rtmp.youtube.com/live2/$KEY; done diff --git a/2021/playbook/stream-desktop-and-audio.sh b/2021/playbook/stream-desktop-and-audio.sh new file mode 100644 index 00000000..d3a7e6f8 --- /dev/null +++ b/2021/playbook/stream-desktop-and-audio.sh @@ -0,0 +1 @@ + while true; do ffmpeg -loglevel 0 -ar 48000 -f alsa -channels 2 -sample_rate 48000 -i default -re -video_size 1280x720 -framerate 25 -f x11grab -i :0.0 -cluster_size_limit 2M -cluster_time_limit 5100 -content_type video/webm -c:v libvpx -b:v 1M -crf 30 -g 125 -deadline good -threads 4 -f webm $CONFALT; done -- cgit v1.2.3