mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-10 00:39:28 +00:00
parent
4f098cbdf3
commit
815fa0586a
@ -190,7 +190,7 @@ class Transmitter {
|
||||
start() {
|
||||
console.log("requesting ICE servers");
|
||||
|
||||
fetch('whip', {
|
||||
fetch(new URL('whip', window.location.href), {
|
||||
method: 'OPTIONS',
|
||||
})
|
||||
.then((res) => this.onIceServers(res))
|
||||
@ -227,7 +227,7 @@ class Transmitter {
|
||||
'&audio_codec=' + audioCodec +
|
||||
'&video_bitrate=' + videoBitrate;
|
||||
|
||||
fetch('whip' + params, {
|
||||
fetch(new URL('whip', window.location.href) + params, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/sdp',
|
||||
@ -293,7 +293,7 @@ class Transmitter {
|
||||
}
|
||||
|
||||
sendLocalCandidates(candidates) {
|
||||
fetch('whip', {
|
||||
fetch(new URL('whip', window.location.href), {
|
||||
method: 'PATCH',
|
||||
headers: {
|
||||
'Content-Type': 'application/trickle-ice-sdpfrag',
|
||||
|
@ -104,7 +104,7 @@ class WHEPClient {
|
||||
start() {
|
||||
console.log("requesting ICE servers");
|
||||
|
||||
fetch('whep', {
|
||||
fetch(new URL('whep', window.location.href), {
|
||||
method: 'OPTIONS',
|
||||
})
|
||||
.then((res) => this.onIceServers(res))
|
||||
@ -138,7 +138,7 @@ class WHEPClient {
|
||||
|
||||
console.log("sending offer");
|
||||
|
||||
fetch('whep', {
|
||||
fetch(new URL('whep', window.location.href), {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/sdp',
|
||||
@ -204,7 +204,7 @@ class WHEPClient {
|
||||
}
|
||||
|
||||
sendLocalCandidates(candidates) {
|
||||
fetch('whep', {
|
||||
fetch(new URL('whep', window.location.href), {
|
||||
method: 'PATCH',
|
||||
headers: {
|
||||
'Content-Type': 'application/trickle-ice-sdpfrag',
|
||||
|
Loading…
Reference in New Issue
Block a user