与 Internet Explorer 兼容的带音频录制的视频

Posted

技术标签:

【中文标题】与 Internet Explorer 兼容的带音频录制的视频【英文标题】:Video with audio recording compatible with Internet Explorer 【发布时间】:2015-11-17 04:44:53 【问题描述】:

我一直在网上搜索在浏览器中录制带音频的视频,它至少应该与主要浏览器兼容,主要是internet explore。 我知道WebRTC,但它只支持Chrome。我想找到Internet Explore 的解决方案。我有更多的谷歌但没有找到任何可以指引我正确方向的东西。我知道 IE 可以支持Flash,但没有找到任何好的资源如何使用Flash 录制带音频的视频。任何建议都会更好。

【问题讨论】:

【参考方案1】:

您必须将视频保存在本地还是服务器上? 您可以将网络摄像头视频存储在服务器上。但是您需要一个媒体服务器。 (Flash Media Server - 但它的成本很高)或 RED5,它是免费的:https://github.com/Red5/red5-server

然后你必须打开一个连接:

var nc:NetConnection = new NetConnection();
nc.connect(RED5_PATH);
var ns:NetStream = new NetStream(nc);

var cam:Camera = Camera.get();
var micro:Microphone = Microphone.get();
ns.setBufferTime(100); 
ns.attachVideo(cam);
ns.attachAudio(micro);

【讨论】:

以上是关于与 Internet Explorer 兼容的带音频录制的视频的主要内容,如果未能解决你的问题,请参考以下文章

Internet Explorer 兼容性灾难

如果未指定 Internet Explorer 兼容性视图会发生啥

如何使 svg 蒙版图像与 Internet Explorer 兼容

检测旧的 Internet Explorer Javascript 函数(< ES6)

Internet Explorer 11 中的 <audio> 标记兼容性

使用 Grunt-Babel 使 ES6 Internet Explorer 11 兼容