1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

For #1202, Support auth_key param for srs player

This commit is contained in:
winlin 2018-08-12 11:52:18 +08:00
parent 728ddd133b
commit a9b5d65ca7
2 changed files with 27 additions and 3 deletions

View file

@ -643,6 +643,11 @@
if (query.buffer) {
url += "&buffer=" + query.buffer;
}
var queries = user_extra_params(query);
if (queries && queries.length) {
url += '&' + queries.join('&');
}
$("#player_url").text($("#txt_url").val()).attr("href", url);
$("#link_server").text(rtmp.server);