mirror of
https://github.com/python/cpython.git
synced 2024-11-25 02:44:06 +08:00
Fix by Jean-Claude Rimbault [ Bug #116271 ] -- the WAVE header was
never written properly because the '4' length indicators for the 's' format characters were missing.
This commit is contained in:
parent
ebe73025cd
commit
eca576c68b
@ -439,7 +439,7 @@ class Wave_write:
|
|||||||
self._nframes = initlength / (self._nchannels * self._sampwidth)
|
self._nframes = initlength / (self._nchannels * self._sampwidth)
|
||||||
self._datalength = self._nframes * self._nchannels * self._sampwidth
|
self._datalength = self._nframes * self._nchannels * self._sampwidth
|
||||||
self._form_length_pos = self._file.tell()
|
self._form_length_pos = self._file.tell()
|
||||||
self._file.write(struct.pack('<lsslhhllhhs',
|
self._file.write(struct.pack('<l4s4slhhllhh4s',
|
||||||
36 + self._datalength, 'WAVE', 'fmt ', 16,
|
36 + self._datalength, 'WAVE', 'fmt ', 16,
|
||||||
WAVE_FORMAT_PCM, self._nchannels, self._framerate,
|
WAVE_FORMAT_PCM, self._nchannels, self._framerate,
|
||||||
self._nchannels * self._framerate * self._sampwidth,
|
self._nchannels * self._framerate * self._sampwidth,
|
||||||
|
Loading…
Reference in New Issue
Block a user