webserver-modulesngx_http_mp4_module
或mod_h264_streaming
允许 Flash 客户端使用“start”参数在下载的缓冲区行之外寻找视频,例如:
http://server.com/path/to/video.mp4?start=10
是否有机会在 mediaelement.js 中启用此功能?
webserver-modulesngx_http_mp4_module
或mod_h264_streaming
允许 Flash 客户端使用“start”参数在下载的缓冲区行之外寻找视频,例如:
http://server.com/path/to/video.mp4?start=10
是否有机会在 mediaelement.js 中启用此功能?
目前,Mediaelement Flash 播放器中的伪流尚未实现。
看看这个线程:http 流媒体 MP4 视频在 flash 中不是随机可搜索的。但是有人正在研究它;希望我们将来会获得该功能:)
编辑 :
他们现在正在研究它(请参阅此新闻)。它目前仅适用于 mp4 文件。您必须设置enablePseudoStreaming
为true
启用该功能。
示例代码:
var Player = new MediaElement('video_player', {
features: [ 'flash' ],
enablePseudoStreaming: true
});
然后玩家将提出如下请求:
http://example.com/video.mp4?start=40
The start query parameter specify the second in which you want to start pseudostream. You could also set another one with the option pseudoStreamingStartQueryParam
.