a Z^Fc@sdZddlmZeddZdZdZdZdZd Zd Z d Z d Z d Z dZ dZdZdZdZeeeee egZGdddeZddZddZGdddZGdddZd ddZdS)!aStuff to parse Sun and NeXT audio files. An audio file consists of a header followed by the data. The structure of the header is as follows. +---------------+ | magic word | +---------------+ | header size | +---------------+ | data size | +---------------+ | encoding | +---------------+ | sample rate | +---------------+ | # of channels | +---------------+ | info | | | +---------------+ The magic word consists of the 4 characters '.snd'. Apart from the info field, all header fields are 4 bytes in size. They are all 32-bit unsigned integers encoded in big-endian byte order. The header size really gives the start of the data. The data size is the physical size of the data. From the other parameters the number of frames can be calculated. The encoding gives the way in which audio samples are encoded. Possible values are listed below. The info field currently consists of an ASCII string giving a human-readable description of the audio file. The info field is padded with NUL bytes to the header size. Usage. Reading audio files: f = sunau.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(). When the setpos() and rewind() methods are 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' or 'ULAW') getcompname() -- returns human-readable version of compression type ('not compressed' matches 'NONE') getparams() -- returns a namedtuple consisting of all of the above in the above order getmarkers() -- returns None (for compatibility with the aifc module) getmark(id) -- raises an error since the mark does not exist (for compatibility with the aifc module) 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() and the position given to setpos() are 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 audio files: f = sunau.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: 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 tell() -- return current position in output file 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. The close() method is called automatically when the class instance is destroyed. ) namedtuple _sunau_paramsz7nchannels sampwidth framerate nframes comptype compnameidns.iiiiilc@s eZdZdS)ErrorN)__name__ __module__ __qualname__rr/usr/lib64/python3.9/sunau.pyr sr cCs8d}tdD]&}|d}|s"t|dt|}q |S)Nrrr)rangereadZEOFErrorZord)filexiZbyterrr _read_u32s  rcCsFg}tdD]&}t|d\}}|dt||}q |t|dS)Nrrr)rZdivmodZinsertintwritebytes)rrdatarZdZmrrr _write_u32s  rc@seZdZddZddZddZddZd d Zd d Zd dZ ddZ ddZ ddZ ddZ ddZddZddZddZdd Zd!d"Zd#d$Zd%d&Zd'd(Zd)S)*Au_readcC@t|tdkr,ddl}||d}d|_nd|_||dS)NrrbTFtypebuiltinsopen_openedinitfpselffr"rrr__init__  zAu_read.__init__cCs|jr|dSN_filecloser'rrr__del__szAu_read.__del__cC|Sr+rr/rrr __enter__zAu_read.__enter__cG |dSr+r.r'Zargsrrr__exit__r3zAu_read.__exit__c Cs||_d|_tt|}|tkr(tdtt||_|jdkrHtd|jdkrZtdt||_|jtkrzt|j|_tt||_ |j t vrtd|j t t fvrd|_ d |_nj|j tkrd |_|_ nR|j tkrd|_|_ n:|j tkrd |_|_ n"|j tkrd |_|_ ntd tt||_tt||_|jsLtd |j|j|_|jdkr||jd|_|jd\|_}}nd|_z||_Wnttfyd|_Yn0dS)Nrzbad magic numberrzheader size too smallidzheader size ridiculously largezencoding not (yet) supportedrrrrzunknown encodingzbad # of channels)r- _soundposrrAUDIO_FILE_MAGICr Z _hdr_size _data_sizeAUDIO_UNKNOWN_SIZE _encoding_simple_encodingsAUDIO_FILE_ENCODING_MULAW_8AUDIO_FILE_ENCODING_ALAW_8 _sampwidth _framesizeAUDIO_FILE_ENCODING_LINEAR_8AUDIO_FILE_ENCODING_LINEAR_16AUDIO_FILE_ENCODING_LINEAR_24AUDIO_FILE_ENCODING_LINEAR_32 _framerate _nchannelsr_infoZ partitiontell _data_posAttributeErrorOSError)r'rZmagicZ_rrrr%sV            zAu_read.initfpcC|jSr+)r-r/rrrgetfpr3z Au_read.getfpcCrOr+)rIr/rrr getnchannelsr3zAu_read.getnchannelscCrOr+)rBr/rrr getsampwidthr3zAu_read.getsampwidthcCrOr+)rHr/rrr getframerater3zAu_read.getframeratecCs(|jtkrtS|jtvr$|j|jSdSNr)r<r=r>r?rCr/rrr getnframess    zAu_read.getnframescC$|jtkrdS|jtkrdSdSdS)NULAWALAWNONEr>r@rAr/rrr getcomptype   zAu_read.getcomptypecCrV)NCCITT G.711 u-lawCCITT G.711 A-lawnot compressedrZr/rrr getcompnamer\zAu_read.getcompnamecC*t||||||Sr+rrQrRrSrUr[r`r/rrr getparams  zAu_read.getparamscCsdSr+rr/rrr getmarkersr3zAu_read.getmarkerscCs tddS)Nzno marks)r )r'Zidrrrgetmark r3zAu_read.getmarkcCsp|jtvrl|tkr|j}n|j||j}|jt||j7_|jtkrhddl }| ||j }|SdSrT) r>r?r=r-rrCr:lenr@audioopZulaw2linrB)r'nframesrrhrrr readframess   zAu_read.readframescCs*|jdurtd|j|jd|_dS)N cannot seekr)rLrNr-seekr:r/rrrrewinds zAu_read.rewindcCrOr+)r:r/rrrrK!r3z Au_read.tellcCsP|dks||krtd|jdur.td|j|j||j||_dS)Nrzposition not in rangerk)rUr rLrNr-rlrCr:)r'Zposrrrsetpos$s  zAu_read.setposcCs"|j}|rd|_|jr|dSr+)r-r$r.r'rrrrr.,s z Au_read.closeN)r r r r)r0r2r7r%rPrQrRrSrUr[r`rcrerfrjrmrKrnr.rrrrrs( . rc@seZdZddZddZddZddZd d Zd d Zd dZ ddZ ddZ ddZ ddZ ddZddZddZddZdd Zd!d"Zd#d$Zd%d&Zd'd(Zd)d*Zd+d,Zd-d.Zd/d0Zd1d2Zd3S)4Au_writecCr)NrrwbTFr r&rrrr)5r*zAu_write.__init__cCs|jr|d|_dSr+r,r/rrrr0>zAu_write.__del__cCr1r+rr/rrrr2Cr3zAu_write.__enter__cGr4r+r5r6rrrr7Fr3zAu_write.__exit__cCsF||_d|_d|_d|_d|_t|_d|_d|_d|_ d|_ d|_ dS)Nrr9rW) r-rHrIrBrCr=_nframes_nframeswritten _datawritten _datalengthrJ _comptyperorrrr%IszAu_write.initfpcC(|jrtd|dvrtd||_dS)N0cannot change parameters after starting to write)rrrz"only 1, 2, or 4 channels supported)rtr rI)r' nchannelsrrr setnchannelsV zAu_write.setnchannelscC|jstd|jS)Nznumber of channels not set)rIr r/rrrrQ]rrzAu_write.getnchannelscCrx)Nry)rrrrzbad sample width)rtr rB)r' sampwidthrrr setsampwidthbr|zAu_write.setsampwidthcCs|jstd|jS)Nsample width not specified)rHr rBr/rrrrRirrzAu_write.getsampwidthcCs|jrtd||_dS)Nry)rtr rH)r' frameraterrr setframeratenrrzAu_write.setframeratecCr})Nzframe rate not set)rHr r/rrrrSsrrzAu_write.getframeratecCs(|jrtd|dkrtd||_dS)Nryrz# of frames cannot be negative)rtr rs)r'rirrr setnframesxr|zAu_write.setnframescCrOr+rtr/rrrrUr3zAu_write.getnframescCs|dvr||_ntddS)N)rYrWzunknown compression type)rwr )r'r!Znamerrr setcomptypeszAu_write.setcomptypecCrOr+rwr/rrrr[r3zAu_write.getcomptypecCs$|jdkrdS|jdkrdSdSdS)NrWr]rXr^r_rr/rrrr`r\zAu_write.getcompnamecCsH|\}}}}}}|||||||||||dSr+)r{rrrr)r'Zparamsrzr~rriZcomptypeZcompnamerrr setparamss     zAu_write.setparamscCrar+rbr/rrrrcrdzAu_write.getparamscCrOr+rr/rrrrKr3z Au_write.tellcCs~t|ttfst|d}||jdkrDddl}|||j }t ||j }|j ||j||_|jt ||_dS)NZBrWr)Z isinstancerZ bytearrayZ memoryviewZcast_ensure_header_writtenrwrhZlin2ulawrBrgrCr-rrtru)r'rrhrirrrwriteframesraws   zAu_write.writeframesrawcCs.|||j|jks"|j|jkr*|dSr+)rrtrsrvru _patchheader)r'rrrr writeframess    zAu_write.writeframescCsx|jrtzP||j|jks(|j|jkr0||jW|j}d|_|jrt| n|j}d|_|jrr| 0dSr+) r-rrtrsrvrurZflushr$r.rorrrr.s     zAu_write.closecCs<|js8|jstd|js"td|js0td|dS)Nz# of channels not specifiedrzframe rate not specified)rtrIr rBrH _write_headerr/rrrrszAu_write._ensure_header_writtenc Cs|jdkrl|jdkr t}d|_q|jdkr6t}d|_q|jdkrLt}d|_q|jdkrbt}d|_qtdn|jdkrt}d|_ntd|j|j |_t |j t dt |j}|d d @}t |j ||jtkrt}n |j|j}z|j |_Wnttfyd|_Yn0t |j |||_t |j |t |j |jt |j |j |j |j|j d |t |jd dS) NrYrrrrzinternal errorrWr rir8r)rwrBrDrCrErFrGr r@rIrr-r;rgrJrsr=rK_form_length_posrMrNrvrHr)r'ZencodingZ header_sizeZlengthrrrrsJ               zAu_write._write_headercCsH|jdurtd|j|jt|j|j|j|_|jdddS)Nrkrr)rrNr-rlrrurvr/rrrrs  zAu_write._patchheaderN)r r r r)r0r2r7r%r{rQrrRrrSrrUrr[r`rrcrKrrr.rrrrrrrrp3s2    *rpNcCsJ|durt|dr|j}nd}|dvr.t|S|dvr>t|StddS)Nmoder)Zrr)Zwrqz$mode must be 'r', 'rb', 'w', or 'wb')Zhasattrrrrpr )r(rrrrr#s r#r+)Z__doc__Z collectionsrrr;r@rDrErFrGZAUDIO_FILE_ENCODING_FLOATZAUDIO_FILE_ENCODING_DOUBLEZAUDIO_FILE_ENCODING_ADPCM_G721ZAUDIO_FILE_ENCODING_ADPCM_G722Z AUDIO_FILE_ENCODING_ADPCM_G723_3Z AUDIO_FILE_ENCODING_ADPCM_G723_5rAr=r?Z Exceptionr rrrrpr#rrrrZsBi  Q