0

我正在使用 html5 的视频元素来显示视频和音频流。

在旧版本的系统(笔记本电脑、个人电脑等)中,有时音量水平不好。所以我想放大流音频音量。

我做了一些狩猎,但没有找到任何可行的解决方案。

请为我提供一些链接或一些解决方案,以便我可以将其集成到我的应用程序中

4

1 回答 1

0

您可以使用timbre.js为视频轨道的音频添加压缩(带增益,即放大)。像这样的东西:

 // the source of your video file
 var src = document.getElementById('video').firstElementChild.src;

 // this will play and loop the audio with increased gain
 var video = T("audio", {loop:true}).load(src, function(res) {

     T("comp", {thresh:-48, knee:30, ratio:24, gain:18}, this).play();

 });
于 2013-08-22T17:39:44.243 回答