Hi MadRoller,

unfortunatelly its not that easy.

You first have to connect to the correct scope:
rtmp://myhost:1935/openmeetings/$ROOM_ID

and then you have to find out the correct $BROADCAST_ID for the stream-name.

To get that broadcast ID you can use one of the SOAP-Calls to get a
list of RoomClients for each room. Each RoomClient has the attribute
"broadcastId" set to a numeric value if the user has started a stream.
To identify if its a audio-only, audio-video, video-only or
screen-sharing stream you have the attribute:
        
        /*
         * avsettings can be:
         * av - video and audio
         * a - audio only
         * v - video only
         * n - no av only static Image
         */
        private String avsettings = "";

and
        /*
         * Indicates if this User is broadcasting his stream at all
         * Only interesting in the Event Modus
         */
        private Boolean isBroadcasting = false;
and
private Boolean isScreenClient = false;

if isScreenClient == TRUE then it is a Screen-Sharing Client and the
Stream-Name is in the attribute *streamPublishName*


Sebastian


2010/5/17 madroller <suthar...@gmail.com>
>
> Hello,
>
>  Is it possible to get a list of stream(s) that are being published
> from openmeetings/Red5 server? Especially the streams from webcams
> only? I'm developing an openlazlo based player for a requirement and
> trying to test it like:
>
>  <rtmpconnection src="rtmp://myhost:1935/openmeetings/hibernate"
> autoconnect="true"/>
>  <mediastream name="s1" type="rtmp" />
>  <simplelayout/>
>  <rtmpstatus/>
>  <videoview id="v" type="rtmp" stream="$once{canvas.s1}"
> autoplay="true" url="?????????????"/>
>  .....
>
> and i dont know what should be the stream name to be specified in url
> ="" ?
>
> --
> You received this message because you are subscribed to the Google Groups 
> "OpenMeetings User" group.
> To post to this group, send email to openmeetings-u...@googlegroups.com.
> To unsubscribe from this group, send email to 
> openmeetings-user+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/openmeetings-user?hl=en.
>



--
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.laszlo-forum.de
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.

Reply via email to