I'm having an issue will MediaElement.js (my flash video player) not playing my .m4V video files (encoded using ffmpeg) until the video is fully loaded.
I have tested this with various third party video files that appear to play straight away before they have completely loaded. Only my files do not :(
When played using the html5 video solution they play straight away, just not on the flash fallback.
Could this be to do with the settings the video is being encoded at? I don't see any other reason.
CODE:
<video id="player1" src='BriefTour.m4v' type="video/mp4" preload="none"></video>
<script>
var videoPlayer = MediaElement('player1',{
success:function(me){me.play();}
});
</script>
As you can see I am specifying no option, the player is on default settings.
Hope someone has encoutered this before and can help me out!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…