我想做的是播放由对 URL 的请求提供的视频。网络服务器是 Django
这里形成了提供视频的 HttpResponse:
filename = rec_path(recording_id) + '/rgb_video.mp4'
wrapper = FileWrapper(file(filename))
response = HttpResponse(wrapper, content_type='video/mp4')
response['Content-Disposition'] = 'filename=video.mp4'
response['Content-Length'] = os.path.getsize(filename)
return response
在 HTML 方面我有
<video width="320" height="240" controls="controls">
<source src='{{ ROOT_URL}}/recordings/annotate/video/serve/{{ recording_id }}' type="video/mp4" />
Your browser does not support the video tag. //add this line
</video>
我可以下载视频,但不能以这种方式播放。我尝试安装 mod_h264 mod 并配置一个仅提供文件的简单 VirtualHost。我也尝试过 Jwplayer,但没有一个有效。
更新:奇怪的是其中一个视频以这种方式播放。所有视频都是使用相同的设置制作的,所以我不确定是什么原因造成的。播放的视频很短,只有 8 秒,也许这就是原因?