This commit is contained in:
deathbybandaid 2021-02-04 10:03:21 -05:00
parent 1082db0413
commit f4b2d8d6b1
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<h4 style="text-align: center;">fHDHR Channel Watch</h4>
<video width='50%' height='40%' autoplay controls>
<source src="{{ watch_url }}"> Your browser does not support the video tag.
<source src="{{ watch_url }}" type="video/webm"> Your browser does not support the video tag.
</video>

View File

@ -116,7 +116,7 @@ class WebWatch_Tuner():
tuner.close()
abort(response)
return Response(stream.get(), mimetype="video/mp4")
return Response(stream.get(), mimetype="video/webm")
if redirect_url:
return redirect("%s?retmessage=%s" % (redirect_url, urllib.parse.quote("%s Success" % method)))