Can't Play Html5 Video Using Flask
I'm using Flask to serve .m3u8 and .ts files to simulate a vod stream. The video player does not stream the file and shows an error (see the screenshot below). I can't find a log
Solution 1:
The development server runs in single threaded mode by default, meaning it can only handle one request at a time. You are requesting streams of two files at once, the .m3u8 and the .ts. You can pass threaded=True
or processes=value greater than 1
to app.run
to allow handling of multiple requests at once, but that comes with it's own problems. The development server in general seems to have problems streaming html5 video and audio. The real solution is to use an actual server such as Nginx or Apache to serve the media files.
Post a Comment for "Can't Play Html5 Video Using Flask"