Search for videos outside the buffer line in Flash mode

Web server modules ngx_http_mp4_moduleor mod_h264_streamingallow Flash clients to search for videos outside the loaded line of the buffer using the "start" parameter, for example:

http://server.com/path/to/video.mp4?start=10

Is it possible to include this function in mediaelement.js?

+2
source share
1 answer

Pseudo-stream is currently not implemented in the Mediaelement Flash Player.

Take a look at this topic: http streamed MP4 vidéo is no coincidence that you can find it in Flash . But someone is working on it; hope we get this feature in the future :)

Edit:

(. ). mp4. enablePseudoStreaming true, .

:

var Player = new MediaElement('video_player', {
    features: [ 'flash' ],
    enablePseudoStreaming: true
});

, :

http://example.com/video.mp4?start=40

start query , . pseudoStreamingStartQueryParam.

+1

All Articles