Modifying scripts to work outside of localhost

This commit is contained in:
Jono Targett 2023-05-11 15:24:56 +09:30
parent 55ae3ff048
commit 2b10d1b3e9
2 changed files with 5 additions and 4 deletions

View File

@ -1,9 +1,9 @@
v=0
o=- 0 0 IN IP4 127.0.0.1
o=- 0 0 IN IP4 141.168.225.91
s=No Name
c=IN IP4 127.0.0.1
c=IN IP4 141.168.225.91
t=0 0
a=tool:libavformat 58.29.100
m=audio 1234 RTP/AVP 97
m=audio 5001 RTP/AVP 97
b=AS:800
a=rtpmap:97 PCMU/32000/2

View File

@ -152,6 +152,7 @@ def end_stream(radio):
if __name__ == '__main__':
app.run(
host='0.0.0.0',
threaded=True,
debug=True
debug=False
)