web-dev-qa-db-ja.com

周囲の音に合わせて音量を自動調整するにはどうすればよいですか?

私は大きな道路の隣に住んでいます。夜に窓を開けておくのは、幸いにも涼しく、断続的に非常に騒々しいです。内蔵マイク入力に基づいて、音量を自動的に調整するにはどうすればよいですか?車の通行中に映画のスピーチが聞こえるように音量を設定すると、それ以外のときは音量が大きくなり、近くの人(外や近所の人)に非常に不快に感じます。

私のシステムはDebianBusterですが、おそらく一般的なソリューションを機能させることができます。これを行うパッケージがない場合、デフォルトのマイクからラウドネスを抽出するコマンドは、これをスクリプト化するのにすでに役立ちます。

8
Luc

私は仕事をするためにPythonスクリプトを作成しました。残りの問題は、私のラップトップのマイクがもちろん独自のスピーカーも拾うことです。「エコーキャンセレーション」が何であるかと思います。私は探していますが、それを自分で実装する方法がわかりません。ただし、外部マイクを使用すると機能する場合があります。

python 2のため、python-alsaaudio依存関係、残念ながら。

#!/usr/bin/env python

''' For noise cancellation:
$ pactl load-module module-echo-cancel
$ Pulse_PROP="filter.want=echo-cancel" ./this-script.py
'''

''' SETTINGS (you might want to keep presets for music and speech) '''
smoothing = 15 # Over how many samples should we compute?
step_size = 1 # maximum volume adjustment in percent points
# scale_xxx = (n, level) # At mic level n, scale to level% audio volume
scale_min = (4, 39)
scale_max = (19, 53)

''' CREDITS
https://stackoverflow.com/a/1937058
How get sound input from microphone in python, and process it on the fly?
Answer by jbochi

https://stackoverflow.com/a/10739764
How to programmatically change volume in Ubuntu
Answer by mata
'''

import alsaaudio, audioop, sys, os

bucket = [None for i in range(smoothing)]

inp = alsaaudio.PCM(alsaaudio.PCM_CAPTURE)

inp.setchannels(1)
inp.setrate(8000)
inp.setformat(alsaaudio.PCM_FORMAT_S16_LE)

inp.setperiodsize(200)

print('Setting volume to minimum ({}%)'.format(scale_min[1]))
os.system('pactl set-sink-volume 0 {}%'.format(scale_min[1]))

i = 1
last_volume = scale_min[1]
while True:
    l, data = inp.read()
    if l:
        val = audioop.max(data, 2)
        bucket[i % smoothing] = val

        if i % smoothing == 0:
            m = min(bucket)
            miclvl = float(m) / 50.0

            if miclvl < scale_min[0]:
                scale = scale_min[1]
            Elif miclvl > scale_max[0]:
                scale = scale_max[1]
            else:
                miclvl_range = scale_max[0] - scale_min[0]
                level_range = scale_max[1] - scale_min[1]
                scale = (miclvl - scale_min[0]) / miclvl_range * level_range + scale_min[1]

            scale = int(round(scale))
            step = max(min(scale - last_volume, step_size), -step_size)

            if step != 0:
                last_volume += step
                step = '+' + str(step) if step > 0 else str(step)
                os.system('pactl set-sink-volume 0 {}%'.format(step))

            miclvl = round(miclvl, 1)
            miclvlpacing = ' ' * (4 - len(str(miclvl)))
            stepspacing = ' ' * (2 - len(str(step)))
            sys.stdout.write('mic lvl {}{}  ideal scale {}%  adjust {}{}  now {}  '.format(
                miclvl, miclvlpacing, str(scale), step, stepspacing, last_volume))
            print(int(round(last_volume - scale_min[1])) * 'x')

        i += 1
2
Luc