If the RTSP stream password is "pass@word" I can only play it adding the password to the url like this:
rtsp://username:pass%40word@domain:port
Changing @ to %40 works on the URL
But when I try to use: media.AddOption(":rtsp-pwd=pass@word");
Authentication fails.
Using media.AddOption(":rtsp-pwd=pass%40word"); also fails.