instruct zomstream to search for hls apps, as live is for incoming streams only
This commit is contained in:
parent
3382e6f33c
commit
e6340433b1
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class Zomstream:
|
||||||
applications = server.findall('application')
|
applications = server.findall('application')
|
||||||
for application in applications:
|
for application in applications:
|
||||||
appname = application.find('name')
|
appname = application.find('name')
|
||||||
if appname.text == "live" or appname.text == "rec":
|
if appname.text == "hls" or appname.text == "rec":
|
||||||
streams = application.find('live').findall('stream')
|
streams = application.find('live').findall('stream')
|
||||||
for stream in streams:
|
for stream in streams:
|
||||||
name = stream.find('name')
|
name = stream.find('name')
|
||||||
|
|
Loading…
Reference in a new issue