Search code examples
jqueryipadhtmlcssquicktime

How to remove quicktime logo from loading video at ipad


I am implementing my own HTML5 video control to play mp4 videos inside. It works fine at all browsers instead of my destination iPhone OS 4.3 Safari. When i am trying to load new video into my control QuickTime logo appears. And disappears when video was loaded onto device. it takes only few seconds but unfortunately such behavior breaks all my stylish design.

quicktime logo at loading HTML5 video

Is there any chance using JS or HTML, CSS to remove it ?


Solution

  • Use the showlogo attribute in the EMBED or OBJECT tags.

    For an embed it is:

    <embed src="foo.mov" qtsrc="hi.mov" width="320" height="240" showlogo="false">
    

    Put in an object it takes the form:

    <param name="showlogo" value="false" >
    

    You can find more info on HTML Scripting Guide for QuickTime on Apple.com.