Best Javascript video player Internet Explorer 6 compatible
I'd like to insert in a website a video...The problem is:
It must be accessible from IE6
It must be accessible from IPad and apple devices (NO FLASH and no mediaplayer activex)
Anibody knows 'bout a solution to my problem?
The library or the code must be free!
Thank you very much!
Solved: using Hybrid approach, with apps li开发者_如何转开发ke this: http://camendesign.com/web-dev/video_for_everybody
There is no player that satisfies your conditions. You'll have to take a hybrid approach, with a combination of Flash and HTML 5 video.
Use HTML5! example:
<video src="movie.ogg" width="320" height="240" controls="controls">
Your browser does not support the video tag.
</video>
You just need to tweak it a little. Here is a little help: http://html5doctor.com/how-to-get-html5-working-in-ie-and-firefox-2/
精彩评论