HI
I trying to make custom server side module.
I have two questions.
-
How can i make custom publishing point.
-
How can i match custom publishing point
1. How can i make custom publishing point.
I trying to feeding by FFmpeg
Regulary Wowza using feed URL like this
rtsp://[wowza-ip]:1935/[moudleName]/[publishing point name]
for example) rtsp://wowzaServer.com:1935/live/mystream
But, In my case, Feed following URL like this
rtsp://[wowza-ip]:1935/[moudleName]/?(something parameter key=something parameter value)
for example) rtsp://wowzaServer.com:1935/live/?UID=1234&Room=mystream
If FFmpeg feeder connect to Wowza using this URL(rtsp://wowzaServer.com:1935/live/?UID=1234&Room=mystream)
I want to make publishing point using parameter value of room. when onRTPSessionCreate function called.
(finally, publish like this rtsp://wowzaServer.com:1935/live/mystream)
Could you tell me some advice, how to publish or publishing API method.
2. How can i match custom publishing point
This qeustion also continuous qeustion 1.
If player(VLC, some other player etc…) client trying to connect wowza, this URL(rtsp://wowzaServer.com:1935/live/?UID=4321&Room=mystream)
I want to match client connect to rtsp://wowzaServer.com:1935/live/mystream with Do not using redirection method.
Could you tell me some advice, how to match publishing point or match publishing point API method.
Thank you.