如何在同一URL上流式传输视频文件跨浏览器

时间:2015-11-18 08:38:49

标签: python django ffmpeg video-streaming

我正在尝试制作视频流应用程序,我有一个控制器可以播放不能与Firefox一起使用的mp4视频。

def get(self, request):

        filename = 'uploads/SampleVideo_1080x720_1mb.mp4' # Select your file here.
        wrapper = FileWrapper(file(filename))
        response = StreamingHttpResponse(wrapper, content_type='video/ogg; multipart/x-mixed-replace; boundary=frame')
        response['Content-Length'] = os.path.getsize(filename)

        return response

如果有人可以指导我为不同的浏览器制作它,我将不胜感激。

实际上我想根据浏览器或客户端发送流编码。动态。我是python的新手。

Youtube使用哪种技术:youtube如何在blob上提供视频:https%3A // www.youtube.com / 456e268f-bdfe-4ce7-8368-6b646a3ec5e8什么是 blob:

0 个答案:

没有答案