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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
M\¬Qc@sÂdZddlZdddgZdefd„ƒYZdZdZddlZej    d    dƒd krpdZ
nd Z
dd l m Z ddd„ƒYZ ddd„ƒYZdd„ZeZdS(s Stuff to parse WAVE files.
 
Usage.
 
Reading WAVE files:
      f = wave.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' for linear samples)
      getcompname()   -- returns human-readable version of
                         compression type ('not compressed' linear samples)
      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 WAVE files:
      f = wave.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.
iÿÿÿÿNtopentopenfptErrorcBseZRS((t__name__t
__module__(((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyRNsitbthtlti(tChunkt    Wave_readcBs¹eZdZd„Zd„Zd„Zd„Zd„Zd„Zd„Z    d„Z
d    „Z d
„Z d „Z d „Zd „Zd„Zd„Zd„Zd„Zd„Zd„ZRS(sPVariables used in this class:
 
    These variables are available to the user though appropriate
    methods of this class:
    _file -- the open file with methods read(), close(), and seek()
              set through the __init__() method
    _nchannels -- the number of audio channels
              available through the getnchannels() method
    _nframes -- the number of audio frames
              available through the getnframes() method
    _sampwidth -- the number of bytes per audio sample
              available through the getsampwidth() method
    _framerate -- the sampling frequency
              available through the getframerate() method
    _comptype -- the AIFF-C compression type ('NONE' if AIFF)
              available through the getcomptype() method
    _compname -- the human-readable AIFF-C compression type
              available through the getcomptype() method
    _soundpos -- the position in the audio stream
              available through the tell() method, set through the
              setpos() method
 
    These variables are used internally only:
    _fmt_chunk_read -- 1 iff the FMT chunk has been read
    _data_seek_needed -- 1 iff positioned correctly in audio
              file for readframes()
    _data_chunk -- instantiation of a chunk class for the DATA chunk
    _framesize -- size of one frame in the file
    cCsdd|_d|_t|ddƒ|_|jjƒdkrHtd‚n|jjdƒdkrltd‚nd|_d|_    x¿d|_
yt|jddƒ}Wnt k
r·PnX|jƒ}|d    kré|j |ƒd|_nJ|d
kr3|js
td ‚n||_    |j |j|_d|_
Pn|jƒq|j sT|j     r`td ‚ndS( Nit    bigendiantRIFFs file does not start with RIFF iditWAVEsnot a WAVE fileisfmt tdatasdata chunk before fmt chunks#fmt chunk and/or data chunk missing(tNonet_convertt    _soundposR    t_filetgetnameRtreadt_fmt_chunk_readt _data_chunkt_data_seek_neededtEOFErrort_read_fmt_chunkt    chunksizet
_framesizet_nframestskip(tselftfiletchunkt    chunkname((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pytinitfp}s:                                          cCsnd|_t|tƒr6tj|dƒ}||_ny|j|ƒWn |jrc|jƒn‚nXdS(Ntrb(Rt_i_opened_the_filet
isinstancet
basestringt __builtin__RR"tclose(Rtf((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt__init__œs          cCs|jƒdS(N(R((R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt__del__©scCs|jS(N(R(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pytgetfp®scCsd|_d|_dS(Nii(RR(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pytrewind±s    cCs/|jr"|jjƒd|_nd|_dS(N(R$R(RR(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR(µs      cCs|jS(N(R(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyttell»scCs|jS(N(t
_nchannels(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt getnchannels¾scCs|jS(N(R(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt
getnframesÁscCs|jS(N(t
_sampwidth(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt getsampwidthÄscCs|jS(N(t
_framerate(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt getframerateÇscCs|jS(N(t    _comptype(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt getcomptypeÊscCs|jS(N(t    _compname(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt getcompnameÍscCs:|jƒ|jƒ|jƒ|jƒ|jƒ|jƒfS(N(R0R3R5R1R7R9(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt    getparamsÐscCsdS(N(R(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt
getmarkersÕscCs td‚dS(Nsno marks(R(Rtid((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pytgetmarkØscCs=|dks||jkr'td‚n||_d|_dS(Nisposition not in rangei(RRRR(Rtpos((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pytsetposÛs     cCs°|jrT|jjddƒ|j|j}|rH|jj|dƒnd|_n|dkrddS|jdkrNtrNddl}|j}|jt|jƒ}||j    }||j|j
|j krè|j
|j |j}n|j |j j |ƒ|j ||j|_ |j }|j ||j|_ |jƒ|jƒ}n|jj||jƒ}|jrˆ|rˆ|j|ƒ}n|jt|ƒ|j    |j|_|S(Nitiiÿÿÿÿ(RRtseekRRR2t
big_endiantarrayt _array_fmtsR/Rt    size_readtfromfileRtbyteswapttostringRRtlen(RtnframesR>RCR Rtnitems((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt
readframesás4                
$cCs¨tjd|jdƒƒ\}|_|_}}|tkrotjd|jdƒƒd}|dd|_ntd|f‚|j|j|_d    |_    d
|_
dS( Ns<HHLLHis<Hiiiisunknown format: %rtNONEsnot compressed( tstructtunpackRR/R4tWAVE_FORMAT_PCMR2RRR6R8(RR t
wFormatTagtdwAvgBytesPerSect wBlockAlignt    sampwidth((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyRs0     (RRt__doc__R"R*R+R,R-R(R.R0R1R3R5R7R9R:R;R=R?RLR(((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR
^s(                                                                        &t
Wave_writecBsøeZdZd„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„Zd„Zd„Zd„Zd„ZRS(s¿Variables used in this class:
 
    These variables are user settable through appropriate methods
    of this class:
    _file -- the open file with methods write(), close(), tell(), seek()
              set through the __init__() method
    _comptype -- the AIFF-C compression type ('NONE' in AIFF)
              set through the setcomptype() or setparams() method
    _compname -- the human-readable AIFF-C compression type
              set through the setcomptype() or setparams() method
    _nchannels -- the number of audio channels
              set through the setnchannels() or setparams() method
    _sampwidth -- the number of bytes per audio sample
              set through the setsampwidth() or setparams() method
    _framerate -- the sampling frequency
              set through the setframerate() or setparams() method
    _nframes -- the number of audio frames written to the header
              set through the setnframes() or setparams() method
 
    These variables are used internally only:
    _datalength -- the size of the audio samples written to the header
    _nframeswritten -- the number of frames actually written
    _datawritten -- the size of the audio samples actually written
    cCsnd|_t|tƒr6tj|dƒ}||_ny|j|ƒWn |jrc|jƒn‚nXdS(Ntwb(RR$R%R&R'RR"R((RR)((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR*,s          cCs^||_d|_d|_d|_d|_d|_d|_d|_d|_    t
|_ dS(Ni( RRRR/R2R4Rt_nframeswrittent _datawrittent _datalengthtFalset_headerwritten(RR((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR"8s                                    cCs|jƒdS(N(R((R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR+DscCs:|jrtd‚n|dkr-td‚n||_dS(Ns0cannot change parameters after starting to writeisbad # of channels(RYRR/(Rt    nchannels((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt setnchannelsJs
       cCs|jstd‚n|jS(Nsnumber of channels not set(R/R(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR0Qs     cCsF|jrtd‚n|dks-|dkr9td‚n||_dS(Ns0cannot change parameters after starting to writeiisbad sample width(RYRR2(RRT((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt setsampwidthVs
      cCs|jstd‚n|jS(Nssample width not set(R2R(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR3]s     cCs:|jrtd‚n|dkr-td‚n||_dS(Ns0cannot change parameters after starting to writeisbad frame rate(RYRR4(Rt    framerate((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt setframeratebs
       cCs|jstd‚n|jS(Nsframe rate not set(R4R(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR5is     cCs"|jrtd‚n||_dS(Ns0cannot change parameters after starting to write(RYRR(RRJ((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt
setnframesns     cCs|jS(N(RX(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR1sscCsC|jrtd‚n|dkr-td‚n||_||_dS(Ns0cannot change parameters after starting to writeRMsunsupported compression type(sNONE(RYRR6R8(Rtcomptypetcompname((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt setcomptypevs            cCs|jS(N(R6(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR7~scCs|jS(N(R8(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR9scCsu|\}}}}}}|jr-td‚n|j|ƒ|j|ƒ|j|ƒ|j|ƒ|j||ƒdS(Ns0cannot change parameters after starting to write(RYRR^R_RaRbRe(RtparamsR]RTR`RJRcRd((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt    setparams„s         cCsR|j s|j s|j r*td‚n|j|j|j|j|j|jfS(Nsnot all parameters set(R/R2R4RRR6R8(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR:Žs cCs td‚dS(Nssetmark() not supported(R(RR<R>tname((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pytsetmark”scCs td‚dS(Nsno marks(R(RR<((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR=—scCsdS(N(R(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR;šscCs|jS(N(RX(R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR.scCsö|jt|ƒƒt|ƒ|j|j}|jrH|j|ƒ}n|jdkr¼tr¼ddl}|jt|j|ƒ}|jƒ|j    |j
ƒ|j t|ƒ|j|_ n&|j
j |ƒ|j t|ƒ|_ |j ||_ dS(Niiÿÿÿÿ(t_ensure_header_writtenRIR2R/RRBRCRDRGttofileRRYtwriteRX(RRRJRC((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pytwriteframesraw s     
 cCs0|j|ƒ|j|jkr,|jƒndS(N(RmRZRYt _patchheader(RR((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt writeframes°s cCst|jrN|jdƒ|j|jkr5|jƒn|jjƒd|_n|jrp|jjƒd|_ndS(Ni(    RRjRZRYRntflushRR$R((R((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyR(µs             cCs\|jsX|jstd‚n|js3td‚n|jsHtd‚n|j|ƒndS(Ns# channels not specifiedssample width not specifiedssampling rate not specified(R\R/RR2R4t _write_header(Rtdatasize((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyRjÄs                   cCs|j st‚|jjdƒ|jsC||j|j|_n|j|j|j|_|jjƒ|_    |jjt
j dd|jdddt |j|j |j|j |j|j|j|jddƒ ƒ|jjƒ|_|jjt
j d    |jƒƒt|_dS(
NR s<L4s4sLHHLLHH4si$R sfmt iiRs<L(R\tAssertionErrorRRlRR/R2RZR.t_form_length_posRNtpackRPR4t_data_length_postTrue(Rt
initlength((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyRqÎs     cCsÅ|jst‚|j|jkr%dS|jjƒ}|jj|jdƒ|jjt    j
dd|jƒƒ|jj|j dƒ|jjt    j
d|jƒƒ|jj|dƒ|j|_dS(Nis<Li$( R\RsRYRZRR.RARtRlRNRuRv(Rtcurpos((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyRnßs#(RRRUR*R"R+R^R0R_R3RaR5RbR1ReR7R9RgR:RiR=R;R.RmRoR(RjRqRn(((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyRVs6                                                            
                                   
   cCsi|dkr0t|dƒr'|j}q0d}n|dkrFt|ƒS|dkr\t|ƒStd‚dS(    NtmodeR#trtwRWs$mode must be 'r', 'rb', 'w', or 'wb'(R{srb(R|swb(RthasattrRzR
RVR(R)Rz((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyRës       
 
(NRRNR(((RUR't__all__t    ExceptionRRPRRDRNRuRBR R    R
RVRR(((sL/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/wave.pyt<module>Hs      ´Ù