RTSP Embedded for Internet Explorer

Can anyone explain how to embed a RTSP file into a web page for INternet Explorer? Or even point me to an example of someone else doing this on the web? I cannot seem to find any examples of true RTSP files working inside IE. I am using QTSS for both live and cached files and need IE to be able to display them properly. So far all I get is a big blue "Q". THis used to be easy, I think MS changed something in IE???? HELP!

Posted on May 8, 2008 2:46 PM

Reply
Question marked as ⚠️ Top-ranking reply

Posted on Jun 11, 2008 9:04 PM

Answering my own question...

Here is the code I settled on, works in every browser I tried and uses a poster frame as the launch button. Streaming files are QVGA (320x240) with autoplay and controller enabled and loop disabled.


<OBJECT
CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
WIDTH="320"
HEIGHT="256"
CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
<PARAM name="SRC" VALUE = "http://*url location of your poster frame*.jpg" >
<PARAM name="QTSRC" VALUE = "http://*url location of your poster frame*.jpg" >
<PARAM name="HREF" VALUE = "rtsp://*url location of your streaming file*.mov" >
<PARAM name="AUTOPLAY" VALUE = "true" >
<PARAM name="CONTROLLER" VALUE = "true" >
<PARAM name="TYPE" VALUE = "video/quicktime" >
<PARAM name="TARGET" VALUE = "myself" >
<EMBED
SRC = "http://*url location of your poster frame*.jpg"
QTSRC = "http://*url location of your poster frame*.jpg"
HREF = "rtsp://*url location of your streaming file*.mov"
TARGET = "myself"
CONTROLLER = "true"
WIDTH = "320"
HEIGHT = "256"
LOOP = "false"
AUTOPLAY = "true"
PLUGIN = "quicktimeplugin"
TYPE = "video/quicktime"
CACHE = "false"
PLUGINSPAGE= "http://www.apple.com/quicktime/download/" >
</EMBED>
</OBJECT>

Hope that is some help for one of the 300 or so folks that read this post! Good Luck!
1 reply
Sort By: 
Question marked as ⚠️ Top-ranking reply

Jun 11, 2008 9:04 PM in response to Scott Maiden

Answering my own question...

Here is the code I settled on, works in every browser I tried and uses a poster frame as the launch button. Streaming files are QVGA (320x240) with autoplay and controller enabled and loop disabled.


<OBJECT
CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
WIDTH="320"
HEIGHT="256"
CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
<PARAM name="SRC" VALUE = "http://*url location of your poster frame*.jpg" >
<PARAM name="QTSRC" VALUE = "http://*url location of your poster frame*.jpg" >
<PARAM name="HREF" VALUE = "rtsp://*url location of your streaming file*.mov" >
<PARAM name="AUTOPLAY" VALUE = "true" >
<PARAM name="CONTROLLER" VALUE = "true" >
<PARAM name="TYPE" VALUE = "video/quicktime" >
<PARAM name="TARGET" VALUE = "myself" >
<EMBED
SRC = "http://*url location of your poster frame*.jpg"
QTSRC = "http://*url location of your poster frame*.jpg"
HREF = "rtsp://*url location of your streaming file*.mov"
TARGET = "myself"
CONTROLLER = "true"
WIDTH = "320"
HEIGHT = "256"
LOOP = "false"
AUTOPLAY = "true"
PLUGIN = "quicktimeplugin"
TYPE = "video/quicktime"
CACHE = "false"
PLUGINSPAGE= "http://www.apple.com/quicktime/download/" >
</EMBED>
</OBJECT>

Hope that is some help for one of the 300 or so folks that read this post! Good Luck!
Reply

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

RTSP Embedded for Internet Explorer

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.