I am using an iPhone 3G running OS version 4.2.1. I have an embedded video that I want to play in a webpage. I am using AC_Quicktime.js to generate the embed code (http://developer.apple.com/internet/ieembedprep.html).
The thumbnail to click on shows up a grey gradient with a little quicktime logo at the bottom right corner, and a play button in the middle. I want to change the background from a grey gradient to a frame from the movie, but I cannot figure out what I need to do.
I have tried using css to add a background-image to the object, tried setting a
<param name="background-image" value="url(myimage.png)">
And I have heard about something called a poster frame, but I don't know what that is?
The apple website has a video here: that when viewed on the iPhone has a different default background for the thumbnail than the gradient to play the video, and the thumbnail changes to the last frame that you watched in the video if you close the video part way through. Does anyone know how this is done?
This was solved by using an embed element with the href attribute used for the video, and the src attribute used for the poster frame (or preview image).
<embed width="216" height="218" pluginspage="http://www.apple.com/quicktime/download/" airplay="allow" type="video/quicktime" cache="true" scale="1" autoplay="false" controller="false" target="myself" href="http://example.com/videos/vid.mp4" src="poster-image.png">
Also: the href value may need to be fully qualified for this to work.