%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /usr/local/lib/python3.8/__pycache__/
Upload File :
Create Path :
Current File : //usr/local/lib/python3.8/__pycache__/wave.cpython-38.pyc

U

na6G@sdZddlZdddddgZGdddeZd	Zd
ZddlZddlZddl	Z	ddl
mZddlm
Z
ddlZe
d
dZGdddZGdddZdddZdddZdS)a%
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 namedtuple 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 patching 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(b'') or
close() to patch up the sizes in the header.
The close() method is called automatically when the class instance
is destroyed.
NopenopenfpError	Wave_read
Wave_writec@seZdZdS)rN)__name__
__module____qualname__r
r
 /usr/local/lib/python3.8/wave.pyrNs)NbhNi)Chunk)
namedtuple_wave_paramsz7nchannels sampwidth framerate nframes comptype compnamec@seZdZdZddZddZddZdd	Zd
dZdd
Z	ddZ
ddZddZddZ
ddZddZddZddZddZd d!Zd"d#Zd$d%Zd&d'Zd(d)Zd*d+Zd,S)-raPVariables 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
    cCsd|_d|_t|dd|_|jdkr0td|jddkrHtdd|_d|_d|_	zt|jdd}Wnt
k
rYqYnX|}|d	kr||d|_n2|d
kr|jstd||_|j|j
|_d|_	q|qT|jr|jstddS)
Nr)Z	bigendianRIFFz file does not start with RIFF idWAVEznot a WAVE filerfmt datazdata chunk before fmt chunkz#fmt chunk and/or data chunk missing)_convert	_soundposr_fileZgetnamerreadZ_fmt_chunk_read_data_chunk_data_seek_neededEOFError_read_fmt_chunk	chunksize
_framesize_nframesskip)selffilechunkZ	chunknamer
r
rinitfp~s8


zWave_read.initfpcCsRd|_t|tr"t|d}||_z||Wn|jrF|YnXdS)Nrb_i_opened_the_file
isinstancestrbuiltinsrr'closer$fr
r
r__init__s
zWave_read.__init__cCs|dSNr.r$r
r
r__del__szWave_read.__del__cCs|Sr2r
r4r
r
r	__enter__szWave_read.__enter__cGs|dSr2r3r$argsr
r
r__exit__szWave_read.__exit__cCs|jSr2)rr4r
r
rgetfpszWave_read.getfpcCsd|_d|_dS)Nrr)rrr4r
r
rrewindszWave_read.rewindcCs"d|_|j}|rd|_|dSr2)rr*r.r$r%r
r
rr.s
zWave_read.closecCs|jSr2)rr4r
r
rtellszWave_read.tellcCs|jSr2)
_nchannelsr4r
r
rgetnchannelsszWave_read.getnchannelscCs|jSr2)r"r4r
r
r
getnframesszWave_read.getnframescCs|jSr2)
_sampwidthr4r
r
rgetsampwidthszWave_read.getsampwidthcCs|jSr2)
_framerater4r
r
rgetframerateszWave_read.getframeratecCs|jSr2	_comptyper4r
r
rgetcomptypeszWave_read.getcomptypecCs|jSr2	_compnamer4r
r
rgetcompnameszWave_read.getcompnamecCs*t||||||Sr2)rr?rBrDr@rGrJr4r
r
r	getparamsszWave_read.getparamscCsdSr2r
r4r
r
r
getmarkersszWave_read.getmarkerscCstddSNzno marksrr$idr
r
rgetmarkszWave_read.getmarkcCs*|dks||jkrtd||_d|_dS)Nrzposition not in ranger)r"rrr)r$posr
r
rsetposszWave_read.setposcCs|jr8|jdd|j|j}|r2|j|dd|_|dkrDdS|j||j}|jdkrxtjdkrxt	
||j}|jr|r||}|jt||j
|j|_|S)Nrrbig)rrseekrr!rrAsys	byteorderaudioopbyteswaprlenr>)r$nframesrRdatar
r
r
readframess

zWave_read.readframescCsz$td|d\}|_|_}}Wntjk
r@tdYnX|tkrztd|dd}Wntjk
rtdYnX|dd|_|jst	dnt	d	|f|jst	d
|j|j|_
d|_d|_dS)
Nz<HHLLHz<Hrbad sample widthzunknown format: %rbad # of channelsNONEznot compressed)
structunpack_fromrr>rCerrorrWAVE_FORMAT_PCMrArr!rFrI)r$r&Z
wFormatTagZdwAvgBytesPerSecZwBlockAlign	sampwidthr
r
rrs$$
zWave_read._read_fmt_chunkN)rrr	__doc__r'r1r5r6r9r:r;r.r=r?r@rBrDrGrJrKrLrQrSr^rr
r
r
rr_s,
c@seZdZdZddZddZddZdd	Zd
dZdd
Z	ddZ
ddZddZddZ
ddZddZddZddZddZd d!Zd"d#Zd$d%Zd&d'Zd(d)Zd*d+Zd,d-Zd.d/Zd0d1Zd2d3Zd4d5Zd6d7Zd8d9Zd:S);raVariables 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|tr"t|d}||_z||Wn|jrF|YnXdS)Nwbr)r/r
r
rr1.s
zWave_write.__init__cCs@||_d|_d|_d|_d|_d|_d|_d|_d|_d|_	dS)NrF)
rrr>rArCr"_nframeswritten_datawritten_datalength_headerwrittenr<r
r
rr':szWave_write.initfpcCs|dSr2r3r4r
r
rr5FszWave_write.__del__cCs|Sr2r
r4r
r
rr6IszWave_write.__enter__cGs|dSr2r3r7r
r
rr9LszWave_write.__exit__cCs(|jrtd|dkrtd||_dS)N0cannot change parameters after starting to writerrd)rnrr>)r$	nchannelsr
r
rsetnchannelsRs
zWave_write.setnchannelscCs|jstd|jS)Nznumber of channels not set)r>rr4r
r
rr?YszWave_write.getnchannelscCs0|jrtd|dks|dkr&td||_dS)Nrqrrrc)rnrrA)r$rjr
r
rsetsampwidth^s
zWave_write.setsampwidthcCs|jstd|jS)Nzsample width not set)rArr4r
r
rrBeszWave_write.getsampwidthcCs0|jrtd|dkrtdtt||_dS)Nrqrzbad frame rate)rnrintroundrC)r$	framerater
r
rsetframeratejs
zWave_write.setframeratecCs|jstd|jS)Nzframe rate not set)rCrr4r
r
rrDqszWave_write.getframeratecCs|jrtd||_dSNrq)rnrr")r$r\r
r
r
setnframesvszWave_write.setnframescCs|jSr2rmr4r
r
rr@{szWave_write.getnframescCs.|jrtd|dkrtd||_||_dS)Nrq)rezunsupported compression type)rnrrFrI)r$comptypecompnamer
r
rsetcomptype~szWave_write.setcomptypecCs|jSr2rEr4r
r
rrGszWave_write.getcomptypecCs|jSr2rHr4r
r
rrJszWave_write.getcompnamecCsV|\}}}}}}|jrtd|||||||||||dSry)rnrrsrtrxrzr~)r$paramsrrrjrwr\r|r}r
r
r	setparamss



zWave_write.setparamscCs8|jr|jr|jstdt|j|j|j|j|j|jS)Nznot all parameters set)r>rArCrrr"rFrIr4r
r
rrKszWave_write.getparamscCstddS)Nzsetmark() not supportedrN)r$rPrRnamer
r
rsetmarkszWave_write.setmarkcCstddSrMrNrOr
r
rrQszWave_write.getmarkcCsdSr2r
r4r
r
rrLszWave_write.getmarkerscCs|jSr2r{r4r
r
rr=szWave_write.tellcCst|ttfst|d}|t|t||j|j}|j	rN|	|}|jdkrpt
jdkrpt
||j}|j||jt|7_|j||_dS)NBrrU)r+bytes	bytearray
memoryviewcast_ensure_header_writtenr[rAr>rrWrXrYrZrwriternrm)r$r]r\r
r
rwriteframesraws
zWave_write.writeframesrawcCs"|||j|jkr|dSr2)rrorn_patchheader)r$r]r
r
rwriteframess
zWave_write.writeframescCsXz2|jr0|d|j|jkr&||jW5d|_|j}|rRd|_|XdS)Nr)rr*r.rrornrflushr<r
r
rr.s
zWave_write.closecCs>|js:|jstd|js"td|js0td||dS)Nz# channels not specifiedzsample width not specifiedzsampling rate not specified)rpr>rrArC
_write_header)r$Zdatasizer
r
rrsz!Wave_write._ensure_header_writtencCs|jr
t|jd|js.||j|j|_|j|j|j|_z|j|_	Wnt
tfk
rpd|_	YnX|jt
dd|jdddt|j|j|j|j|j|j|j|jdd|j	dk	r|j|_|jt
d	|jd
|_dS)Nrz<L4s4sLHHLLHH4s$rrrbr<LT)rpAssertionErrorrrr"r>rAror=_form_length_posAttributeErrorOSErrorrfpackrirC_data_length_pos)r$Z
initlengthr
r
rrs4


zWave_write._write_headercCs|js
t|j|jkrdS|j}|j|jd|jt	
dd|j|j|jd|jt	
d|j|j|d|j|_dS)Nrrr)rprrnrorr=rVrrrfrr)r$Zcurposr
r
rrs

zWave_write._patchheaderN) rrr	rkr1r'r5r6r9rsr?rtrBrxrDrzr@r~rGrJrrKrrQrLr=rrr.rrrr
r
r
rrs:


cCsJ|dkrt|dr|j}nd}|dkr.t|S|dkr>t|StddS)Nmoder()rr()wrlz$mode must be 'r', 'rb', 'w', or 'wb')hasattrrrrrr0rr
r
rrs
cCstjdtddt||dS)NzBwave.openfp is deprecated since Python 3.7. Use wave.open instead.r`)
stacklevel)r)warningswarnDeprecationWarningrrr
r
rrs
)N)N)rkr-__all__	ExceptionrriZ_array_fmtsrYrfrWr&rcollectionsrrrrrrrr
r
r
r<module>s(I6d


Zerion Mini Shell 1.0