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

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

【问题讨论】:

    标签: javascript flash internet-explorer audio html5-video


    【解决方案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);
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-06-27
      • 1970-01-01
      • 1970-01-01
      • 2014-08-02
      • 1970-01-01
      相关资源
      最近更新 更多