I'm using the FlowPlayer with its HTML5 mode to play mp4 videos. But it seems that the player waits until the chosen video is fully (down)loaded before playing it. I've read that there is a way to buffer/stream a video in the Flash-version of FlowPlayer. But I don't want to use the flash way because many visitors are using iPhone or iPad. Is there a way to use the standard FlowPlayer to play the videos while downloading the rest of them from the server?
My code currently looks like this:
<div class="player" data-engine="flash" style="width: 500px;">
<video>
<source type="video/mp4" src="url/to/video/source.mp4" />
</video>
</div>
Do I have to drop the "data-engine" property?
Thanks for any help :)