multiple .wav files, different playback volumes
2 ビュー (過去 30 日間)
古いコメントを表示
Alice
2016 年 10 月 4 日
回答済み: Steven Van Vaerenbergh
2016 年 10 月 5 日
I have about 250 .wav audio files which have different volumes during playback. I assume this difference is a result of moving the microphone during recordings.
Is there a way of altering the soundfile itself so that all of the files play at a similar volume.
Thanks
0 件のコメント
採用された回答
Steven Van Vaerenbergh
2016 年 10 月 5 日
You should normalize the sounds so they have the same overall power (per time step).
For example, normalize to power 1 (per sample):
x = audioread(filename);
x = x/sqrt(mean(x.^2));
When you play the normalized sounds through the sound(), each sound should appear to have a similar volume.
In order to avoid distortions you may normalize to a smaller power though, e.g.
x = x/sqrt(mean(x.^2))/10;
If you want something more sophisticated you may have a look at dynamic range compression, though this kind of technique will modify the waveform unrecoverably.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Using audio files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!