WebRTC111 error: DOMException [InternalError: "Cannot create an offer with no local tracks, no offerToReceiveAudio/Video, and no DataChannel
WebRTC111 error: DOMException [InternalError: "Cannot create an offer with no local tracks, no offerToReceiveAudio/Video, and no DataChannel
我正在使用 webrtc+janusgateway+streamCapture 构建流媒体服务。
这,开始流式传输视频:
public streamVideo() {
var video = $('#video1').get(0);
var stream;
video.onplay = () => {
if (video.captureStream) {
stream = video.captureStream();
} else if (video.mozCaptureStream) {
stream = video.mozCaptureStream();
} else {
alert('captureStream() not supported');
}
console.log(stream);
$("#secondvideoforll").get(0).srcObject = stream;
this.sfutest.createOffer(
{
media: { audioRecv: 0, videoRecv: 0, audioSend: 1, videoSend: 1}, // Publishers are sendonly
stream: stream,
success: (jsep) => {
Janus.debug("Got publisher SDP!");
Janus.debug(jsep);
var publish = { "request": "configure", "audio": 1, "video": 1 };
this.sfutest.send({"message": publish, "jsep": jsep});
},
error: (error) => {
Janus.error("WebRTC111 error:", error);
}
});
}
}
视频播放完美,但当我尝试创建报价(并进一步添加流)时。我收到此错误:
WebRTC111 error: DOMException [InternalError: "Cannot create an offer with no local tracks, no offerToReceiveAudio/Video, and no DataChannel."
code: 0
nsresult: 0x0]
相同的优惠创建(没有流参数)适用于网络摄像头流,但不适用于视频流。
我发现的主要区别是网络摄像头使用:LocalMediaStream
,而我的 streamCapture
使用 MediaStream。
对此有什么想法吗?
当调用 video.captureStream() getTracks() returns 空数组时,但在 1.5 秒后,它 returns 按预期跟踪。
如果没有添加曲目会产生错误:
出于文档目的添加此内容,因为其他人可能会感到困惑。
解决方案:
setInterval(function(){
// We wait till the mediaTracks are added to mediaStream
console.log(stream.getTracks());
// Further actions with the mediaStream
}, 1000);
谢谢!
我正在使用 webrtc+janusgateway+streamCapture 构建流媒体服务。
这,开始流式传输视频:
public streamVideo() {
var video = $('#video1').get(0);
var stream;
video.onplay = () => {
if (video.captureStream) {
stream = video.captureStream();
} else if (video.mozCaptureStream) {
stream = video.mozCaptureStream();
} else {
alert('captureStream() not supported');
}
console.log(stream);
$("#secondvideoforll").get(0).srcObject = stream;
this.sfutest.createOffer(
{
media: { audioRecv: 0, videoRecv: 0, audioSend: 1, videoSend: 1}, // Publishers are sendonly
stream: stream,
success: (jsep) => {
Janus.debug("Got publisher SDP!");
Janus.debug(jsep);
var publish = { "request": "configure", "audio": 1, "video": 1 };
this.sfutest.send({"message": publish, "jsep": jsep});
},
error: (error) => {
Janus.error("WebRTC111 error:", error);
}
});
}
}
视频播放完美,但当我尝试创建报价(并进一步添加流)时。我收到此错误:
WebRTC111 error: DOMException [InternalError: "Cannot create an offer with no local tracks, no offerToReceiveAudio/Video, and no DataChannel."
code: 0
nsresult: 0x0]
相同的优惠创建(没有流参数)适用于网络摄像头流,但不适用于视频流。
我发现的主要区别是网络摄像头使用:LocalMediaStream
,而我的 streamCapture
使用 MediaStream。
对此有什么想法吗?
当调用 video.captureStream() getTracks() returns 空数组时,但在 1.5 秒后,它 returns 按预期跟踪。
如果没有添加曲目会产生错误:
出于文档目的添加此内容,因为其他人可能会感到困惑。
解决方案:
setInterval(function(){
// We wait till the mediaTracks are added to mediaStream
console.log(stream.getTracks());
// Further actions with the mediaStream
}, 1000);
谢谢!