Publish to external RMTP server with user and password

Vitor Zaninotto

New Member
Hello
I'm trying to publish my WebRTC stream to an external RMTP server that requires user and password.

Stream URL: rtmp://p.ep581238.i.akamaientrypoint.net/EntryPoint
Stream name: dclive_1_150@5238
User: abcde
Password: 12345

But Flashphoner has only URL and stream name. Is there any way to pass username directly by URL?

I tried: rtmp://p.ep581238.i.akamaientrypoint.net/EntryPoint?abcde&12345

But it didn't work.

Thanks
 

Max

Administrator
Staff member
Hello
This is general form for RTMP authentication:
Code:
rtmp://abcde:12345@p.ep581238.i.akamaientrypoint.net/EntryPoint/clive_1_150@5238
 

Max

Administrator
Staff member
@ symbol should not be used in the stream name
It may cause parsing errors because we use @ as authentication delimiter.
 
Top