mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
add proxy for hls
This commit is contained in:
parent
e5b8e0da01
commit
fe1886aa08
1 changed files with 31 additions and 0 deletions
|
@ -308,6 +308,36 @@ class RESTDvrs(object):
|
||||||
|
|
||||||
return code
|
return code
|
||||||
|
|
||||||
|
|
||||||
|
'''
|
||||||
|
handle the hls proxy requests: hls stream.
|
||||||
|
'''
|
||||||
|
class RESTProxy(object):
|
||||||
|
exposed = True
|
||||||
|
|
||||||
|
'''
|
||||||
|
for SRS hook: on_hls_notify
|
||||||
|
on_hls_notify:
|
||||||
|
when srs reap a ts file of hls, call this hook,
|
||||||
|
used to push file to cdn network, by get the ts file from cdn network.
|
||||||
|
so we use HTTP GET and use the variable following:
|
||||||
|
[app], replace with the app.
|
||||||
|
[stream], replace with the stream.
|
||||||
|
[ts_url], replace with the ts url.
|
||||||
|
ignore any return data of server.
|
||||||
|
'''
|
||||||
|
def GET(self, *args, **kwargs):
|
||||||
|
enable_crossdomain()
|
||||||
|
|
||||||
|
hls = {
|
||||||
|
"args": args,
|
||||||
|
"kwargs": kwargs
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = json.dumps(hls)
|
||||||
|
print ret
|
||||||
|
return ret
|
||||||
|
|
||||||
'''
|
'''
|
||||||
handle the hls requests: hls stream.
|
handle the hls requests: hls stream.
|
||||||
'''
|
'''
|
||||||
|
@ -1195,6 +1225,7 @@ class V1(object):
|
||||||
self.sessions = RESTSessions()
|
self.sessions = RESTSessions()
|
||||||
self.dvrs = RESTDvrs()
|
self.dvrs = RESTDvrs()
|
||||||
self.hls = RESTHls()
|
self.hls = RESTHls()
|
||||||
|
self.proxy = RESTProxy()
|
||||||
self.chats = RESTChats()
|
self.chats = RESTChats()
|
||||||
self.servers = RESTServers()
|
self.servers = RESTServers()
|
||||||
self.nodes = RESTNodes()
|
self.nodes = RESTNodes()
|
||||||
|
|
Loading…
Reference in a new issue