tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
M\¬Qc@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__(((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyRƒscCsYd}xLtdƒD]>}|jdƒ}|dkr=t‚n|dt|ƒ}qW|S(Nliiti(trangetreadtEOFErrortord(tfiletxtitbyte((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/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((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/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(cCsJt|ƒtdƒkr9ddl}|j|dƒ}n|j|ƒdS(NRiÿÿÿÿtrb(ttypet __builtin__topentinitfp(tselftfR((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt__init__šs cCs|jr|jƒndS(N(t_filetclose(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt__del__ s    cCsa||_d|_tt|ƒƒ}|tkr<td‚ntt|ƒƒ|_|jdkrltd‚n|jdkr‡td‚nt|ƒ|_|jtkrºt|jƒ|_ntt|ƒƒ|_    |j    t
krêtd‚n|j    t t fkrd|_ 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|_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
((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyR¤sN                            cCs|jS(N(R(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pytgetfpÏscCs|jS(N(R3(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt getnchannelsÒscCs|jS(N(R,(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt getsampwidthÕscCs|jS(N(R2(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt getframerateØscCs4|jtkrtS|jtkr0|j|jSdS(Ni(R&R'R(R)R-(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt
getnframesÛs
cCs.|jtkrdS|jtkr&dSdSdS(NtULAWtALAWtNONE(R(R*R+(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt getcomptypeâs
cCs.|jtkrdS|jtkr&dSdSdS(NsCCITT G.711 u-lawsCCITT G.711 A-lawsnot compressed(R(R*R+(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt getcompnameês
cCs:|jƒ|jƒ|jƒ|jƒ|jƒ|jƒfS(N(R8R9R:R;R?R@(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt    getparamsòscCsdS(N(tNone(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt
getmarkers÷scCs td‚dS(Nsno marks(R(Rtid((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pytgetmarkúscCsˆ|jtkr„|tkr-|jjƒ}n |jj||j|jƒ}|jtkr€ddl}|j    ||j
ƒ}n|SdS(Niÿÿÿÿ( R(R)R'RRR-R3R*taudiooptulaw2linR,RB(RtnframesRRF((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt
readframesýs   cCs d|_|jj|jƒdS(Ni(R#RtseekR%(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pytrewind    s    cCs|jS(N(R#(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyttell scCsU|dks||jƒkr*td‚n|jj||j|jƒ||_dS(Nisposition not in range(R;RRRJR-R%R#(Rtpos((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pytsetposs cCs d|_dS(N(RBR(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyR s(RRRR!RR7R8R9R:R;R?R@RARCRERIRKRLRNR (((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/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(cCsJt|ƒtdƒkr9ddl}|j|dƒ}n|j|ƒdS(NRiÿÿÿÿtwb(RRRR(RRR((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyRs cCs|jr|jƒndS(N(RR (R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/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((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/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(RRRR3(Rt    nchannels((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt setnchannels2s
       cCs|jstd‚n|jS(Nsnumber of channels not set(R3R(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyR89s     cCs:|jrtd‚n|dkr-td‚n||_dS(Ns0cannot change parameters after starting to writeiiisbad sample width(iii(RRRR,(Rt    sampwidth((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt setsampwidth>s
       cCs|jstd‚n|jS(Nssample width not specified(R2RR,(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyR9Es     cCs"|jrtd‚n||_dS(Ns0cannot change parameters after starting to write(RRRR2(Rt    framerate((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt setframerateJs     cCs|jstd‚n|jS(Nsframe rate not set(R2R(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyR:Os     cCs:|jrtd‚n|dkr-td‚n||_dS(Ns0cannot change parameters after starting to writeis# of frames cannot be negative(RRRRQ(RRH((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt
setnframesTs
       cCs|jS(N(RR(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyR;[scCs%|dkr||_n    td‚dS(NR>R<sunknown compression type(sNONEsULAW(RUR(RRtname((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt setcomptype^s  cCs|jS(N(RU(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyR?dscCs.|jdkrdS|jdkr&dSdSdS(NR<sCCITT G.711 u-lawR=sCCITT G.711 A-lawsnot compressed(RU(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyR@gs
cCs`|\}}}}}}|j|ƒ|j|ƒ|j|ƒ|j|ƒ|j||ƒdS(N(RWRYR[R\R^(RtparamsRVRXRZRHtcomptypetcompname((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt    setparamsos     cCs:|jƒ|jƒ|jƒ|jƒ|jƒ|jƒfS(N(R8R9R:R;R?R@(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyRAwscCs|jS(N(RR(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyRL|scCsŠ|jƒt|ƒ|j}|jdkrPddl}|j||jƒ}n|jj|ƒ|j    ||_    |j
t|ƒ|_
dS(NR<iÿÿÿÿ( t_ensure_header_writtenR5R-RURFtlin2ulawR,RRRRRS(RRRHRF((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pytwriteframesraws
 cCsB|j|ƒ|j|jks1|j|jkr>|jƒndS(N(ReRRRQRTRSt _patchheader(RR((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt writeframes‰s cCsU|jƒ|j|jks.|j|jkr;|jƒn|jjƒd|_dS(N(    RcRRRQRTRSRfRtflushRB(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/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(RRR3RR,R2t _write_header(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyRc›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}t    |j
|ƒ||_t    |j
|ƒt    |j
|jƒt    |j
|jƒ|j
j|j ƒ|j
jd    |t |j ƒd
ƒdS( NR>iiisinternal errorR<iiR"iiøÿÿÿ(RUR,R.R-R/R1RR*R3RRR$R5R4RQR'RTR2R(Rtencodingt header_sizetlength((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyRi¥s<                 cCsF|jjdƒt|j|jƒ|j|_|jjddƒdS(Niii(RRJRRSRT(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyRfÈs (RRRR!RRWR8RYR9R[R:R\R;R^R?R@RbRARLReRgR RcRiRf(((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyROs.                                                                        
           
   #cCsi|dkr0t|dƒr'|j}q0d}n|dkrFt|ƒS|dkr\t|ƒStd‚dS(    NtmodeRtrtwRPs$mode must be 'r', 'rb', 'w', or 'wb'(Rnsrb(Roswb(RBthasattrRmRROR(RRm((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/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    ExceptionRR RRRORBRtopenfp(((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/sunau.pyt<module>hs6                    µ