How can I use Opus Codec from JavaScript

后端 未结 4 473
耶瑟儿~
耶瑟儿~ 2021-02-05 15:31

I would like to see if it\'s possible to have direct access to Opus using getUserMedia or anything similar from the latest browsers.

I\'ve been researching

相关标签:
4条回答
  • 2021-02-05 15:52

    So there are a lot of suggestions about Emscripten but nobody did, so I ported the encoder opus-tools to JavaScript using Emscripten. Dependent on what one has in mind, there are now the following opportunities:

    • Encoding FLAC, WAVE, AIFF, RAW files || demo || Web Worker size: 1.3 MiB
    • Encoding raw stuff for immediately processing or sending without container || demo || Web Worker size: 0.6 MiB
    • Encoding to Ogg-Opus and WAV from getUserMedia stream
    • When using Mozilla Firefox, it's possible to use a MediaRecorder, which would also allow to convert arbitrary sound files into Opus format on supported platforms together with AudioContext.decodeAudioData()
    0 讨论(0)
  • 2021-02-05 15:54

    Unfortunately, it isn't currently possible to access browser codecs directly from JavaScript for encoding. The only way to do it would be to utilize WebRTC and set up recording on the server. I've tried this by compiling libjingle with some other code out of Chromium to get it to run on a Node.js server... it's almost impossible.

    The only thing you can do currently is send raw PCM data to your server. This takes up quite a bit of bandwidth, but you can minimize that by converting the float32 samples down to 16 bit (or 8 bit if your speech recognition can handle it).

    Hopefully the media recorder API will show up soon so we can use browser codecs.

    0 讨论(0)
  • 2021-02-05 15:57

    This is not a complete solution, @Brad's answer is actually the correct one at this time.

    One way to do it is to compile Opus to Emscripten and hope that your PC can handle encoding using JavaScript. Another alternative is to use speex.js.

    0 讨论(0)
  • 2021-02-05 16:02

    We're using emscripten for encoding and decoding using gsm610 with getUserMedia, and it works incredibly well, even on mobile devices. These days javascript gives almost native performance, so emscripten is viable for compiling codecs. The only issue is potentially very large .js files, so you want to only compile the parts you are using.

    0 讨论(0)
提交回复
热议问题