質問編集履歴
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,9 +6,9 @@
|
|
6
6
|
|
7
7
|
# 使用機材
|
8
8
|
|
9
|
-
現在、PCに2つのオーディオインターフェイス
|
9
|
+
現在、PCに2つのオーディオインターフェイスをUSBで接続しています。
|
10
10
|
|
11
|
-
それぞれのオーディオインターフェイスには
|
11
|
+
それぞれのオーディオインターフェイスにはスピーカーを1つ接続している状態です。
|
12
12
|
|
13
13
|
|
14
14
|
|
@@ -36,7 +36,7 @@
|
|
36
36
|
|
37
37
|
|
38
38
|
|
39
|
-
print("---
|
39
|
+
print("--- デバイス番号 ---")
|
40
40
|
|
41
41
|
|
42
42
|
|
@@ -50,11 +50,11 @@
|
|
50
50
|
|
51
51
|
取得結果、
|
52
52
|
|
53
|
-
・
|
53
|
+
・A:index=0
|
54
54
|
|
55
|
-
・
|
55
|
+
・B:index=1
|
56
56
|
|
57
|
-
なので出力先デバイス番号を`output_device_index =
|
57
|
+
なので出力先デバイス番号を`output_device_index = 0`と`output_device_index = 1`にしました。
|
58
58
|
|
59
59
|
|
60
60
|
|
@@ -74,13 +74,13 @@
|
|
74
74
|
|
75
75
|
stream1 = p.open(format=pyaudio.paFloat32,
|
76
76
|
|
77
|
-
channels=
|
77
|
+
channels=1,
|
78
78
|
|
79
79
|
rate=44100,
|
80
80
|
|
81
81
|
frames_per_buffer=1024,
|
82
82
|
|
83
|
-
output_device_index =
|
83
|
+
output_device_index = 0,
|
84
84
|
|
85
85
|
output=True)
|
86
86
|
|
@@ -88,23 +88,23 @@
|
|
88
88
|
|
89
89
|
stream2 = p.open(format=pyaudio.paFloat32,
|
90
90
|
|
91
|
-
channels=
|
91
|
+
channels=1,
|
92
92
|
|
93
93
|
rate=44100,
|
94
94
|
|
95
95
|
frames_per_buffer=1024,
|
96
96
|
|
97
|
-
output_device_index =
|
97
|
+
output_device_index = 1,
|
98
98
|
|
99
99
|
output=True)
|
100
100
|
|
101
101
|
|
102
102
|
|
103
|
-
sample1 = np.sin(np.arange(
|
103
|
+
sample1 = np.sin(np.arange(1000)/20)
|
104
104
|
|
105
105
|
|
106
106
|
|
107
|
-
sample2 = np.sin(np.arange(
|
107
|
+
sample2 = np.sin(np.arange(1000)/60)
|
108
108
|
|
109
109
|
|
110
110
|
|