config root man

Current Path : /usr/local/lib/python2.5/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/local/lib/python2.5/wave.pyc

³ò
h”Rc@sÄdZddkZdddgZdefd„ƒYZdZdZddkZei	d	dƒdjo
dZ
ndZ
dd
kl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__(((s /usr/local/lib/python2.5/wave.pyRNsitbthtlti(tChunkt	Wave_readcBs¹eZdZd„Zd„Zd„Zd„Zd„Zd„Zd„Z	d„Z
d	„Zd
„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
    cCssd|_d|_t|ddƒ|_|iiƒdjo
td‚n|iidƒdjo
td‚nd|_d|_	xÇd|_
yt|iddƒ}Wntj
oPnX|iƒ}|d	jo|i|ƒd|_nO|d
joA|ip
td‚n||_	|i
|i|_d|_
Pn|iƒq…|ip|i	o
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((s /usr/local/lib/python2.5/wave.pytinitfp}s:		

			





		
cCsrd|_t|tƒoti|dƒ}||_ny|i|ƒWn"|io|iƒn‚nXdS(Ntrb(Rt_i_opened_the_filet
isinstancet
basestringt__builtin__RR"tclose(Rtf((s /usr/local/lib/python2.5/wave.pyt__init__œs	

cCs|iƒdS(N(R((R((s /usr/local/lib/python2.5/wave.pyt__del__©scCs|iS(N(R(R((s /usr/local/lib/python2.5/wave.pytgetfp®scCsd|_d|_dS(Nii(RR(R((s /usr/local/lib/python2.5/wave.pytrewind±s	cCs1|io|iiƒd|_nd|_dS(N(R$R(RR(R((s /usr/local/lib/python2.5/wave.pyR(µs


cCs|iS(N(R(R((s /usr/local/lib/python2.5/wave.pyttell»scCs|iS(N(t
_nchannels(R((s /usr/local/lib/python2.5/wave.pytgetnchannels¾scCs|iS(N(R(R((s /usr/local/lib/python2.5/wave.pyt
getnframesÁscCs|iS(N(t
_sampwidth(R((s /usr/local/lib/python2.5/wave.pytgetsampwidthÄscCs|iS(N(t
_framerate(R((s /usr/local/lib/python2.5/wave.pytgetframerateÇscCs|iS(N(t	_comptype(R((s /usr/local/lib/python2.5/wave.pytgetcomptypeÊscCs|iS(N(t	_compname(R((s /usr/local/lib/python2.5/wave.pytgetcompnameÍscCs:|iƒ|iƒ|iƒ|iƒ|iƒ|iƒfS(N(R0R3R5R1R7R9(R((s /usr/local/lib/python2.5/wave.pyt	getparamsÐscCsdS(N(R(R((s /usr/local/lib/python2.5/wave.pyt
getmarkersÕscCs
td‚dS(Nsno marks(R(Rtid((s /usr/local/lib/python2.5/wave.pytgetmarkØscCs@|djp||ijo
td‚n||_d|_dS(Nisposition not in rangei(RRRR(Rtpos((s /usr/local/lib/python2.5/wave.pytsetposÛs
	cCsÁ|ioN|iiddƒ|i|i}|o|ii|dƒnd|_n|djodSn|idjoßtoØddk}|i}|it|iƒ}||i	}||i|i
|ijo|i
|i|i}n|i|i
i
|ƒ|i||i|_|i
}|i||i|_|iƒ|iƒ}n|ii||iƒ}|io|o|i|ƒ}n|it|ƒ|i	|i|_|S(Nitiiÿÿÿÿ(RRtseekRRR2t
big_endiantarrayt_array_fmtsR/Rt	size_readtfromfileRtbyteswapttostringRRtlen(RtnframesR>RCR Rtnitems((s /usr/local/lib/python2.5/wave.pyt
readframesás4


	
	
$cCsªtid|idƒƒ\}|_|_}}|tjo4tid|idƒƒd}|dd|_ntd|f‚|i|i|_d	|_	d
|_
dS(Ns<hhllhis<hiiiisunknown format: %rtNONEsnot compressed(tstructtunpackRR/R4tWAVE_FORMAT_PCMR2RRR6R8(RR t
wFormatTagtdwAvgBytesPerSectwBlockAlignt	sampwidth((s /usr/local/lib/python2.5/wave.pyRs0
	(RRt__doc__R"R*R+R,R-R(R.R0R1R3R5R7R9R:R;R=R?RLR(((s /usr/local/lib/python2.5/wave.pyR
^s(		
																&t
Wave_writecBsøeZdZd„Zd„Zd„Zd„Zd„Zd„Zd„Z	d„Z
d	„Zd
„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
    cCsrd|_t|tƒoti|dƒ}||_ny|i|ƒWn"|io|iƒn‚nXdS(Ntwb(RR$R%R&R'RR"R((RR)((s /usr/local/lib/python2.5/wave.pyR*,s	

cCsU||_d|_d|_d|_d|_d|_d|_d|_d|_	dS(Ni(
RRRR/R2R4Rt_nframeswrittent_datawrittent_datalength(RR((s /usr/local/lib/python2.5/wave.pyR"8s								cCs|iƒdS(N(R((R((s /usr/local/lib/python2.5/wave.pyR+CscCs>|io
td‚n|djo
td‚n||_dS(Ns0cannot change parameters after starting to writeisbad # of channels(RYRR/(Rt	nchannels((s /usr/local/lib/python2.5/wave.pytsetnchannelsIs




cCs|ip
td‚n|iS(Nsnumber of channels not set(R/R(R((s /usr/local/lib/python2.5/wave.pyR0Ps

cCsK|io
td‚n|djp
|djo
td‚n||_dS(Ns0cannot change parameters after starting to writeiisbad sample width(RYRR2(RRT((s /usr/local/lib/python2.5/wave.pytsetsampwidthUs



cCs|ip
td‚n|iS(Nssample width not set(R2R(R((s /usr/local/lib/python2.5/wave.pyR3\s

cCs>|io
td‚n|djo
td‚n||_dS(Ns0cannot change parameters after starting to writeisbad frame rate(RYRR4(Rt	framerate((s /usr/local/lib/python2.5/wave.pytsetframerateas




cCs|ip
td‚n|iS(Nsframe rate not set(R4R(R((s /usr/local/lib/python2.5/wave.pyR5hs

cCs$|io
td‚n||_dS(Ns0cannot change parameters after starting to write(RYRR(RRJ((s /usr/local/lib/python2.5/wave.pyt
setnframesms

cCs|iS(N(RX(R((s /usr/local/lib/python2.5/wave.pyR1rscCsG|io
td‚n|djo
td‚n||_||_dS(Ns0cannot change parameters after starting to writeRMsunsupported compression type(sNONE(RYRR6R8(Rtcomptypetcompname((s /usr/local/lib/python2.5/wave.pytsetcomptypeus



	cCs|iS(N(R6(R((s /usr/local/lib/python2.5/wave.pyR7}scCs|iS(N(R8(R((s /usr/local/lib/python2.5/wave.pyR9€scCsw|\}}}}}}|io
td‚n|i|ƒ|i|ƒ|i|ƒ|i|ƒ|i||ƒdS(Ns0cannot change parameters after starting to write(RYRR\R]R_R`Rc(Rt.1R[RTR^RJRaRb((s /usr/local/lib/python2.5/wave.pyt	setparamsƒs





cCsV|ip|ip|io
td‚n|i|i|i|i|i|ifS(Nsnot all parameters set(R/R2R4RRR6R8(R((s /usr/local/lib/python2.5/wave.pyR:Œs!
cCs
td‚dS(Nssetmark() not supported(R(RR<R>tname((s /usr/local/lib/python2.5/wave.pytsetmark’scCs
td‚dS(Nsno marks(R(RR<((s /usr/local/lib/python2.5/wave.pyR=•scCsdS(N(R(R((s /usr/local/lib/python2.5/wave.pyR;˜scCs|iS(N(RX(R((s /usr/local/lib/python2.5/wave.pyR.›scCsû|it|ƒƒt|ƒ|i|i}|io|i|ƒ}n|idjogto`ddk}|it|i|ƒ}|iƒ|i	|i
ƒ|it|ƒ|i|_n'|i
i|ƒ|it|ƒ|_|i
||_
dS(Niiÿÿÿÿ(t_ensure_header_writtenRIR2R/RRBRCRDRGttofileRRYtwriteRX(RRRJRC((s /usr/local/lib/python2.5/wave.pytwriteframesrawžs

!cCs2|i|ƒ|i|ijo|iƒndS(N(RkRZRYt_patchheader(RR((s /usr/local/lib/python2.5/wave.pytwriteframes®s
cCsz|ioH|idƒ|i|ijo|iƒn|iiƒd|_n|io|iiƒd|_ndS(Ni(	RRhRZRYRltflushRR$R((R((s /usr/local/lib/python2.5/wave.pyR(³s





cCsd|ipV|ip
td‚n|ip
td‚n|ip
td‚n|i|ƒndS(Ns# channels not specifiedssample width not specifiedssampling rate not specified(RYR/RR2R4t
_write_header(Rtdatasize((s /usr/local/lib/python2.5/wave.pyRhÂs






cCsÿ|iidƒ|ip||i|i|_n|i|i|i|_|iiƒ|_|iiti	dd|idddt
|i|i|i|i|i|i|i|iddƒƒ|iiƒ|_|iiti	d	|iƒƒdS(
NRs<l4s4slhhllhh4si$R
sfmt iiRs<l(
RRjRR/R2RZR.t_form_length_posRNtpackRPR4t_data_length_pos(Rt
initlength((s /usr/local/lib/python2.5/wave.pyRoÌs

cCs»|i|ijodSn|iiƒ}|ii|idƒ|iitidd|iƒƒ|ii|i	dƒ|iitid|iƒƒ|ii|dƒ|i|_dS(Nis<li$(
RYRZRR.RARqRjRNRrRs(Rtcurpos((s /usr/local/lib/python2.5/wave.pyRlÛs#(RRRUR*R"R+R\R0R]R3R_R5R`R1RcR7R9ReR:RgR=R;R.RkRmR(RhRoRl(((s /usr/local/lib/python2.5/wave.pyRVs6																									
	cCsw|djo't|dƒo
|i}q4d}n|djot|ƒSn%|djot|ƒSn
td‚dS(	NtmodeR#trtwRWs$mode must be 'r', 'rb', 'w', or 'wb'(Rwsrb(Rxswb(RthasattrRvR
RVR(R)Rv((s /usr/local/lib/python2.5/wave.pyRæs




(NRRNR(((RUR't__all__t	ExceptionRRPRRDRNRrRBR R	R
RVRR(((s /usr/local/lib/python2.5/wave.pys<module>Hs
´Ô

Man Man