There are some large .Mp4 files encoded with FFmpeg in another project .
I use MediaElement.js to display the video for user (look after the video name in another server, copy it into a Webserver location , and play it) . for larger video files, they Cant be played . Does it mean MediaElement load whole Video file , and then play them? What should I do for buffering separate section , to avoid this issue?
This is the code I use :
if ($('#player1')) {
player = new MediaElementPlayer("#player1",
{
//...
alwaysShowControls: true,
success: function(mediaElement, domObject) {
mediaElement.play();
}
});
}
I found this link MediaElement.js - Flash Video Wont Play Until Fully Loaded , I 'm not sure if its useful for me or not?
Please let me know if any solution comes into your mind, Thanks .