�`^c@s�dZdZdZdZdZdZdZdZdZd Z d
Z
dZdZd
Z
dZeeeeee
gZdefd��YZd�Zd�Zddd��YZddd��YZdd�ZeZdS(s�Stuff 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 tuple 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('') or
close() to patch up the sizes in the header.
The close() method is called automatically when the class instance
is destroyed.
idns.iiiiiiiiiiiil�tErrorcBseZRS((t__name__t
__module__(((s/sys/lib/python2.7/sunau.pyR�scCsYd}xLtd�D]>}|jd�}|dkr=t�n|dt|�}qW|S(Nliiti(trangetreadtEOFErrortord(tfiletxtitbyte((s/sys/lib/python2.7/sunau.pyt _read_u32�s cCs�g}x?td�D]1}t|d�\}}|jd|�|}qWx1td�D]#}|jtt||���qUWdS(Niii(Rtdivmodtinserttwritetchrtint(RR tdataR
tdtm((s/sys/lib/python2.7/sunau.pyt
_write_u32�s
tAu_readcBs�eZd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Z d�Z
d �Zd
�Zd�Z
d�Zd
�Zd�Zd�Zd�Zd�ZRS(cCsJt|�td�kr9ddl}|j|d�}n|j|�dS(NRi�trb(ttypet__builtin__topentinitfp(tselftfR((s/sys/lib/python2.7/sunau.pyt__init__�scCs|jr|j�ndS(N(t_filetclose(R((s/sys/lib/python2.7/sunau.pyt__del__�s cCs�||_d|_tt|��}|tkr<td�ntt|��|_|jdkrltd�n|jdkr�td�nt|�|_|jtkr�t|j�|_ntt|��|_ |j t
kr�d�n|j ttfkrd|_
d |_n�|j tkr6d |_|_
no|j tkrXd|_|_
nM|j tkrzd
|_|_
n+|j tkr�d|_|_
n td�tt|��|_tt|��|_|j|j|_|jdkrT|j|jd�|_xPtt|j��D]-}|j|d
kr |j| |_Pq q Wn d|_y|j�|_Wn ttfk
r�d|_nXdS(Nisbad magic numberisheader size too smallidsheader size ridiculously largesencoding not (yet) supportediiiisunknown encodingtR(Rt _soundposRRtAUDIO_FILE_MAGICRt _hdr_sizet
_data_sizetAUDIO_UNKNOWN_SIZEt _encodingt_simple_encodingstAUDIO_FILE_ENCODING_MULAW_8tAUDIO_FILE_ENCODING_ALAW_8t
_sampwidtht
_framesizetAUDIO_FILE_ENCODING_LINEAR_8tAUDIO_FILE_ENCODING_LINEAR_16tAUDIO_FILE_ENCODING_LINEAR_24tAUDIO_FILE_ENCODING_LINEAR_32t
_frameratet
_nchannelsRt_infoRtlenttellt _data_postAttributeErrortIOErrortNone(RRtmagicR
((s/sys/lib/python2.7/sunau.pyR�sV cCs|jS(N(R(R((s/sys/lib/python2.7/sunau.pytgetfp�scCs|jS(N(R3(R((s/sys/lib/python2.7/sunau.pytgetnchannels�scCs|jS(N(R,(R((s/sys/lib/python2.7/sunau.pytgetsampwidth�scCs|jS(N(R2(R((s/sys/lib/python2.7/sunau.pytgetframerate�scCs4|jtkrtS|jtkr0|j|jSdS(Ni(R&R'R(R)R-(R((s/sys/lib/python2.7/sunau.pyt
getnframes�s
cCs.|jtkrdS|jtkr&dSdSdS(NtULAWtALAWtNONE(R(R*R+(R((s/sys/lib/python2.7/sunau.pytgetcomptype�s
cCs.|jtkrdS|jtkr&dSdSdS(NsCCITT G.711 u-lawsCCITT G.711 A-lawsnot compressed(R(R*R+(R((s/sys/lib/python2.7/sunau.pytgetcompname�s
cCs:|j�|j�|j�|j�|j�|j�fS(N(R=R>R?R@RDRE(R((s/sys/lib/python2.7/sunau.pyt getparams�scCsdS(N(R:(R((s/sys/lib/python2.7/sunau.pyt
getmarkers�scCs
td�dS(Nsno marks(R(Rtid((s/sys/lib/python2.7/sunau.pytgetmark�scCs�|jtkr�|tkr-|jj�}n|jj||j�}|jt|�|j7_|jtkr�ddl }|j
||j�}n|SdS(Ni�(
R(R)R'RRR-R#R5R*taudiooptulaw2linR,R:(RtnframesRRJ((s/sys/lib/python2.7/sunau.pyt
readframesscCs>|jdkrtd��n|jj|j�d|_dS(Nscannot seeki(R7R:R9RtseekR#(R((s/sys/lib/python2.7/sunau.pytrewindscCs|jS(N(R#(R((s/sys/lib/python2.7/sunau.pyR6scCss|dks||j�kr*td�n|jdkrHtd��n|jj|j||j�||_dS(Nisposition not in rangescannot seek( R@RR7R:R9RRNR-R#(Rtpos((s/sys/lib/python2.7/sunau.pytsetposscCs
d|_dS(N(R:R(R((s/sys/lib/python2.7/sunau.pyR s(RRRR!RR<R=R>R?R@RDRERFRGRIRMROR6RQR (((s/sys/lib/python2.7/sunau.pyR�s$ /
tAu_writecBs�eZd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Z d�Z
d �Zd
�Zd�Z
d�Zd
�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�ZRS(cCsJt|�td�kr9ddl}|j|d�}n|j|�dS(NRi�twb(RRRR(RRR((s/sys/lib/python2.7/sunau.pyR$scCs|jr|j�ndS(N(RR (R((s/sys/lib/python2.7/sunau.pyR!*s cCsg||_d|_d|_d|_d|_t|_d|_d|_d|_ d|_
d|_dS(NiRRA(RR2R3R,R-R't_nframest_nframeswrittent_datawrittent_datalengthR4t _comptype(RR((s/sys/lib/python2.7/sunau.pyR.s cCs:|jrtd�n|dkr-td�n||_dS(Ns0cannot change parameters after starting to writeiiis"only 1, 2, or 4 channels supported(iii(RURR3(Rt nchannels((s/sys/lib/python2.7/sunau.pytsetnchannels;s
cCs|jstd�n|jS(Nsnumber of channels not set(R3R(R((s/sys/lib/python2.7/sunau.pyR=Bs cCs:|jrtd�n|dkr-td�n||_dS(Ns0cannot change parameters after starting to writeiiisbad sample width(iii(RURR,(Rt sampwidth((s/sys/lib/python2.7/sunau.pytsetsampwidthGs
cCs|jstd�n|jS(Nssample width not specified(R2RR,(R((s/sys/lib/python2.7/sunau.pyR>Ns cCs"|jrtd�n||_dS(Ns0cannot change parameters after starting to write(RURR2(Rt framerate((s/sys/lib/python2.7/sunau.pytsetframerateSs cCs|jstd�n|jS(Nsframe rate not set(R2R(R((s/sys/lib/python2.7/sunau.pyR?Xs cCs:|jrtd�n|dkr-td�n||_dS(Ns0cannot change parameters after starting to writeis# of frames cannot be negative(RURRT(RRL((s/sys/lib/python2.7/sunau.pyt
setnframes]s
cCs|jS(N(RU(R((s/sys/lib/python2.7/sunau.pyR@dscCs%|dkr||_n td�dS(NRCRAsunknown compression type(sNONEsULAW(RXR(RRtname((s/sys/lib/python2.7/sunau.pytsetcomptypegscCs|jS(N(RX(R((s/sys/lib/python2.7/sunau.pyRDmscCs.|jdkrdS|jdkr&dSdSdS(NRAsCCITT G.711 u-lawRBsCCITT G.711 A-lawsnot compressed(RX(R((s/sys/lib/python2.7/sunau.pyREps
cCs`|\}}}}}}|j|�|j|�|j|�|j|�|j||�dS(N(RZR\R^R_Ra(RtparamsRYR[R]RLtcomptypetcompname((s/sys/lib/python2.7/sunau.pyt setparamsxs
cCs:|j�|j�|j�|j�|j�|j�fS(N(R=R>R?R@RDRE(R((s/sys/lib/python2.7/sunau.pyRF�scCs|jS(N(RU(R((s/sys/lib/python2.7/sunau.pyR6�scCs�|j�|jdkr=ddl}|j||j�}nt|�|j}|jj|�|j ||_ |j
t|�|_
dS(NRAi�(t_ensure_header_writtenRXRJtlin2ulawR,R5R-RRRURV(RRRJRL((s/sys/lib/python2.7/sunau.pytwriteframesraw�s
cCsB|j|�|j|jks1|j|jkr>|j�ndS(N(RhRURTRWRVt_patchheader(RR((s/sys/lib/python2.7/sunau.pytwriteframes�s
cCsi|jrezL|j�|j|jks:|j|jkrG|j�n|jj�Wdd|_XndS(N( RRfRURTRWRVRitflushR:(R((s/sys/lib/python2.7/sunau.pyR �s
cCsY|jsU|jstd�n|js3td�n|jsHtd�n|j�ndS(Ns# of channels not specifiedssample width not specifiedsframe rate not specified(RUR3RR,R2t
_write_header(R((s/sys/lib/python2.7/sunau.pyRf�s cCs�|jdkr~|jdkr0t}d|_q�|jdkrQt}d|_q�|jdkrrt}d|_q�td�n*|jdkr�t}d|_n td�|j|j|_t |j
t�dt|j
�}|dd@}t |j
|�|jtkrt}n|j|j}y|j
j�|_Wn ttfk
r\d|_nXt |j
|�||_t |j
|�t |j
|j�t |j
|j�|j
j|j
�|j
jd |t|j
�d
�dS(NRCiiisinternal errorRAiiR"ii�(RXR,R.R-R/R1RR*R3RRR$R5R4RTR'R6t_form_length_posR8R9R:RWR2R(Rtencodingtheader_sizetlength((s/sys/lib/python2.7/sunau.pyRl�sD
cCsg|jdkrtd��n|jj|j�t|j|j�|j|_|jjdd�dS(Nscannot seekii(RmR:R9RRNRRVRW(R((s/sys/lib/python2.7/sunau.pyRi�s(RRRR!RRZR=R\R>R^R?R_R@RaRDREReRFR6RhRjR RfRlRi(((s/sys/lib/python2.7/sunau.pyRR"s.
'cCsi|dkr0t|d�r'|j}q0d}n|dkrFt|�S|dkr\t|�Std�dS( NtmodeRtrtwRSs$mode must be 'r', 'rb', 'w', or 'wb'(Rrsrb(Rsswb(R:thasattrRqRRRR(RRq((s/sys/lib/python2.7/sunau.pyR�s
N(((t__doc__R$R*R.R/R0R1tAUDIO_FILE_ENCODING_FLOATtAUDIO_FILE_ENCODING_DOUBLEtAUDIO_FILE_ENCODING_ADPCM_G721tAUDIO_FILE_ENCODING_ADPCM_G722t AUDIO_FILE_ENCODING_ADPCM_G723_3t AUDIO_FILE_ENCODING_ADPCM_G723_5R+R'R)t ExceptionRRRRRRR:Rtopenfp(((s/sys/lib/python2.7/sunau.pyt<module>hs6 ��
|