通过javascript获取音频文件的音量信息

发布于 2024-12-07 17:43:23 字数 106 浏览 0 评论 0原文

是否可以在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬色的秋千 2024-12-14 17:43:23

为了确定文件音量(实际上,这里的“音量”术语也需要一个特殊的定义),实际上需要对文件进行解码和流式传输,而无需数据到达音频硬件。也就是说,该操作需要特定的音频/媒体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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文