diff options
author | Leo Vivier <zaeph@zaeph.net> | 2022-09-21 18:01:42 +0200 |
---|---|---|
committer | Leo Vivier <zaeph@zaeph.net> | 2022-09-21 18:01:55 +0200 |
commit | 1dfc0a78256d9d87d928355ce2c1a631405d6887 (patch) | |
tree | f255a6677b6974e6b221f1e57fe42681fc49dd4d /playbook | |
parent | 9214435400684c04b8a6de894899d9eab8190081 (diff) | |
download | emacsconf-wiki-1dfc0a78256d9d87d928355ce2c1a631405d6887.tar.xz emacsconf-wiki-1dfc0a78256d9d87d928355ce2c1a631405d6887.zip |
Move all playbook stuff to 2021/
Diffstat (limited to 'playbook')
-rw-r--r-- | playbook/restream-flv.sh | 2 | ||||
-rw-r--r-- | playbook/restream-lowres.sh | 2 | ||||
-rw-r--r-- | playbook/restream-youtube.sh | 2 | ||||
-rw-r--r-- | playbook/stream-desktop-and-audio.sh | 1 |
4 files changed, 0 insertions, 7 deletions
diff --git a/playbook/restream-flv.sh b/playbook/restream-flv.sh deleted file mode 100644 index dc632762..00000000 --- a/playbook/restream-flv.sh +++ /dev/null @@ -1,2 +0,0 @@ - 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/playbook/restream-lowres.sh b/playbook/restream-lowres.sh deleted file mode 100644 index bd6f5bfb..00000000 --- a/playbook/restream-lowres.sh +++ /dev/null @@ -1,2 +0,0 @@ - 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/playbook/restream-youtube.sh b/playbook/restream-youtube.sh deleted file mode 100644 index 1cc2994b..00000000 --- a/playbook/restream-youtube.sh +++ /dev/null @@ -1,2 +0,0 @@ - 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/playbook/stream-desktop-and-audio.sh b/playbook/stream-desktop-and-audio.sh deleted file mode 100644 index d3a7e6f8..00000000 --- a/playbook/stream-desktop-and-audio.sh +++ /dev/null @@ -1 +0,0 @@ - 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 |