回答編集履歴
1
コメントへの回答
test
CHANGED
@@ -39,3 +39,61 @@
|
|
39
39
|
|
40
40
|
|
41
41
|
print(wavefile)の結果を載せてもらえれば、もう少しアドバイスできるかもしれません。
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
(<module 'wave' from ' /usr/bin/lib/python3.7/wave.py'>,<_io.BufferedWriter name='test.wav'>)なのですか。確かにtupleですね。
|
46
|
+
|
47
|
+
以下を実行してその結果を教えてください。
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
```python
|
52
|
+
|
53
|
+
import wave
|
54
|
+
|
55
|
+
print(wave.__doc__)
|
56
|
+
|
57
|
+
```
|
58
|
+
|
59
|
+
Windowsで実行すると以下のように始まる71行のテキストが表示されます。
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
```python
|
64
|
+
|
65
|
+
>>> print(wave.__doc__)
|
66
|
+
|
67
|
+
Stuff to parse WAVE files.
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
Usage.
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
Reading WAVE files:
|
76
|
+
|
77
|
+
f = wave.open(file, 'r')
|
78
|
+
|
79
|
+
where file is either the name of a file or an open file pointer.
|
80
|
+
|
81
|
+
The open file pointer must have methods read(), seek(), and close().
|
82
|
+
|
83
|
+
When the setpos() and rewind() methods are not used, the seek()
|
84
|
+
|
85
|
+
method is not necessary.
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
This returns an instance of a class with the following public methods:
|
90
|
+
|
91
|
+
getnchannels() -- returns number of audio channels (1 for
|
92
|
+
|
93
|
+
mono, 2 for stereo)
|
94
|
+
|
95
|
+
getsampwidth() -- returns sample width in bytes
|
96
|
+
|
97
|
+
```
|
98
|
+
|
99
|
+
これが表示されないようだと、' /usr/bin/lib/python3.7/wave.py'が正しくないと言うことになります。
|