I have a question regarding the HTML5 video widget. Currently the widget falls back to flash playing .mp4 if browser does not support HTLM5. How do you add additional coding so when it falls back to flash it uses an FLV file....or even better different flavors of FLV. Below is my coding for the video callled "The Sala Mala" : <video width="960" height="540" poster="cover1.jpg"duration="10:53" preload="auto">
<source type="video/webm" src="salamala-stereo-chinese.webmvp8.webm" /> <source type="video/h264" src="salamala-stereo-chinese.mp4" /> <source type="video/ogg" src="salamala-stereo-chinese.theora.ogv" /> </video>
Should i add the following code?: <embed src="video/salamala-stereo-chinese.flv" type="applicayion/x-shockwave-flash" width="960" height="540" allowscriptaccess="always"></embed>
The KalturaHTLM5 widget works great on newer computers and browsers yet won't play on older vintage computers hence i need to add FLV file type,
Thanks songswell
Just put the code inside of the video tag like this:
<video width="960" height="540" poster="cover1.jpg" duration="10:53" preload="auto">
<source type="video/webm" src="salamala-stereo-chinese.webmvp8.webm" />
<source type="video/h264" src="salamala-stereo-chinese.mp4" />
<source type="video/ogg" src="salamala-stereo-chinese.theora.ogv" />
<embed src="video/salamala-stereo-chinese.flv" type="application/x-shockwave-flash" width="960" height="540" allowscriptaccess="always"></embed>
</video>
Nick
Hello Nick, how does: type="video/x-flv" differ from
type="application/x-shockwave-flash" when inserting the FLV video
joe