diff options
author | Sacha Chua <sacha@sachachua.com> | 2022-10-21 12:28:07 -0400 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2022-10-21 12:28:07 -0400 |
commit | f636dd1ef7593a60aa8c287fb0346045a321cbc5 (patch) | |
tree | c52ec8a1c780313e7a7951ea41dc473c30887f04 /roles/stream | |
parent | 21b051177dc5897d239e6532f5f245a32f7dfb36 (diff) | |
download | emacsconf-ansible-f636dd1ef7593a60aa8c287fb0346045a321cbc5.tar.xz emacsconf-ansible-f636dd1ef7593a60aa8c287fb0346045a321cbc5.zip |
Add captioning tools
Diffstat (limited to 'roles/stream')
-rw-r--r-- | roles/stream/tasks/main.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/roles/stream/tasks/main.yml b/roles/stream/tasks/main.yml index 73040d6..b5ebcda 100644 --- a/roles/stream/tasks/main.yml +++ b/roles/stream/tasks/main.yml @@ -44,6 +44,9 @@ - name: Test by displaying the stream in mpv tags: test-stream-mpv, never local_action: shell mpv http://live0.emacsconf.org:{{ icecast_port }}/emacsconf/{{ icecast_test_track|d(gen) }}.webm +- name: Test by streaming a test pattern + tags: test-stream-pattern, never + local_action: shell ffmpeg -loglevel 32 -f lavfi -i testsrc=duration=10:size=1280x720:rate=30 -f webm icecast://emacsconf:{{ icecast_emacsconf_password }}@live0.emacsconf.org:{{ icecast_port }}/emacsconf/{{ icecast_test_track|d("gen") }}.webm # - name: Set up restream script # template: # src: restream-yt.sh |