Hello,
I have a very frustrating problem with an embedded streaming Quicktime
movie. People used to be able to double click on an embedded movie to
see it in full-screen mode. The latest version of Quicktime killed
that functionality. I have no idea why.
I'm trying to get a movie to stretch to-fit in a window. I can get
the reference movie to stretch. When I click on the reference movie,
the streaming movie starts up as planned, However the streaming movie
is the original dimensions. I can't get it to stretch.
The dimensions of the ref movie are 320x200
The dimensions of the .mp4 file on the streaming media server are
320x200
I want to stretch both the reference movie and the streaming movie to
520x400.
Is there a way to force a resize via JavaScript and Quicktime's
GetRectangle method?
Is there a way to enable full-screen mode for an embedded Quicktime
movie?
You can see this in action here...
http://www.athensmusician.net/video.php
Here is the HTML.
<object
classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
width="500"
height="450"
codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="SRC" value = "http://xxx.xxx.xxx/thumb/
2007-10-06_4774_wheels.jpg" >
<param name="QTSRC" value = "http://xxx.xxx.xxx/thumb/
2007-10-06_4774_wheels.jpg" >
<param name="HREF" value = "rtsp://xxx.xxx.xxx:7070/amn/
<2007-10-06_4774_wheels.mp4" >
<param name="AUTOPLAY" value = "true" >
<param name="CONTROLLER" value = "true" >
<param name="TYPE" value = "video/quicktime" >
<param name="TARGET" value = "myself" >
<param name="SCALE" value = "tofit" >
<embed
src = "http://xxx.xxx.xxx/thumb/
2007-10-06_4774_wheels.jpg"
qtsrc = "http://xxx.xxx.xxxt/thumb/
2007-10-06_4774_wheels.jpg"
href = "rtsp://xxx.xxx.xxxt:7070/amn/
2007-10-06_4774_wheels.mp4"
target = "myself"
scale = "tofit"
controller = "true"
width = "500"
height = "450"
loop = "false"
autoplay = "true"
plugin = "quicktimeplugin"
type = "video/quicktime"
cache = "false"
pluginspage= "http://www.apple.com/quicktime/download/" >
</embed>
</object>