improve stream handling
This commit is contained in:
parent
821b7b518d
commit
77d4d9a3dd
2 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@
|
|||
|
||||
- name: Copy index.html
|
||||
become: true
|
||||
ansible.builtin.copy:
|
||||
ansible.builtin.template:
|
||||
src: 'templates/index.html.j2'
|
||||
dest: '/srv/www/{{ inventory_hostname }}/index.html'
|
||||
owner: video
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
ffmpeg -i {{ stream_input_url }} \
|
||||
ffmpeg -i {{ stream_input_url | replace("ingest.chaoswest.tv:1935","ingest.chaoswest.tv:1936") }} \
|
||||
-nostats \
|
||||
-loglevel repeat+level+info \
|
||||
-filter_complex \
|
||||
|
|
Loading…
Reference in a new issue