gpt4 book ai didi

javascript - 创建

转载 作者:行者123 更新时间:2023-12-01 05:49:43 25 4
gpt4 key购买 nike

我正在制作一个 WebRTC 应用程序。

基本上我有这个代码:

rtc.onremotestream = function(event) {
//Want code to create a video tag in a specific <div> and then do this:
attachMediaStream([THAT NEW VIDEO TAG], event.stream);
}

我怎样才能做到这一点? 自动播放 必须为 true。

最佳答案

rtc.onremotestream = function(event) {
var videoTag = document.createElement('video');
document.getElementById('specific_div').appendChild(videoTag);
attachMediaStream(videoTag, event.stream);
}

有效吗?

关于javascript - 创建 <video> 并向其附加媒体流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23453027/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com