How can I make a video and audio mixer with audio recording capability using nodejs. Also I want an editable waveform graph of audio. Is there any supporting package in nodejs?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Unless you are lucky enough to find a package that does exactly what you want, I suspect that using ffmpeg through a nodes wrapper of interface library such as the one below will be the easiest approach:
- https://github.com/fluent-ffmpeg/node-fluent-ffmpeg
This allows you use all the power and large user community behind the ffmpeg command line program, but wrapped in a node.js friendly interface.