Replies: 1 comment
-
This is a place to ask questions about Flask-SocketIO. If you have a general question about Flask or Python, please ask in the appropriate forum(s) for them, or in Stack Overflow. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to stream new videos on the same 5000 port every time
Only the 888.mp4 is fixed and cannot be overwritten
my code
from flask import Flask, send_file
app = Flask(name)
@app.route('/')
def get():
return send_file("888.mp4")
if name == "main":
app.run(debug=True, host='0.0.0.0', port=5000)
Beta Was this translation helpful? Give feedback.
All reactions