PDA

View Full Version : Embedding Multiple RAM Streams


Squintz
12-06-2004, 02:08 AM
Is it possible to embed Muiltple Real players into one page and have all three streams playing at once. I though i asked this question here already but it seems to have disapeared. Maybe someone could tell me where its disapeared to but its titled the same. Sorry if its duplicated

Squintz
12-06-2004, 09:56 PM
Here is what i have so far. I am not familiar with objects... This code was thrown together from samples i found on the internet. How can i get all three of these videos playing at the same time without using IFrames.


<html>
<head><Title>Travel Forcast</Title>
<body>

<OBJECT ID=One CLASSID="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" WIDTH=320 HEIGHT=240>
<PARAM NAME="SRC" VALUE="rtsp://170.93.143.137:554/00/03">
<PARAM NAME="CONTROLS" VALUE="ImageWindow">
<PARAM NAME="CONSOLE" VALUE="one">
<PARAM NAME="AUTOSTART" VALUE="true">
<EMBED SRC="rtsp://170.93.143.137:554/00/03" WIDTH=320 HEIGHT=240 NOJAVA=true CONTROLS=ImageWindow CONSOLE=one AUTOSTART=true>
</OBJECT>

<OBJECT ID=Two CLASSID="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" WIDTH=320 HEIGHT=240>
<PARAM NAME="SRC" VALUE="rtsp://170.93.143.137:554/00/13">
<PARAM NAME="CONTROLS" VALUE="ImageWindow">
<PARAM NAME="CONSOLE" VALUE="two">
<PARAM NAME="AUTOSTART" VALUE="true">
<EMBED SRC="rtsp://170.93.143.137:554/00/13" WIDTH=320 HEIGHT=240 NOJAVA=true CONTROLS=ImageWindow CONSOLE=two AUTOSTART=true>
</OBJECT>

<OBJECT ID=Three CLASSID="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" WIDTH=320 HEIGHT=240>
<PARAM NAME="SRC" VALUE="rtsp://170.93.143.137:554/00/07">
<PARAM NAME="CONTROLS" VALUE="ImageWindow">
<PARAM NAME="CONSOLE" VALUE="three">
<PARAM NAME="AUTOSTART" VALUE="true">
<EMBED SRC="rtsp://170.93.143.137:554/00/07" WIDTH=320 HEIGHT=240 NOJAVA=true CONTROLS=ImageWindow CONSOLE=three AUTOSTART=true>
</OBJECT>


</body>
</html>

chilipie
12-07-2004, 08:11 AM
The first thing you should do is make all the tags lower-case (object not OBJECT), and then make sure all the attributes are in quotes.

chilipie
12-07-2004, 08:11 AM
Sorry, didn't mean to double-post. :(

mindlessLemming
12-07-2004, 10:48 AM
3 simultaneous streams? :eek: That's quite an assult on the poor old user... Could you combine the three, perhaps using a freeware audio tool like audacity (http://audacity.sourceforge.net/)?
If you want to run seperate streams because they are triggered by different events, Flash would be a more reliable alternative...
Sorry your answer didn't accompany my rant :o