View Single Post
Old 04-22-2014, 03:04 AM  
vdbucks
Monger Cash
 
Industry Role:
Join Date: Jul 2010
Posts: 2,764
Quote:
By default Flowplayer uses the HTML5 video tag and falls back to Flash when HTML5 video is not supported. Alternatively Flowplayer can be configured to use Flash first and then fall back to HTML5 when Flash support is not present. The primary engine can be configured with the engine option or the data-engine attribute:
This will play intro.mp4 using the Flash engine if Flash is enabled in the browser:
Code:
<div class="flowplayer" data-engine="flash">
   <video>
      <source type="video/webm" src="http://mydomain.com/path/to/intro.webm">
      <source type="video/mp4"  src="http://mydomain.com/path/to/intro.mp4">
   </video>
</div>
https://flowplayer.org/docs/setup.html#flash
vdbucks is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote