b374k
m1n1 1.01
Apache/2.2.15 (CentOS)
Linux obd60-6c49958d75-2q7cw 5.4.0-174-generic #193-Ubuntu SMP Thu Mar 7 14:29:28 UTC 2024 x86_64
uid=48(apache) gid=48(apache) groups=48(apache)
server ip : 172.67.192.52 | your ip : 10.244.126.0
safemode OFF
 >  / usr / lib64 / python2.6 /
Filename/usr/lib64/python2.6/sunau.pyo
Size17.65 kb
Permissionrw-r--r--
Ownerapache
Create time23-Dec-2025 17:41
Last modified20-Jun-2019 19:45
Last accessed22-Apr-2026 05:32
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
Ñò
§ÚêLc@sÖdZdZdZdZdZdZdZdZdZd Z d
Z
d Z d Z d
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/usr/lib64/python2.6/sunau.pyR�scCs[d}xNtd�D]@}|id�}|djo
t�n|dt|�}qW|S(Nliiti(trangetreadtEOFErrortord(tfiletxtitbyte((s/usr/lib64/python2.6/sunau.pyt _read_u32�s


cCs�g}x?td�D]1}t|d�\}}|id|�|}qWx1td�D]#}|itt||���qUWdS(Niii(Rtdivmodtinserttwritetchrtint(RR tdataR
tdtm((s/usr/lib64/python2.6/sunau.pyt
_write_u32�s


tAu_readcBsªeZd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Z d�Z
d �Z d
�Z d �Z
d �Zd
�Zd�Zd�Zd�Zd�ZRS(cCsLt|�td�jo"ddk}|i|d�}n|i|�dS(NRiÿÿÿÿtrb(ttypet __builtin__topentinitfp(tselftfR((s/usr/lib64/python2.6/sunau.pyt__init__�s cCs|io|i�ndS(N(t_filetclose(R((s/usr/lib64/python2.6/sunau.pyt__del__ s
cCsy||_d|_tt|��}|tjo
td�ntt|��|_|idjo
td�n|idjo
td�nt|�|_|itjot|i�|_ntt|��|_ |i t
jo
td�n|i t t fjod|_
d |_n�|i tjod |_|_
nv|i tjod|_|_
nR|i tjod
|_|_
n.|i tjod |_|_
n
td �tt|��|_tt|��|_|i|i|_|idjof|i|id�|_xStt|i��D]/}|i|d
jo|i| |_Pq5q5Wn
d|_dS(Nisbad magic numberisheader size too smallidsheader size ridiculously largesencoding not (yet) supportediiiisunknown encodingtR(Rt _soundposRR tAUDIO_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_infoRtlen(RRtmagicR
((s/usr/lib64/python2.6/sunau.pyR¤sP  




 
 
 
cCs|iS(N(R(R((s/usr/lib64/python2.6/sunau.pytgetfpÏscCs|iS(N(R3(R((s/usr/lib64/python2.6/sunau.pyt getnchannelsÒscCs|iS(N(R,(R((s/usr/lib64/python2.6/sunau.pyt getsampwidthÕscCs|iS(N(R2(R((s/usr/lib64/python2.6/sunau.pyt getframerateØscCs8|itjotS|itjo|i|iSdS(Ni(R&R'R(R)R-(R((s/usr/lib64/python2.6/sunau.pyt
getnframesÛs
cCs2|itjodS|itjodSdSdS(NtULAWtALAWtNONE(R(R*R+(R((s/usr/lib64/python2.6/sunau.pyt getcomptypeâs
cCs2|itjodS|itjodSdSdS(NsCCITT G.711 u-lawsCCITT G.711 A-lawsnot compressed(R(R*R+(R((s/usr/lib64/python2.6/sunau.pyt getcompnameês
cCs:|i�|i�|i�|i�|i�|i�fS(N(R8R9R:R;R?R@(R((s/usr/lib64/python2.6/sunau.pyt getparamsòscCsdS(N(tNone(R((s/usr/lib64/python2.6/sunau.pyt
getmarkers÷scCs
td�dS(Nsno marks(R(Rtid((s/usr/lib64/python2.6/sunau.pytgetmarkúscCs�|itjoz|tjo|ii�}n!|ii||i|i�}|itjo%ddk}|i ||i
�}n|SdS(Niÿÿÿÿ( R(R)R'RRR-R3R*taudiooptulaw2linR,RB(RtnframesRRF((s/usr/lib64/python2.6/sunau.pyt
readframesýs
  cCs d|_|ii|i�dS(Ni(R#RtseekR%(R((s/usr/lib64/python2.6/sunau.pytrewind s cCs|iS(N(R#(R((s/usr/lib64/python2.6/sunau.pyttell
scCsX|djp||i�jo
td�n|ii||i|i�||_dS(Nisposition not in range(R;RRRJR-R%R#(Rtpos((s/usr/lib64/python2.6/sunau.pytsetposs 
cCs
d|_dS(N(RBR(R((s/usr/lib64/python2.6/sunau.pyR s(RRRR!RR7R8R9R:R;R?R@RARCRERIRKRLRNR (((s/usr/lib64/python2.6/sunau.pyR�s$   +             tAu_writecBs×eZd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Z d�Z
d �Z d
�Z d �Z
d �Zd
�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�ZRS(cCsLt|�td�jo"ddk}|i|d�}n|i|�dS(NRiÿÿÿÿtwb(RRRR(RRR((s/usr/lib64/python2.6/sunau.pyRs cCs|io|i�ndS(N(RR (R((s/usr/lib64/python2.6/sunau.pyR!!s
cCsg||_d|_d|_d|_d|_t|_d|_d|_d|_ d|_
d|_ dS(NiRR<( RR2R3R,R-R't_nframest_nframeswrittent _datawrittent _datalengthR4t _comptype(RR((s/usr/lib64/python2.6/sunau.pyR%s          cCs>|io
td�n|djo
td�n||_dS(Ns0cannot change parameters after starting to writeiiis"only 1, 2, or 4 channels supported(iii(RRRR3(Rt nchannels((s/usr/lib64/python2.6/sunau.pyt setnchannels2s




cCs|ip
td�n|iS(Nsnumber of channels not set(R3R(R((s/usr/lib64/python2.6/sunau.pyR89s

cCs>|io
td�n|djo
td�n||_dS(Ns0cannot change parameters after starting to writeiiisbad sample width(iii(RRRR,(Rt sampwidth((s/usr/lib64/python2.6/sunau.pyt setsampwidth>s




cCs|ip
td�n|iS(Nssample width not specified(R2RR,(R((s/usr/lib64/python2.6/sunau.pyR9Es

cCs$|io
td�n||_dS(Ns0cannot change parameters after starting to write(RRRR2(Rt framerate((s/usr/lib64/python2.6/sunau.pyt setframerateJs

cCs|ip
td�n|iS(Nsframe rate not set(R2R(R((s/usr/lib64/python2.6/sunau.pyR:Os

cCs>|io
td�n|djo
td�n||_dS(Ns0cannot change parameters after starting to writeis# of frames cannot be negative(RRRRQ(RRH((s/usr/lib64/python2.6/sunau.pyt
setnframesTs




cCs|iS(N(RR(R((s/usr/lib64/python2.6/sunau.pyR;[scCs'|djo
||_n
td�dS(NR>R<sunknown compression type(sNONEsULAW(RUR(RRtname((s/usr/lib64/python2.6/sunau.pyt setcomptype^s

cCs|iS(N(RU(R((s/usr/lib64/python2.6/sunau.pyR?dscCs2|idjodS|idjodSdSdS(NR<sCCITT G.711 u-lawR=sCCITT G.711 A-lawsnot compressed(RU(R((s/usr/lib64/python2.6/sunau.pyR@gs
cCs`|\}}}}}}|i|�|i|�|i|�|i|�|i||�dS(N(RWRYR[R\R^(RtparamsRVRXRZRHtcomptypetcompname((s/usr/lib64/python2.6/sunau.pyt setparamsos 



cCs:|i�|i�|i�|i�|i�|i�fS(N(R8R9R:R;R?R@(R((s/usr/lib64/python2.6/sunau.pyRAwscCs|iS(N(RR(R((s/usr/lib64/python2.6/sunau.pyRL|scCs�|i�t|�|i}|idjo%ddk}|i||i�}n|ii|�|i ||_ |i
t|�|_
dS(NR<iÿÿÿÿ( t_ensure_header_writtenR5R-RURFtlin2ulawR,RRRRRS(RRRHRF((s/usr/lib64/python2.6/sunau.pytwriteframesraws
 cCsE|i|�|i|ijp|i|ijo|i�ndS(N(ReRRRQRTRSt _patchheader(RR((s/usr/lib64/python2.6/sunau.pyt writeframes�s
cCsX|i�|i|ijp|i|ijo|i�n|ii�d|_dS(N( RcRRRQRTRSRfRtflushRB(R((s/usr/lib64/python2.6/sunau.pyR �s 

cCsa|ipS|ip
td�n|ip
td�n|ip
td�n|i�ndS(Ns# of channels not specifiedssample width not specifiedsframe rate not specified(RRR3RR,R2t
_write_header(R((s/usr/lib64/python2.6/sunau.pyRc�s






cCs»|idjov|idjot}d|_q²|idjot}d|_q²|idjot}d|_q²td�n-|idjot}d|_n
td�|i|i|_t |i
t �dt |i
�}|dd @}t |i
|�|itjo
t}n|i|i}t |i
|�||_t |i
|�t |i
|i�t |i
|i�|i
i|i
�|i
id |t |i
�d
�dS( NR>iiisinternal errorR<iiR"iiøÿÿÿ(RUR,R.R-R/R1RR*R3RRR$R5R4RQR'RTR2R(Rtencodingt header_sizetlength((s/usr/lib64/python2.6/sunau.pyRi¥s<




 
 cCsF|iid�t|i|i�|i|_|iidd�dS(Niii(RRJRRSRT(R((s/usr/lib64/python2.6/sunau.pyRfÈs (RRRR!RRWR8RYR9R[R:R\R;R^R?R@RbRARLReRgR RcRiRf(((s/usr/lib64/python2.6/sunau.pyROs.  
             

#cCsq|djo't|d�o
|i}q4d}n|djo t|�S|djo t|�Std�dS( NtmodeRtrtwRPs$mode must be 'r', 'rb', 'w', or 'wb'(Rnsrb(Roswb(RBthasattrRmRROR(RRm((s/usr/lib64/python2.6/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 ExceptionRR RRRORBRtopenfp(((s/usr/lib64/python2.6/sunau.pyt<module>hs6  �µ