////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////// // to query the swf anti cache. function srs_get_version_code() { return "1.25"; } /** * player specified size. */ function srs_get_player_modal() { return 740; } function srs_get_player_width() { return srs_get_player_modal() - 30; } function srs_get_player_height() { return srs_get_player_width() * 9 / 19; } // get the default vhost for players. function srs_get_player_vhost() { return "players"; } // the api server port, for chat room. function srs_get_api_server_port() { return 8085; } // the srs http server port function srs_get_srs_http_server_port() { return 8080; } // get the stream published to vhost, // generally we need to transcode the stream to support HLS and filters. // for example, src_vhost is "players", we transcode stream to vhost "players_pub". // if not equals to the player vhost, return the orignal vhost. function srs_get_player_publish_vhost(src_vhost) { return (src_vhost != srs_get_player_vhost())? src_vhost:(src_vhost + "_pub"); } // for chat, use rtmp only vhost, low latecy, without gop cache. function srs_get_player_chat_vhost(src_vhost) { return (src_vhost != srs_get_player_vhost())? src_vhost:(src_vhost + "_chat"); } ////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////// /** * update the navigator, add same query string. */ function update_nav() { $("#srs_index").attr("href", "index.html" + window.location.search); $("#nav_srs_player").attr("href", "srs_player.html" + window.location.search); $("#nav_srs_publisher").attr("href", "srs_publisher.html" + window.location.search); $("#nav_srs_chat").attr("href", "srs_chat.html" + window.location.search); $("#nav_srs_bwt").attr("href", "srs_bwt.html" + window.location.search); $("#nav_jwplayer6").attr("href", "jwplayer6.html" + window.location.search); $("#nav_osmf").attr("href", "osmf.html" + window.location.search); $("#nav_vlc").attr("href", "vlc.html" + window.location.search); } /** @param server the ip of server. default to window.location.hostname @param vhost the vhost of rtmp. default to window.location.hostname @param port the port of rtmp. default to 1935 @param app the app of rtmp. default to live. @param stream the stream of rtmp. default to livestream. */ function build_default_rtmp_url() { var query = parse_query_string(); var server = (query.server == undefined)? window.location.hostname:query.server; var port = (query.port == undefined)? 1935:query.port; var vhost = (query.vhost == undefined)? window.location.hostname:query.vhost; var app = (query.app == undefined)? "live":query.app; var stream = (query.stream == undefined)? "demo":query.stream; if (server == vhost || vhost == "") { return "rtmp://" + server + ":" + port + "/" + app + "/" + stream; } else { return "rtmp://" + server + ":" + port + "/" + app + "...vhost..." + vhost + "/" + stream; } } // for the chat to init the publish url. function build_default_publish_rtmp_url() { var query = parse_query_string(); var server = (query.server == undefined)? window.location.hostname:query.server; var port = (query.port == undefined)? 1935:query.port; var vhost = (query.vhost == undefined)? window.location.hostname:query.vhost; var app = (query.app == undefined)? "live":query.app; var stream = (query.stream == undefined)? "demo":query.stream; if (server == vhost || vhost == "") { return "rtmp://" + server + ":" + port + "/" + app + "/" + stream; } else { vhost = srs_get_player_chat_vhost(vhost); return "rtmp://" + server + ":" + port + "/" + app + "...vhost..." + vhost + "/" + stream; } } // for the bandwidth tool to init page function build_default_bandwidth_rtmp_url() { var query = parse_query_string(); var server = (query.server == undefined)? window.location.hostname:query.server; var port = (query.port == undefined)? 1935:query.port; var vhost = "bandcheck.srs.com"; var app = (query.app == undefined)? "app":query.app; var key = (query.key == undefined)? "35c9b402c12a7246868752e2878f7e0e":query.key; return "rtmp://" + server + ":" + port + "/" + app + "?key=" + key + "&vhost=" + vhost; } /** @param server the ip of server. default to window.location.hostname @param vhost the vhost of hls. default to window.location.hostname @param hls_vhost the vhost of hls. override the server if specified. @param hls_port the port of hls. default to window.location.port @param app the app of hls. default to live. @param stream the stream of hls. default to livestream. */ function build_default_hls_url() { var query = parse_query_string(); // for http, use hls_vhost to override server if specified. var server = window.location.hostname; if (query.server != undefined) { server = query.server; } else if (query.hls_vhost != undefined) { server = query.hls_vhost; } var port = (query.hls_port == undefined)? window.location.port:query.hls_port; var app = (query.app == undefined)? "live":query.app; var stream = (query.stream == undefined)? "demo":query.stream; if (port == "" || port == null || port == undefined) { port = 8080; } if (stream.indexOf(".flv") >= 0) { return "http://" + server + ":" + port + "/" + app + "/" + stream; } return "http://" + server + ":" + port + "/" + app + "/" + stream + ".m3u8"; } /** * initialize the page. * @param rtmp_url the div id contains the rtmp stream url to play * @param hls_url the div id contains the hls stream url to play * @param modal_player the div id contains the modal player */ function srs_init_rtmp(rtmp_url, modal_player) { srs_init(rtmp_url, null, modal_player); } function srs_init_hls(hls_url, modal_player) { srs_init(null, hls_url, modal_player); } function srs_init(rtmp_url, hls_url, modal_player) { update_nav(); if (rtmp_url) { $(rtmp_url).val(build_default_rtmp_url()); } if (hls_url) { $(hls_url).val(build_default_hls_url()); } if (modal_player) { $(modal_player).width(srs_get_player_modal() + "px"); $(modal_player).css("margin-left", "-" + srs_get_player_modal() / 2 +"px"); } } // for the chat to init the publish url. function srs_init_publish(rtmp_url) { update_nav(); if (rtmp_url) { $(rtmp_url).val(build_default_publish_rtmp_url()); } } // for bw to init url // url: scheme://host:port/path?query#fragment function srs_init_bwt(rtmp_url, hls_url) { update_nav(); if (rtmp_url) { $(rtmp_url).val(build_default_bandwidth_rtmp_url()); } } // check whether can republish function srs_can_republish() { var browser = get_browser_agents(); if (browser.Chrome || browser.Firefox) { return true; } if (browser.MSIE || browser.QQBrowser) { return false; } return false; } // without default values set. function srs_initialize_codec_page( cameras, microphones, sl_cameras, sl_microphones, sl_vcodec, sl_profile, sl_level, sl_gop, sl_size, sl_fps, sl_bitrate, sl_acodec ) { $(sl_cameras).empty(); for (var i = 0; i < cameras.length; i++) { $(sl_cameras).append("