実現したいこと
プログラムの中で作成した2つの音を同時に2つのスピーカーから出力させたいです。
使用機材
現在、PCに2つのオーディオインターフェイスをUSBで接続しています。
それぞれのオーディオインターフェイスにはスピーカーを1つ接続している状態です。
使用ソースコード
次の2つのプログラムを使用しました。
1.デバイス番号の取得プログラム
2.音を同時に出力させるプログラム
python
1# 1.デバイス番号の取得プログラム 2import pyaudio 3import numpy as np 4 5p = pyaudio.PyAudio() 6 7print("--- デバイス番号 ---") 8 9for index in range(0, p.get_device_count()): 10 print(p.get_device_info_by_index(index))
上記のプログラムを実行して2つのオーディオインターフェイスのデバイス番号を取得できました。
取得結果、
・A:index=0
・B:index=1
なので出力先デバイス番号をoutput_device_index = 0
とoutput_device_index = 1
にしました。
python
1# 2.音を同時に出力させるプログラム 2import pyaudio 3import numpy as np 4 5p = pyaudio.PyAudio() 6 7stream1 = p.open(format=pyaudio.paFloat32, 8 channels=1, 9 rate=44100, 10 frames_per_buffer=1024, 11 output_device_index = 0, 12 output=True) 13 14stream2 = p.open(format=pyaudio.paFloat32, 15 channels=1, 16 rate=44100, 17 frames_per_buffer=1024, 18 output_device_index = 1, 19 output=True) 20 21sample1 = np.sin(np.arange(1000)/20) 22 23sample2 = np.sin(np.arange(1000)/60) 24 25print("Start") 26 27stream1.write(sample1.astype(np.float32).tostring()) 28stream2.write(sample2.astype(np.float32).tostring()) 29 30stream1.close() 31stream2.close()
上記を実行するとプログラムの処理通りstream1を再生してからstream2を再生します。
stream1とstream2を同時に再生するにはどのような方法がありますか。
アドバイスを下さると大変助かります。
よろしくお願い致します。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。