How to negotiate red5 connection parameters for streaming with JAVA
Posted
by
baba
on Stack Overflow
See other posts from Stack Overflow
or by baba
Published on 2011-01-14T15:39:09Z
Indexed on
2011/01/14
15:53 UTC
Read the original article
Hit count: 309
Hi, I have been creating a thin browser client (on java) that sends an RTMP stream to a specified red5 instance. I also use RTMP Researcher to monitor the traffic and events that occur between the client and the server.
Here is what I note: There is obviously a map with options that is being exchanged between the red5 instance and the client. You can see it here: (direct link : http://img716.imageshack.us/img716/661/newbitmapimagelb.png )
What I am wondering about is is there a programmatic way to obtain this map in the client side and maybe change some of the parameters or just examine them
Edit:
I am connecting like this
connect ( host, port, app, callback );
. I assume I am sending some default parameters along, because the other connect methods have also an optionsMap as an argument. I was wondering what are the possible values that could be put in such an optionsMap and where to obtain a list of them?
© Stack Overflow or respective owner