Can't play HTML5 video using Flask

妖精的绣舞 提交于 2019-12-17 16:52:13

问题


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 of what error it is.

Is there a log message somewhere that I'm missing? What is causing this and how can I fix it?


回答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.



来源:https://stackoverflow.com/questions/28201423/cant-play-html5-video-using-flask

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!