Files
td_official/public/webrtc/srs.utility.js

9 lines
234 B
JavaScript
Raw Normal View History

2025-07-08 16:39:42 +08:00
/**
* parse the rtmp url,
* for example: rtmp://demo.srs.com:1935/live...vhost...players/livestream
* @return object {server, port, vhost, app, stream}
*/
function srs_parse_rtmp_url(rtmp_url) {
return parse_rtmp_url(rtmp_url);
}