通过javascript获取音频文件的音量信息
是否可以在javascript中加载wav/mp3/amr/任何文件,并对其进行分析以确定以我不介意的任何数字形式表示的文件的最大音量?我需要在不实际播放声音的情况下执行此操作,这样用户就听不到它。
Is it possible to load a wav/mp3/amr/whatever file in javascript, and to analyse it to determine the max volume of the file represented in any numerical form i dont mind? I need to do this without actually playing the sound so the user will not hear it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了确定文件音量(实际上,这里的“音量”术语也需要一个特殊的定义),实际上需要对文件进行解码和流式传输,而无需数据到达音频硬件。也就是说,该操作需要特定的音频/媒体API和音频处理。
在 Windows 中,ActiveX 控件可以完成这项工作。 JavaScript 代码将实例化它并传递文件名,控件将打开文件、在内部设置音频流管道并处理数据。由于您没有指定所需的环境,因此您可能会或不会接受这种方式。
To determine file volume (actually, 'volume' term here needs a special definition too), one actually needs to decode and stream the file, just without data reaching audio hardware. That is, the operation requires specific audio/media API and audio processing.
In Windows an ActiveX control could do the job. JavaScript code would instantiate it and pass it file name, the control would open file, setup audio streaming pipeline internally, and process the data. As you did not specify desired environment, this way might be or be not acceptable to you.