mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
Merge branch 'master' of github.com:ZLMediaKit/ZLMediaKit
This commit is contained in:
commit
b72f1cb3ab
@ -46,7 +46,8 @@
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<label for="methond">methond(play or push):</label>
|
||||
<label for="methond">methond(play or push or echo):</label>
|
||||
<input type="radio" name="methond" value="echo" >echo
|
||||
<input type="radio" name="methond" value="push" >push
|
||||
<input type="radio" name="methond" value="play" checked = true>play
|
||||
</p>
|
||||
@ -84,17 +85,15 @@
|
||||
document.getElementById('streamUrl').value = url
|
||||
document.getElementsByName("methond").forEach((el,idx)=>{
|
||||
el.onclick=function(e){
|
||||
if(el.value == "play")
|
||||
{
|
||||
let url = document.getElementById('streamUrl').value;
|
||||
let url = new URL(document.getElementById('streamUrl').value);
|
||||
url.searchParams.set("type",el.value)
|
||||
document.getElementById('streamUrl').value = url.toString()
|
||||
|
||||
document.getElementById('streamUrl').value = url.replace("&type=push","&type=play");
|
||||
if(el.value == "play"){
|
||||
recvOnly = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
let url = document.getElementById('streamUrl').value;
|
||||
document.getElementById('streamUrl').value = url.replace("&type=play","&type=push");
|
||||
}else if(el.value == "echo"){
|
||||
recvOnly = false;
|
||||
}else{
|
||||
recvOnly = false;
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user