aifc.py 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921
  1. """Stuff to parse AIFF-C and AIFF files.
  2. Unless explicitly stated otherwise, the description below is true
  3. both for AIFF-C files and AIFF files.
  4. An AIFF-C file has the following structure.
  5. +-----------------+
  6. | FORM |
  7. +-----------------+
  8. | <size> |
  9. +----+------------+
  10. | | AIFC |
  11. | +------------+
  12. | | <chunks> |
  13. | | . |
  14. | | . |
  15. | | . |
  16. +----+------------+
  17. An AIFF file has the string "AIFF" instead of "AIFC".
  18. A chunk consists of an identifier (4 bytes) followed by a size (4 bytes,
  19. big endian order), followed by the data. The size field does not include
  20. the size of the 8 byte header.
  21. The following chunk types are recognized.
  22. FVER
  23. <version number of AIFF-C defining document> (AIFF-C only).
  24. MARK
  25. <# of markers> (2 bytes)
  26. list of markers:
  27. <marker ID> (2 bytes, must be > 0)
  28. <position> (4 bytes)
  29. <marker name> ("pstring")
  30. COMM
  31. <# of channels> (2 bytes)
  32. <# of sound frames> (4 bytes)
  33. <size of the samples> (2 bytes)
  34. <sampling frequency> (10 bytes, IEEE 80-bit extended
  35. floating point)
  36. in AIFF-C files only:
  37. <compression type> (4 bytes)
  38. <human-readable version of compression type> ("pstring")
  39. SSND
  40. <offset> (4 bytes, not used by this program)
  41. <blocksize> (4 bytes, not used by this program)
  42. <sound data>
  43. A pstring consists of 1 byte length, a string of characters, and 0 or 1
  44. byte pad to make the total length even.
  45. Usage.
  46. Reading AIFF files:
  47. f = aifc.open(file, 'r')
  48. where file is either the name of a file or an open file pointer.
  49. The open file pointer must have methods read(), seek(), and close().
  50. In some types of audio files, if the setpos() method is not used,
  51. the seek() method is not necessary.
  52. This returns an instance of a class with the following public methods:
  53. getnchannels() -- returns number of audio channels (1 for
  54. mono, 2 for stereo)
  55. getsampwidth() -- returns sample width in bytes
  56. getframerate() -- returns sampling frequency
  57. getnframes() -- returns number of audio frames
  58. getcomptype() -- returns compression type ('NONE' for AIFF files)
  59. getcompname() -- returns human-readable version of
  60. compression type ('not compressed' for AIFF files)
  61. getparams() -- returns a namedtuple consisting of all of the
  62. above in the above order
  63. getmarkers() -- get the list of marks in the audio file or None
  64. if there are no marks
  65. getmark(id) -- get mark with the specified id (raises an error
  66. if the mark does not exist)
  67. readframes(n) -- returns at most n frames of audio
  68. rewind() -- rewind to the beginning of the audio stream
  69. setpos(pos) -- seek to the specified position
  70. tell() -- return the current position
  71. close() -- close the instance (make it unusable)
  72. The position returned by tell(), the position given to setpos() and
  73. the position of marks are all compatible and have nothing to do with
  74. the actual position in the file.
  75. The close() method is called automatically when the class instance
  76. is destroyed.
  77. Writing AIFF files:
  78. f = aifc.open(file, 'w')
  79. where file is either the name of a file or an open file pointer.
  80. The open file pointer must have methods write(), tell(), seek(), and
  81. close().
  82. This returns an instance of a class with the following public methods:
  83. aiff() -- create an AIFF file (AIFF-C default)
  84. aifc() -- create an AIFF-C file
  85. setnchannels(n) -- set the number of channels
  86. setsampwidth(n) -- set the sample width
  87. setframerate(n) -- set the frame rate
  88. setnframes(n) -- set the number of frames
  89. setcomptype(type, name)
  90. -- set the compression type and the
  91. human-readable compression type
  92. setparams(tuple)
  93. -- set all parameters at once
  94. setmark(id, pos, name)
  95. -- add specified mark to the list of marks
  96. tell() -- return current position in output file (useful
  97. in combination with setmark())
  98. writeframesraw(data)
  99. -- write audio frames without pathing up the
  100. file header
  101. writeframes(data)
  102. -- write audio frames and patch up the file header
  103. close() -- patch up the file header and close the
  104. output file
  105. You should set the parameters before the first writeframesraw or
  106. writeframes. The total number of frames does not need to be set,
  107. but when it is set to the correct value, the header does not have to
  108. be patched up.
  109. It is best to first set all parameters, perhaps possibly the
  110. compression type, and then write audio frames using writeframesraw.
  111. When all frames have been written, either call writeframes(b'') or
  112. close() to patch up the sizes in the header.
  113. Marks can be added anytime. If there are any marks, you must call
  114. close() after all frames have been written.
  115. The close() method is called automatically when the class instance
  116. is destroyed.
  117. When a file is opened with the extension '.aiff', an AIFF file is
  118. written, otherwise an AIFF-C file is written. This default can be
  119. changed by calling aiff() or aifc() before the first writeframes or
  120. writeframesraw.
  121. """
  122. import struct
  123. import builtins
  124. import warnings
  125. __all__ = ["Error", "open", "openfp"]
  126. class Error(Exception):
  127. pass
  128. _AIFC_version = 0xA2805140 # Version 1 of AIFF-C
  129. def _read_long(file):
  130. try:
  131. return struct.unpack('>l', file.read(4))[0]
  132. except struct.error:
  133. raise EOFError
  134. def _read_ulong(file):
  135. try:
  136. return struct.unpack('>L', file.read(4))[0]
  137. except struct.error:
  138. raise EOFError
  139. def _read_short(file):
  140. try:
  141. return struct.unpack('>h', file.read(2))[0]
  142. except struct.error:
  143. raise EOFError
  144. def _read_ushort(file):
  145. try:
  146. return struct.unpack('>H', file.read(2))[0]
  147. except struct.error:
  148. raise EOFError
  149. def _read_string(file):
  150. length = ord(file.read(1))
  151. if length == 0:
  152. data = b''
  153. else:
  154. data = file.read(length)
  155. if length & 1 == 0:
  156. dummy = file.read(1)
  157. return data
  158. _HUGE_VAL = 1.79769313486231e+308 # See <limits.h>
  159. def _read_float(f): # 10 bytes
  160. expon = _read_short(f) # 2 bytes
  161. sign = 1
  162. if expon < 0:
  163. sign = -1
  164. expon = expon + 0x8000
  165. himant = _read_ulong(f) # 4 bytes
  166. lomant = _read_ulong(f) # 4 bytes
  167. if expon == himant == lomant == 0:
  168. f = 0.0
  169. elif expon == 0x7FFF:
  170. f = _HUGE_VAL
  171. else:
  172. expon = expon - 16383
  173. f = (himant * 0x100000000 + lomant) * pow(2.0, expon - 63)
  174. return sign * f
  175. def _write_short(f, x):
  176. f.write(struct.pack('>h', x))
  177. def _write_ushort(f, x):
  178. f.write(struct.pack('>H', x))
  179. def _write_long(f, x):
  180. f.write(struct.pack('>l', x))
  181. def _write_ulong(f, x):
  182. f.write(struct.pack('>L', x))
  183. def _write_string(f, s):
  184. if len(s) > 255:
  185. raise ValueError("string exceeds maximum pstring length")
  186. f.write(struct.pack('B', len(s)))
  187. f.write(s)
  188. if len(s) & 1 == 0:
  189. f.write(b'\x00')
  190. def _write_float(f, x):
  191. import math
  192. if x < 0:
  193. sign = 0x8000
  194. x = x * -1
  195. else:
  196. sign = 0
  197. if x == 0:
  198. expon = 0
  199. himant = 0
  200. lomant = 0
  201. else:
  202. fmant, expon = math.frexp(x)
  203. if expon > 16384 or fmant >= 1 or fmant != fmant: # Infinity or NaN
  204. expon = sign|0x7FFF
  205. himant = 0
  206. lomant = 0
  207. else: # Finite
  208. expon = expon + 16382
  209. if expon < 0: # denormalized
  210. fmant = math.ldexp(fmant, expon)
  211. expon = 0
  212. expon = expon | sign
  213. fmant = math.ldexp(fmant, 32)
  214. fsmant = math.floor(fmant)
  215. himant = int(fsmant)
  216. fmant = math.ldexp(fmant - fsmant, 32)
  217. fsmant = math.floor(fmant)
  218. lomant = int(fsmant)
  219. _write_ushort(f, expon)
  220. _write_ulong(f, himant)
  221. _write_ulong(f, lomant)
  222. from chunk import Chunk
  223. from collections import namedtuple
  224. _aifc_params = namedtuple('_aifc_params',
  225. 'nchannels sampwidth framerate nframes comptype compname')
  226. class Aifc_read:
  227. # Variables used in this class:
  228. #
  229. # These variables are available to the user though appropriate
  230. # methods of this class:
  231. # _file -- the open file with methods read(), close(), and seek()
  232. # set through the __init__() method
  233. # _nchannels -- the number of audio channels
  234. # available through the getnchannels() method
  235. # _nframes -- the number of audio frames
  236. # available through the getnframes() method
  237. # _sampwidth -- the number of bytes per audio sample
  238. # available through the getsampwidth() method
  239. # _framerate -- the sampling frequency
  240. # available through the getframerate() method
  241. # _comptype -- the AIFF-C compression type ('NONE' if AIFF)
  242. # available through the getcomptype() method
  243. # _compname -- the human-readable AIFF-C compression type
  244. # available through the getcomptype() method
  245. # _markers -- the marks in the audio file
  246. # available through the getmarkers() and getmark()
  247. # methods
  248. # _soundpos -- the position in the audio stream
  249. # available through the tell() method, set through the
  250. # setpos() method
  251. #
  252. # These variables are used internally only:
  253. # _version -- the AIFF-C version number
  254. # _decomp -- the decompressor from builtin module cl
  255. # _comm_chunk_read -- 1 iff the COMM chunk has been read
  256. # _aifc -- 1 iff reading an AIFF-C file
  257. # _ssnd_seek_needed -- 1 iff positioned correctly in audio
  258. # file for readframes()
  259. # _ssnd_chunk -- instantiation of a chunk class for the SSND chunk
  260. # _framesize -- size of one frame in the file
  261. def initfp(self, file):
  262. self._version = 0
  263. self._convert = None
  264. self._markers = []
  265. self._soundpos = 0
  266. self._file = file
  267. chunk = Chunk(file)
  268. if chunk.getname() != b'FORM':
  269. raise Error('file does not start with FORM id')
  270. formdata = chunk.read(4)
  271. if formdata == b'AIFF':
  272. self._aifc = 0
  273. elif formdata == b'AIFC':
  274. self._aifc = 1
  275. else:
  276. raise Error('not an AIFF or AIFF-C file')
  277. self._comm_chunk_read = 0
  278. while 1:
  279. self._ssnd_seek_needed = 1
  280. try:
  281. chunk = Chunk(self._file)
  282. except EOFError:
  283. break
  284. chunkname = chunk.getname()
  285. if chunkname == b'COMM':
  286. self._read_comm_chunk(chunk)
  287. self._comm_chunk_read = 1
  288. elif chunkname == b'SSND':
  289. self._ssnd_chunk = chunk
  290. dummy = chunk.read(8)
  291. self._ssnd_seek_needed = 0
  292. elif chunkname == b'FVER':
  293. self._version = _read_ulong(chunk)
  294. elif chunkname == b'MARK':
  295. self._readmark(chunk)
  296. chunk.skip()
  297. if not self._comm_chunk_read or not self._ssnd_chunk:
  298. raise Error('COMM chunk and/or SSND chunk missing')
  299. def __init__(self, f):
  300. if isinstance(f, str):
  301. f = builtins.open(f, 'rb')
  302. # else, assume it is an open file object already
  303. self.initfp(f)
  304. def __enter__(self):
  305. return self
  306. def __exit__(self, *args):
  307. self.close()
  308. #
  309. # User visible methods.
  310. #
  311. def getfp(self):
  312. return self._file
  313. def rewind(self):
  314. self._ssnd_seek_needed = 1
  315. self._soundpos = 0
  316. def close(self):
  317. file = self._file
  318. if file is not None:
  319. self._file = None
  320. file.close()
  321. def tell(self):
  322. return self._soundpos
  323. def getnchannels(self):
  324. return self._nchannels
  325. def getnframes(self):
  326. return self._nframes
  327. def getsampwidth(self):
  328. return self._sampwidth
  329. def getframerate(self):
  330. return self._framerate
  331. def getcomptype(self):
  332. return self._comptype
  333. def getcompname(self):
  334. return self._compname
  335. ## def getversion(self):
  336. ## return self._version
  337. def getparams(self):
  338. return _aifc_params(self.getnchannels(), self.getsampwidth(),
  339. self.getframerate(), self.getnframes(),
  340. self.getcomptype(), self.getcompname())
  341. def getmarkers(self):
  342. if len(self._markers) == 0:
  343. return None
  344. return self._markers
  345. def getmark(self, id):
  346. for marker in self._markers:
  347. if id == marker[0]:
  348. return marker
  349. raise Error('marker {0!r} does not exist'.format(id))
  350. def setpos(self, pos):
  351. if pos < 0 or pos > self._nframes:
  352. raise Error('position not in range')
  353. self._soundpos = pos
  354. self._ssnd_seek_needed = 1
  355. def readframes(self, nframes):
  356. if self._ssnd_seek_needed:
  357. self._ssnd_chunk.seek(0)
  358. dummy = self._ssnd_chunk.read(8)
  359. pos = self._soundpos * self._framesize
  360. if pos:
  361. self._ssnd_chunk.seek(pos + 8)
  362. self._ssnd_seek_needed = 0
  363. if nframes == 0:
  364. return b''
  365. data = self._ssnd_chunk.read(nframes * self._framesize)
  366. if self._convert and data:
  367. data = self._convert(data)
  368. self._soundpos = self._soundpos + len(data) // (self._nchannels
  369. * self._sampwidth)
  370. return data
  371. #
  372. # Internal methods.
  373. #
  374. def _alaw2lin(self, data):
  375. import audioop
  376. return audioop.alaw2lin(data, 2)
  377. def _ulaw2lin(self, data):
  378. import audioop
  379. return audioop.ulaw2lin(data, 2)
  380. def _adpcm2lin(self, data):
  381. import audioop
  382. if not hasattr(self, '_adpcmstate'):
  383. # first time
  384. self._adpcmstate = None
  385. data, self._adpcmstate = audioop.adpcm2lin(data, 2, self._adpcmstate)
  386. return data
  387. def _read_comm_chunk(self, chunk):
  388. self._nchannels = _read_short(chunk)
  389. self._nframes = _read_long(chunk)
  390. self._sampwidth = (_read_short(chunk) + 7) // 8
  391. self._framerate = int(_read_float(chunk))
  392. self._framesize = self._nchannels * self._sampwidth
  393. if self._aifc:
  394. #DEBUG: SGI's soundeditor produces a bad size :-(
  395. kludge = 0
  396. if chunk.chunksize == 18:
  397. kludge = 1
  398. warnings.warn('Warning: bad COMM chunk size')
  399. chunk.chunksize = 23
  400. #DEBUG end
  401. self._comptype = chunk.read(4)
  402. #DEBUG start
  403. if kludge:
  404. length = ord(chunk.file.read(1))
  405. if length & 1 == 0:
  406. length = length + 1
  407. chunk.chunksize = chunk.chunksize + length
  408. chunk.file.seek(-1, 1)
  409. #DEBUG end
  410. self._compname = _read_string(chunk)
  411. if self._comptype != b'NONE':
  412. if self._comptype == b'G722':
  413. self._convert = self._adpcm2lin
  414. elif self._comptype in (b'ulaw', b'ULAW'):
  415. self._convert = self._ulaw2lin
  416. elif self._comptype in (b'alaw', b'ALAW'):
  417. self._convert = self._alaw2lin
  418. else:
  419. raise Error('unsupported compression type')
  420. self._sampwidth = 2
  421. else:
  422. self._comptype = b'NONE'
  423. self._compname = b'not compressed'
  424. def _readmark(self, chunk):
  425. nmarkers = _read_short(chunk)
  426. # Some files appear to contain invalid counts.
  427. # Cope with this by testing for EOF.
  428. try:
  429. for i in range(nmarkers):
  430. id = _read_short(chunk)
  431. pos = _read_long(chunk)
  432. name = _read_string(chunk)
  433. if pos or name:
  434. # some files appear to have
  435. # dummy markers consisting of
  436. # a position 0 and name ''
  437. self._markers.append((id, pos, name))
  438. except EOFError:
  439. w = ('Warning: MARK chunk contains only %s marker%s instead of %s' %
  440. (len(self._markers), '' if len(self._markers) == 1 else 's',
  441. nmarkers))
  442. warnings.warn(w)
  443. class Aifc_write:
  444. # Variables used in this class:
  445. #
  446. # These variables are user settable through appropriate methods
  447. # of this class:
  448. # _file -- the open file with methods write(), close(), tell(), seek()
  449. # set through the __init__() method
  450. # _comptype -- the AIFF-C compression type ('NONE' in AIFF)
  451. # set through the setcomptype() or setparams() method
  452. # _compname -- the human-readable AIFF-C compression type
  453. # set through the setcomptype() or setparams() method
  454. # _nchannels -- the number of audio channels
  455. # set through the setnchannels() or setparams() method
  456. # _sampwidth -- the number of bytes per audio sample
  457. # set through the setsampwidth() or setparams() method
  458. # _framerate -- the sampling frequency
  459. # set through the setframerate() or setparams() method
  460. # _nframes -- the number of audio frames written to the header
  461. # set through the setnframes() or setparams() method
  462. # _aifc -- whether we're writing an AIFF-C file or an AIFF file
  463. # set through the aifc() method, reset through the
  464. # aiff() method
  465. #
  466. # These variables are used internally only:
  467. # _version -- the AIFF-C version number
  468. # _comp -- the compressor from builtin module cl
  469. # _nframeswritten -- the number of audio frames actually written
  470. # _datalength -- the size of the audio samples written to the header
  471. # _datawritten -- the size of the audio samples actually written
  472. def __init__(self, f):
  473. if isinstance(f, str):
  474. filename = f
  475. f = builtins.open(f, 'wb')
  476. else:
  477. # else, assume it is an open file object already
  478. filename = '???'
  479. self.initfp(f)
  480. if filename[-5:] == '.aiff':
  481. self._aifc = 0
  482. else:
  483. self._aifc = 1
  484. def initfp(self, file):
  485. self._file = file
  486. self._version = _AIFC_version
  487. self._comptype = b'NONE'
  488. self._compname = b'not compressed'
  489. self._convert = None
  490. self._nchannels = 0
  491. self._sampwidth = 0
  492. self._framerate = 0
  493. self._nframes = 0
  494. self._nframeswritten = 0
  495. self._datawritten = 0
  496. self._datalength = 0
  497. self._markers = []
  498. self._marklength = 0
  499. self._aifc = 1 # AIFF-C is default
  500. def __del__(self):
  501. self.close()
  502. def __enter__(self):
  503. return self
  504. def __exit__(self, *args):
  505. self.close()
  506. #
  507. # User visible methods.
  508. #
  509. def aiff(self):
  510. if self._nframeswritten:
  511. raise Error('cannot change parameters after starting to write')
  512. self._aifc = 0
  513. def aifc(self):
  514. if self._nframeswritten:
  515. raise Error('cannot change parameters after starting to write')
  516. self._aifc = 1
  517. def setnchannels(self, nchannels):
  518. if self._nframeswritten:
  519. raise Error('cannot change parameters after starting to write')
  520. if nchannels < 1:
  521. raise Error('bad # of channels')
  522. self._nchannels = nchannels
  523. def getnchannels(self):
  524. if not self._nchannels:
  525. raise Error('number of channels not set')
  526. return self._nchannels
  527. def setsampwidth(self, sampwidth):
  528. if self._nframeswritten:
  529. raise Error('cannot change parameters after starting to write')
  530. if sampwidth < 1 or sampwidth > 4:
  531. raise Error('bad sample width')
  532. self._sampwidth = sampwidth
  533. def getsampwidth(self):
  534. if not self._sampwidth:
  535. raise Error('sample width not set')
  536. return self._sampwidth
  537. def setframerate(self, framerate):
  538. if self._nframeswritten:
  539. raise Error('cannot change parameters after starting to write')
  540. if framerate <= 0:
  541. raise Error('bad frame rate')
  542. self._framerate = framerate
  543. def getframerate(self):
  544. if not self._framerate:
  545. raise Error('frame rate not set')
  546. return self._framerate
  547. def setnframes(self, nframes):
  548. if self._nframeswritten:
  549. raise Error('cannot change parameters after starting to write')
  550. self._nframes = nframes
  551. def getnframes(self):
  552. return self._nframeswritten
  553. def setcomptype(self, comptype, compname):
  554. if self._nframeswritten:
  555. raise Error('cannot change parameters after starting to write')
  556. if comptype not in (b'NONE', b'ulaw', b'ULAW',
  557. b'alaw', b'ALAW', b'G722'):
  558. raise Error('unsupported compression type')
  559. self._comptype = comptype
  560. self._compname = compname
  561. def getcomptype(self):
  562. return self._comptype
  563. def getcompname(self):
  564. return self._compname
  565. ## def setversion(self, version):
  566. ## if self._nframeswritten:
  567. ## raise Error, 'cannot change parameters after starting to write'
  568. ## self._version = version
  569. def setparams(self, params):
  570. nchannels, sampwidth, framerate, nframes, comptype, compname = params
  571. if self._nframeswritten:
  572. raise Error('cannot change parameters after starting to write')
  573. if comptype not in (b'NONE', b'ulaw', b'ULAW',
  574. b'alaw', b'ALAW', b'G722'):
  575. raise Error('unsupported compression type')
  576. self.setnchannels(nchannels)
  577. self.setsampwidth(sampwidth)
  578. self.setframerate(framerate)
  579. self.setnframes(nframes)
  580. self.setcomptype(comptype, compname)
  581. def getparams(self):
  582. if not self._nchannels or not self._sampwidth or not self._framerate:
  583. raise Error('not all parameters set')
  584. return _aifc_params(self._nchannels, self._sampwidth, self._framerate,
  585. self._nframes, self._comptype, self._compname)
  586. def setmark(self, id, pos, name):
  587. if id <= 0:
  588. raise Error('marker ID must be > 0')
  589. if pos < 0:
  590. raise Error('marker position must be >= 0')
  591. if not isinstance(name, bytes):
  592. raise Error('marker name must be bytes')
  593. for i in range(len(self._markers)):
  594. if id == self._markers[i][0]:
  595. self._markers[i] = id, pos, name
  596. return
  597. self._markers.append((id, pos, name))
  598. def getmark(self, id):
  599. for marker in self._markers:
  600. if id == marker[0]:
  601. return marker
  602. raise Error('marker {0!r} does not exist'.format(id))
  603. def getmarkers(self):
  604. if len(self._markers) == 0:
  605. return None
  606. return self._markers
  607. def tell(self):
  608. return self._nframeswritten
  609. def writeframesraw(self, data):
  610. if not isinstance(data, (bytes, bytearray)):
  611. data = memoryview(data).cast('B')
  612. self._ensure_header_written(len(data))
  613. nframes = len(data) // (self._sampwidth * self._nchannels)
  614. if self._convert:
  615. data = self._convert(data)
  616. self._file.write(data)
  617. self._nframeswritten = self._nframeswritten + nframes
  618. self._datawritten = self._datawritten + len(data)
  619. def writeframes(self, data):
  620. self.writeframesraw(data)
  621. if self._nframeswritten != self._nframes or \
  622. self._datalength != self._datawritten:
  623. self._patchheader()
  624. def close(self):
  625. if self._file is None:
  626. return
  627. try:
  628. self._ensure_header_written(0)
  629. if self._datawritten & 1:
  630. # quick pad to even size
  631. self._file.write(b'\x00')
  632. self._datawritten = self._datawritten + 1
  633. self._writemarkers()
  634. if self._nframeswritten != self._nframes or \
  635. self._datalength != self._datawritten or \
  636. self._marklength:
  637. self._patchheader()
  638. finally:
  639. # Prevent ref cycles
  640. self._convert = None
  641. f = self._file
  642. self._file = None
  643. f.close()
  644. #
  645. # Internal methods.
  646. #
  647. def _lin2alaw(self, data):
  648. import audioop
  649. return audioop.lin2alaw(data, 2)
  650. def _lin2ulaw(self, data):
  651. import audioop
  652. return audioop.lin2ulaw(data, 2)
  653. def _lin2adpcm(self, data):
  654. import audioop
  655. if not hasattr(self, '_adpcmstate'):
  656. self._adpcmstate = None
  657. data, self._adpcmstate = audioop.lin2adpcm(data, 2, self._adpcmstate)
  658. return data
  659. def _ensure_header_written(self, datasize):
  660. if not self._nframeswritten:
  661. if self._comptype in (b'ULAW', b'ulaw', b'ALAW', b'alaw', b'G722'):
  662. if not self._sampwidth:
  663. self._sampwidth = 2
  664. if self._sampwidth != 2:
  665. raise Error('sample width must be 2 when compressing '
  666. 'with ulaw/ULAW, alaw/ALAW or G7.22 (ADPCM)')
  667. if not self._nchannels:
  668. raise Error('# channels not specified')
  669. if not self._sampwidth:
  670. raise Error('sample width not specified')
  671. if not self._framerate:
  672. raise Error('sampling rate not specified')
  673. self._write_header(datasize)
  674. def _init_compression(self):
  675. if self._comptype == b'G722':
  676. self._convert = self._lin2adpcm
  677. elif self._comptype in (b'ulaw', b'ULAW'):
  678. self._convert = self._lin2ulaw
  679. elif self._comptype in (b'alaw', b'ALAW'):
  680. self._convert = self._lin2alaw
  681. def _write_header(self, initlength):
  682. if self._aifc and self._comptype != b'NONE':
  683. self._init_compression()
  684. self._file.write(b'FORM')
  685. if not self._nframes:
  686. self._nframes = initlength // (self._nchannels * self._sampwidth)
  687. self._datalength = self._nframes * self._nchannels * self._sampwidth
  688. if self._datalength & 1:
  689. self._datalength = self._datalength + 1
  690. if self._aifc:
  691. if self._comptype in (b'ulaw', b'ULAW', b'alaw', b'ALAW'):
  692. self._datalength = self._datalength // 2
  693. if self._datalength & 1:
  694. self._datalength = self._datalength + 1
  695. elif self._comptype == b'G722':
  696. self._datalength = (self._datalength + 3) // 4
  697. if self._datalength & 1:
  698. self._datalength = self._datalength + 1
  699. try:
  700. self._form_length_pos = self._file.tell()
  701. except (AttributeError, OSError):
  702. self._form_length_pos = None
  703. commlength = self._write_form_length(self._datalength)
  704. if self._aifc:
  705. self._file.write(b'AIFC')
  706. self._file.write(b'FVER')
  707. _write_ulong(self._file, 4)
  708. _write_ulong(self._file, self._version)
  709. else:
  710. self._file.write(b'AIFF')
  711. self._file.write(b'COMM')
  712. _write_ulong(self._file, commlength)
  713. _write_short(self._file, self._nchannels)
  714. if self._form_length_pos is not None:
  715. self._nframes_pos = self._file.tell()
  716. _write_ulong(self._file, self._nframes)
  717. if self._comptype in (b'ULAW', b'ulaw', b'ALAW', b'alaw', b'G722'):
  718. _write_short(self._file, 8)
  719. else:
  720. _write_short(self._file, self._sampwidth * 8)
  721. _write_float(self._file, self._framerate)
  722. if self._aifc:
  723. self._file.write(self._comptype)
  724. _write_string(self._file, self._compname)
  725. self._file.write(b'SSND')
  726. if self._form_length_pos is not None:
  727. self._ssnd_length_pos = self._file.tell()
  728. _write_ulong(self._file, self._datalength + 8)
  729. _write_ulong(self._file, 0)
  730. _write_ulong(self._file, 0)
  731. def _write_form_length(self, datalength):
  732. if self._aifc:
  733. commlength = 18 + 5 + len(self._compname)
  734. if commlength & 1:
  735. commlength = commlength + 1
  736. verslength = 12
  737. else:
  738. commlength = 18
  739. verslength = 0
  740. _write_ulong(self._file, 4 + verslength + self._marklength + \
  741. 8 + commlength + 16 + datalength)
  742. return commlength
  743. def _patchheader(self):
  744. curpos = self._file.tell()
  745. if self._datawritten & 1:
  746. datalength = self._datawritten + 1
  747. self._file.write(b'\x00')
  748. else:
  749. datalength = self._datawritten
  750. if datalength == self._datalength and \
  751. self._nframes == self._nframeswritten and \
  752. self._marklength == 0:
  753. self._file.seek(curpos, 0)
  754. return
  755. self._file.seek(self._form_length_pos, 0)
  756. dummy = self._write_form_length(datalength)
  757. self._file.seek(self._nframes_pos, 0)
  758. _write_ulong(self._file, self._nframeswritten)
  759. self._file.seek(self._ssnd_length_pos, 0)
  760. _write_ulong(self._file, datalength + 8)
  761. self._file.seek(curpos, 0)
  762. self._nframes = self._nframeswritten
  763. self._datalength = datalength
  764. def _writemarkers(self):
  765. if len(self._markers) == 0:
  766. return
  767. self._file.write(b'MARK')
  768. length = 2
  769. for marker in self._markers:
  770. id, pos, name = marker
  771. length = length + len(name) + 1 + 6
  772. if len(name) & 1 == 0:
  773. length = length + 1
  774. _write_ulong(self._file, length)
  775. self._marklength = length + 8
  776. _write_short(self._file, len(self._markers))
  777. for marker in self._markers:
  778. id, pos, name = marker
  779. _write_short(self._file, id)
  780. _write_ulong(self._file, pos)
  781. _write_string(self._file, name)
  782. def open(f, mode=None):
  783. if mode is None:
  784. if hasattr(f, 'mode'):
  785. mode = f.mode
  786. else:
  787. mode = 'rb'
  788. if mode in ('r', 'rb'):
  789. return Aifc_read(f)
  790. elif mode in ('w', 'wb'):
  791. return Aifc_write(f)
  792. else:
  793. raise Error("mode must be 'r', 'rb', 'w', or 'wb'")
  794. openfp = open # B/W compatibility
  795. if __name__ == '__main__':
  796. import sys
  797. if not sys.argv[1:]:
  798. sys.argv.append('/usr/demos/data/audio/bach.aiff')
  799. fn = sys.argv[1]
  800. with open(fn, 'r') as f:
  801. print("Reading", fn)
  802. print("nchannels =", f.getnchannels())
  803. print("nframes =", f.getnframes())
  804. print("sampwidth =", f.getsampwidth())
  805. print("framerate =", f.getframerate())
  806. print("comptype =", f.getcomptype())
  807. print("compname =", f.getcompname())
  808. if sys.argv[2:]:
  809. gn = sys.argv[2]
  810. print("Writing", gn)
  811. with open(gn, 'w') as g:
  812. g.setparams(f.getparams())
  813. while 1:
  814. data = f.readframes(1024)
  815. if not data:
  816. break
  817. g.writeframes(data)
  818. print("Done.")