Wowza Community

RTMP - Read dynamic metadata

Hello,

We are trying to read a dynamic metadata that comes from a rtmp stream from wooza server. (Maybe with some module Add-on?)

That rtmp stream will be then re-stream with live-repeater method for other players.

We what the other players to receive the dynamic data from some source.

The flash client can read the dynamic data with this code

nsPlay = new NetStream(nc);
var nsPlayClientObj:Object = new Object();
nsPlay.client = nsPlayClientObj;
nsPlayClientObj.setCaption = function(infoObject:Object) {
for (var propName:String in infoObject)
{
if (propName=="dynamicMetadata" && infoObject[propName]!="") {
                                var temp_xml:XML=new XML(infoObject[propName]);
                               break;
                }
}

This only works in Flash clients at present.

Richard