Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how to read the password of an rtsp link that contains '@' with streamedian? #192

Open
czb7046 opened this issue Mar 1, 2023 · 1 comment

Comments

@czb7046
Copy link

czb7046 commented Mar 1, 2023

No description provided.

@victorgrenke
Copy link
Contributor

Add code like below to "setPlayerSource" function in the "index.html" file to get username and password.

function setPlayerSource(newSource) {
let result = newSource.match(/rtsp://(.*)@/);
let credentials = result[1].split(':');
let password = credentials[0];
let user = credentials[1];

...

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants