Dear Wowza Support-Team & Wowza Communtiy,
I would like to get the full url during onConnect
e.g. rtmp://localhost/live/myChannel
My approach was:
System.out.println(“onConnect Param1:” + getParamString(params, PARAM1));
System.out.println(“onConnect Param2:” + getParamString(params, PARAM2));
but both returns me “null”
i found a working solution with the “public void play(IClient client, RequestFunction function, AMFDataList params){}” method.
But when i use the “play” method the video doesn’t play.
Do you have any idea how can i get the “myChannel” part out of the Uri?
i also tried “getUri” but that method give me only the string till rtmp://localhost/live/ :/…
thank you for your time and help