embed player failing

ahmed_foda

New Member
I'm trying to use the embedded player in my website, the stream link works fine in rtsp.me site so it's tested but when trying to add it to the embedded player the player fails.

can anyone help please it urgent
 

Max

Administrator
Staff member
Hello

Could you provide the RTSP link? We will check. You can also send RTSP link via the private form.
 

Max

Administrator
Staff member
1644592817422.png


You can set valid RTSP URL and add your custom URL as a text comment
 

Max

Administrator
Staff member
Try to escape character @ in the password

Replace

Code:
rtsp://admin:pass@word@localhost:554/live.sdp
With

Code:
rtsp://admin:pass%40word@localhost:554/live.sdp
Works in our test.

Please note. The "admin" and "pass@word" should be URL encoded before sending to the player. Or you can modify embed player code with URL encoder.
 

ahmed_foda

New Member
Try to escape character @ in the password

Replace

Code:
rtsp://admin:pass@word@localhost:554/live.sdp
With

Code:
rtsp://admin:pass%40word@localhost:554/live.sdp
Works in our test.

Please note. The "admin" and "pass@word" should be URL encoded before sending to the player. Or you can modify embed player code with URL encoder.
Thank you so much, I will reach back if I have any further issues.
 
Top