This commit is contained in:
Simon
2026-02-08 17:16:48 +00:00
parent 1dc6048d9c
commit 1becdce9ff
2 changed files with 5 additions and 0 deletions

View File

@@ -106,6 +106,10 @@ def videos_proxy():
def index():
return send_from_directory(app.static_folder, 'index.html')
@app.route('/favicon.ico')
def favicon():
return send_from_directory(app.static_folder, 'favicon.ico')
@app.route('/api/stream', methods=['POST', 'GET', 'HEAD'])
def stream_video():
# Note: <video> tags perform GET. To support your POST requirement,