a DOg] @sbdZddlZddlZddlZddgZGdddeZdZddZd d Z d d Z d dZ ddZ dZ ddZddZddZddZddZddZddZdd lmZdd!lmZed"d#Zd$ej_d%ej_d&ej_d'ej_d(ej_d)ej_Gd*d+d+Z Gd,d-d-Z!d?d.dZ"e#d/kr^ddl$Z$e$j%d0dsBe$j%&d1e$j%d0Z'e"e'd2Z(e)d3e'e)d4e(*e)d5e(+e)d6e(,e)d7e(-e)d8e(.e)d9e(/e$j%d:dr>e$j%d:Z0e)d;e0e"e0d<@Z1e12e(3e(4d=Z5e5sqe16e5qWdn1s,0Ye)d>Wdn1sT0YdS)@aJStuff to parse AIFF-C and AIFF files. Unless explicitly stated otherwise, the description below is true both for AIFF-C files and AIFF files. An AIFF-C file has the following structure. +-----------------+ | FORM | +-----------------+ | | +----+------------+ | | AIFC | | +------------+ | | | | | . | | | . | | | . | +----+------------+ An AIFF file has the string "AIFF" instead of "AIFC". A chunk consists of an identifier (4 bytes) followed by a size (4 bytes, big endian order), followed by the data. The size field does not include the size of the 8 byte header. The following chunk types are recognized. FVER (AIFF-C only). MARK <# of markers> (2 bytes) list of markers: (2 bytes, must be > 0) (4 bytes) ("pstring") COMM <# of channels> (2 bytes) <# of sound frames> (4 bytes) (2 bytes) (10 bytes, IEEE 80-bit extended floating point) in AIFF-C files only: (4 bytes) ("pstring") SSND (4 bytes, not used by this program) (4 bytes, not used by this program) A pstring consists of 1 byte length, a string of characters, and 0 or 1 byte pad to make the total length even. Usage. Reading AIFF files: f = aifc.open(file, 'r') where file is either the name of a file or an open file pointer. The open file pointer must have methods read(), seek(), and close(). In some types of audio files, if the setpos() method is not used, the seek() method is not necessary. This returns an instance of a class with the following public methods: getnchannels() -- returns number of audio channels (1 for mono, 2 for stereo) getsampwidth() -- returns sample width in bytes getframerate() -- returns sampling frequency getnframes() -- returns number of audio frames getcomptype() -- returns compression type ('NONE' for AIFF files) getcompname() -- returns human-readable version of compression type ('not compressed' for AIFF files) getparams() -- returns a namedtuple consisting of all of the above in the above order getmarkers() -- get the list of marks in the audio file or None if there are no marks getmark(id) -- get mark with the specified id (raises an error if the mark does not exist) readframes(n) -- returns at most n frames of audio rewind() -- rewind to the beginning of the audio stream setpos(pos) -- seek to the specified position tell() -- return the current position close() -- close the instance (make it unusable) The position returned by tell(), the position given to setpos() and the position of marks are all compatible and have nothing to do with the actual position in the file. The close() method is called automatically when the class instance is destroyed. Writing AIFF files: f = aifc.open(file, 'w') where file is either the name of a file or an open file pointer. The open file pointer must have methods write(), tell(), seek(), and close(). This returns an instance of a class with the following public methods: aiff() -- create an AIFF file (AIFF-C default) aifc() -- create an AIFF-C file setnchannels(n) -- set the number of channels setsampwidth(n) -- set the sample width setframerate(n) -- set the frame rate setnframes(n) -- set the number of frames setcomptype(type, name) -- set the compression type and the human-readable compression type setparams(tuple) -- set all parameters at once setmark(id, pos, name) -- add specified mark to the list of marks tell() -- return current position in output file (useful in combination with setmark()) writeframesraw(data) -- write audio frames without pathing up the file header writeframes(data) -- write audio frames and patch up the file header close() -- patch up the file header and close the output file You should set the parameters before the first writeframesraw or writeframes. The total number of frames does not need to be set, but when it is set to the correct value, the header does not have to be patched up. It is best to first set all parameters, perhaps possibly the compression type, and then write audio frames using writeframesraw. When all frames have been written, either call writeframes(b'') or close() to patch up the sizes in the header. Marks can be added anytime. If there are any marks, you must call close() after all frames have been written. The close() method is called automatically when the class instance is destroyed. When a file is opened with the extension '.aiff', an AIFF file is written, otherwise an AIFF-C file is written. This default can be changed by calling aiff() or aifc() before the first writeframes or writeframesraw. NErroropenc@s eZdZdS)rN)__name__ __module__ __qualname__rr)/opt/alt/python39/lib64/python3.9/aifc.pyrsl@QEcCs8ztd|ddWStjy2tdYn0dS)N>lrstructZunpackreaderrorEOFErrorfilerrr _read_longsrcCs8ztd|ddWStjy2tdYn0dS)N>Lr rr rrrr _read_ulongsrcCs8ztd|ddWStjy2tdYn0dS)N>hrr rrrr _read_shortsrcCs8ztd|ddWStjy2tdYn0dS)N>Hrrr rrrr _read_ushortsrcCs@t|d}|dkrd}n ||}|d@dkr<|d}|S)Nr)ordr )rlengthdatadummyrrr _read_strings   r gcCst|}d}|dkr d}|d}t|}t|}||krN|krNdkrXnnd}n0|dkrft}n"|d}|d|td |d }||S) Nrrgi?lg@?)rr _HUGE_VALpow)fexponsignhimantlomantrrr _read_floats"r,cCs|td|dS)Nrwriter packr'xrrr _write_shortsr2cCs|td|dS)Nrr-r0rrr _write_ushortsr3cCs|td|dS)Nr r-r0rrr _write_longsr4cCs|td|dS)Nrr-r0rrr _write_ulongsr5cCsRt|dkrtd|tdt|||t|d@dkrN|ddS)Nz%string exceeds maximum pstring lengthBrr)len ValueErrorr.r r/)r'srrr _write_strings   r<c Csddl}|dkrd}|d}nd}|dkr8d}d}d}n||\}}|dks^|dks^||krp|dB}d}d}nh|d}|dkr|||}d}||B}||d}||}t|}|||d}||}t|}t||t||t||dS) Nrr"r!i@rr#i? )mathZfrexpZldexpZfloorintr3r5) r'r1r>r)r(r*r+ZfmantZfsmantrrr _write_floats8       r@)Chunk) namedtuple _aifc_paramsz7nchannels sampwidth framerate nframes comptype compnamez3Number of audio channels (1 for mono, 2 for stereo)zSample width in byteszSampling frequencyzNumber of audio framesz(Compression type ("NONE" for AIFF files)zRA human-readable version of the compression type ('not compressed' for AIFF files)c@seZdZdZddZddZddZdd Zd d Zd d Z ddZ ddZ ddZ ddZ ddZddZddZddZddZd d!Zd"d#Zd$d%Zd&d'Zd(d)Zd*d+Zd,d-Zd.d/Zd0d1ZdS)2 Aifc_readNcCs6d|_d|_g|_d|_||_t|}|dkr:td|d}|dkrTd|_ n|dkrdd|_ ntdd|_ d|_ d|_ zt|j}Wnt yYqYn0|}|d kr||d|_ nH|d kr||_ |d }d|_ n(|d krt||_n|d kr|||qx|j r*|j s2tddS)NrFORMz file does not start with FORM idr AIFFAIFCrznot an AIFF or AIFF-C fileCOMMSSNDFVERMARKz$COMM chunk and/or SSND chunk missing)_version_convert_markers _soundpos_filerAZgetnamerr _aifcZ_comm_chunk_read _ssnd_chunk_ssnd_seek_neededr_read_comm_chunkr _readmarkskip)selfrchunkZformdataZ chunknamerrrrinitfp4sH          zAifc_read.initfpcCsLt|tr>t|d}z||WqH|YqH0n ||dS)Nrb) isinstancestrbuiltinsrrZcloserXr'Z file_objectrrr__init__\s   zAifc_read.__init__cCs|SNrrXrrr __enter__hszAifc_read.__enter__cGs |dSrbr_rXargsrrr__exit__kszAifc_read.__exit__cCs|jSrb)rQrcrrrgetfpqszAifc_read.getfpcCsd|_d|_dS)Nrr)rTrPrcrrrrewindtszAifc_read.rewindcCs |j}|durd|_|dSrb)rQr_rXrrrrr_xszAifc_read.closecCs|jSrb)rPrcrrrtell~szAifc_read.tellcCs|jSrb) _nchannelsrcrrr getnchannelsszAifc_read.getnchannelscCs|jSrb)_nframesrcrrr getnframesszAifc_read.getnframescCs|jSrb) _sampwidthrcrrr getsampwidthszAifc_read.getsampwidthcCs|jSrb) _frameratercrrr getframerateszAifc_read.getframeratecCs|jSrb _comptypercrrr getcomptypeszAifc_read.getcomptypecCs|jSrb _compnamercrrr getcompnameszAifc_read.getcompnamecCs*t||||||Srb)rCrnrrrtrprwrzrcrrr getparamss  zAifc_read.getparamscCst|jdkrdS|jSNrr9rOrcrrr getmarkersszAifc_read.getmarkerscCs2|jD]}||dkr|Sqtd|dSNrzmarker {0!r} does not existrOrformatrXidmarkerrrrgetmarks   zAifc_read.getmarkcCs*|dks||jkrtd||_d|_dS)Nrzposition not in ranger)rorrPrT)rXposrrrsetposszAifc_read.setposcCs|jrD|jd|jd}|j|j}|r>|j|dd|_|dkrPdS|j||j}|jrv|rv||}|jt||j|j |_|S)NrrJr) rTrSseekr rP _framesizerNr9rmrq)rXnframesrrrrrr readframess       zAifc_read.readframescCsddl}||dSNrr)audioopZalaw2linrXrrrrr _alaw2linszAifc_read._alaw2lincCsddl}||dSr)rZulaw2linrrrr _ulaw2linszAifc_read._ulaw2lincCs2ddl}t|dsd|_||d|j\}|_|SNr _adpcmstater)rhasattrrZ adpcm2linrrrr _adpcm2lins  zAifc_read._adpcm2lincCsVt||_t||_t|dd|_tt||_|jdkrFtd|jdkrXtd|j|j|_ |j rFd}|j dkrd}t dd |_ |d |_|rt|jd}|d@dkr|d}|j ||_ |jd dt||_|jd krR|jd kr |j|_n4|jdvr |j|_n|jdvr6|j|_ntdd|_n d |_d|_dS)NrJrbad sample widthbad # of channelsrzWarning: bad COMM chunk sizer r!NONEG722ulawULAWalawALAWunsupported compression typernot compressed)rrmrrorqr?r,rsrrrRZ chunksizewarningswarnr rvrrrr ryrrNrr)rXrYZkludgerrrrrUsD                 zAifc_read._read_comm_chunkcCst|}zDt|D]6}t|}t|}t|}|s6|r|j|||fqWnBtydt|jt|jdkrvdnd|f}t |Yn0dS)Nz;Warning: MARK chunk contains only %s marker%s instead of %srr;) rrangerr rOappendrr9rr)rXrYZnmarkersirrnamewrrrrVs  zAifc_read._readmark)rrrrQrZrardrhrirjr_rlrnrprrrtrwrzr{r~rrrrrrrUrVrrrrrDs2$( *rDc@s0eZdZdZddZddZddZdd Zd d Zd d Z ddZ ddZ ddZ ddZ ddZddZddZddZddZd d!Zd"d#Zd$d%Zd&d'Zd(d)Zd*d+Zd,d-Zd.d/Zd0d1Zd2d3Zd4d5Zd6d7Zd8d9Zd:d;Z dd?Z"d@dAZ#dBdCZ$dDdEZ%dFdGZ&dHdIZ'dS)J Aifc_writeNcCs\t|trNt|d}z||Wn|Yn0|drXd|_n ||dS)Nwbz.aiffr)r\r]r^rrZr_endswithrRr`rrrra/s   zAifc_write.__init__cCs^||_t|_d|_d|_d|_d|_d|_d|_d|_ d|_ d|_ d|_ g|_ d|_d|_dS)Nrrrr)rQ _AIFC_versionrMrvryrNrmrqrsro_nframeswritten _datawritten _datalengthrO _marklengthrRrkrrrrZ?szAifc_write.initfpcCs |dSrbrercrrr__del__PszAifc_write.__del__cCs|SrbrrcrrrrdSszAifc_write.__enter__cGs |dSrbrerfrrrrhVszAifc_write.__exit__cCs|jrtdd|_dS)N0cannot change parameters after starting to writerrrrRrcrrraiff\szAifc_write.aiffcCs|jrtdd|_dS)NrrrrcrrraifcaszAifc_write.aifccCs(|jrtd|dkrtd||_dS)Nrrr)rrrm)rX nchannelsrrr setnchannelsfs zAifc_write.setnchannelscCs|jstd|jS)Nznumber of channels not set)rmrrcrrrrnmszAifc_write.getnchannelscCs0|jrtd|dks|dkr&td||_dS)Nrrr r)rrrq)rX sampwidthrrr setsampwidthrs zAifc_write.setsampwidthcCs|jstd|jS)Nzsample width not set)rqrrcrrrrryszAifc_write.getsampwidthcCs(|jrtd|dkrtd||_dS)Nrrzbad frame rate)rrrs)rX frameraterrr setframerate~s zAifc_write.setframeratecCs|jstd|jS)Nzframe rate not set)rsrrcrrrrtszAifc_write.getframeratecCs|jrtd||_dS)Nr)rrro)rXrrrr setnframesszAifc_write.setnframescCs|jSrbrrcrrrrpszAifc_write.getnframescCs.|jrtd|dvrtd||_||_dSNr)rrrrrrr)rrrvry)rXcomptypecompnamerrr setcomptypes zAifc_write.setcomptypecCs|jSrbrurcrrrrwszAifc_write.getcomptypecCs|jSrbrxrcrrrrzszAifc_write.getcompnamecCsf|\}}}}}}|jrtd|dvr.td|||||||||||dSr)rrrrrrr)rXparamsrrrrrrrrr setparamss    zAifc_write.setparamscCs8|jr|jr|jstdt|j|j|j|j|j|jS)Nznot all parameters set)rmrqrsrrCrorvryrcrrrr{s  zAifc_write.getparamscCs|dkrtd|dkr tdt|ts2tdtt|jD],}||j|dkr@|||f|j|<dSq@|j|||fdS)Nrzmarker ID must be > 0zmarker position must be >= 0zmarker name must be bytes)rr\bytesrr9rOr)rXrrrrrrrsetmarks zAifc_write.setmarkcCs2|jD]}||dkr|Sqtd|dSrrrrrrrs   zAifc_write.getmarkcCst|jdkrdS|jSr|r}rcrrrr~szAifc_write.getmarkerscCs|jSrbrrcrrrrlszAifc_write.tellcCszt|ttfst|d}|t|t||j|j}|j rN| |}|j ||j ||_ |j t||_ dS)Nr7)r\r bytearray memoryviewcast_ensure_header_writtenr9rqrmrNrQr.rr)rXrrrrrwriteframesraws   zAifc_write.writeframesrawcCs.|||j|jks"|j|jkr*|dSrb)rrrorr _patchheader)rXrrrr writeframess    zAifc_write.writeframescCs|jdurdSzx|d|jd@r<|jd|jd|_||j|jksb|j|jksb|jrj| Wd|_ |j}d|_| nd|_ |j}d|_| 0dS)Nrrr8) rQrrr. _writemarkersrrorrrrNr_)rXr'rrrr_s,         zAifc_write.closecCsddl}||dSr)rZlin2alawrrrr _lin2alawszAifc_write._lin2alawcCsddl}||dSr)rZlin2ulawrrrr _lin2ulawszAifc_write._lin2ulawcCs2ddl}t|dsd|_||d|j\}|_|Sr)rrrZ lin2adpcmrrrr _lin2adpcms  zAifc_write._lin2adpcmcCsf|jsb|jdvr.|jsd|_|jdkr.td|js|jdkr|j|_n&|jdvr(|j|_n|jdvr:|j|_dS)Nrrr)rvrrNrrrcrrr_init_compressions      zAifc_write._init_compressionc CsH|jr|jdkr||jd|js<||j|j|_|j|j|j|_|jd@rf|jd|_|jr|jdvr|jd|_|jd@r|jd|_n0|jdkr|jdd|_|jd@r|jd|_z|j |_ Wnt t fyd|_ Yn0| |j}|jr@|jd |jd t|jdt|j|jn |jd |jd t|j|t|j|j|j dur|j |_t|j|j|jd vrt|jdnt|j|jdt|j|j|jr|j|jt|j|j|jd|j dur|j |_t|j|jdt|jdt|jddS)NrrEr)rrrrrrr rGrKrFrHrrJrIr)rRrvrrQr.rormrqrrl_form_length_posAttributeErrorOSError_write_form_lengthr5rMr2 _nframes_posr@rsr<ry_ssnd_length_pos)rXZ initlength commlengthrrrr%s^                        zAifc_write._write_headercCs\|jr*dt|j}|d@r$|d}d}nd}d}t|jd||jd|d||S) Nrr rrr rJ)rRr9ryr5rQr)rX datalengthrZ verslengthrrrrXs"zAifc_write._write_form_lengthcCs|j}|jd@r,|jd}|jdn|j}||jkrd|j|jkrd|jdkrd|j|ddS|j|j d| |}|j|j dt |j|j|j|j dt |j|d|j|d|j|_||_dS)Nrr8rrJ)rQrlrr.rrorrrrrrr5r)rXZcurposrrrrrres*      zAifc_write._patchheadercCst|jdkrdS|jdd}|jD]:}|\}}}|t|dd}t|d@dkr(|d}q(t|j||d|_t|jt|j|jD]2}|\}}}t|j|t|j|t|j|qdS)NrrLrrrJ)r9rOrQr.r5rr2r<)rXrrrrrrrrr{s"          zAifc_write._writemarkers)(rrrrQrarZrrdrhrrrrnrrrrrtrrprrwrzrr{rrr~rlrrr_rrrrrrrrrrrrrrsJ    3 rcCsJ|durt|dr|j}nd}|dvr.t|S|dvr>t|StddS)Nmoder[)rr[)rrz$mode must be 'r', 'rb', 'w', or 'wb')rrrDrr)r'rrrrrs __main__rz/usr/demos/data/audio/bach.aiffrZReadingz nchannels =z nframes =z sampwidth =z framerate =z comptype =z compname =rZWritingrizDone.)N)7__doc__r r^r__all__ Exceptionrrrrrrr r%r,r2r3r4r5r<r@rYrA collectionsrBrCrrrrrrrDrrrsysargvrfnr'printrnrprrrtrwrzZgngrr{rrrrrrrs|  !            .