HEX

Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit - prohibited by configuration in /home/u547966/brikov.ru/www/wp-content/plugins/admin-menu-editor/menu-editor.php on line 745
Server: Apache
System: Linux 4.19.0-0.bpo.9-amd64 x86_64 at red40
User: u547966 (5490)
PHP: 5.3.29-mh2
Disabled: syslog, dl, popen, proc_open, proc_nice, proc_get_status, proc_close, proc_terminate, posix_mkfifo, chown, chgrp, accelerator_reset, opcache_reset, accelerator_get_status, opcache_get_status, pcntl_alarm, pcntl_fork, pcntl_waitpid, pcntl_wait, pcntl_wifexited, pcntl_wifstopped, pcntl_wifsignaled, pcntl_wifcontinued, pcntl_wexitstatus, pcntl_wtermsig, pcntl_wstopsig, pcntl_signal, pcntl_signal_dispatch, pcntl_get_last_error, pcntl_strerror, pcntl_sigprocmask, pcntl_sigwaitinfo, pcntl_sigtimedwait, pcntl_exec, pcntl_getpriority, pcntl_setpriority
Upload Files
File: //usr/lib/python3.5/__pycache__/wave.cpython-35.pyc


FaE@sdZddlZdddgZGdddeZdZdZddlZddlZddl	Z	ddl
mZddlm
Z
e
d
dZGdddZGdddZdddZeZdS)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 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(b'') or
close() to patch up the sizes in the header.
The close() method is called automatically when the class instance
is destroyed.
NopenopenfpErrorc@seZdZdS)rN)__name__
__module____qualname__rr/usr/lib/python3.5/wave.pyrNsbhi)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)-	Wave_readaPVariables 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
    cCscd|_d|_t|dd|_|jjdkrHtd|jjddkrltdd|_d|_xd|_	yt|jdd}Wnt
k
rPYnX|j}|d	kr|j|d|_nG|d
kr1|jstd||_|j|j
|_d|_	P|jqW|jsS|jr_tddS)
NrZ	bigendiansRIFFz file does not start with RIFF idsWAVEznot a WAVE filer
sfmt sdatazdata chunk before fmt chunkz#fmt chunk and/or data chunk missing)_convert	_soundposr_fileZgetnamerreadZ_fmt_chunk_read_data_chunk_data_seek_neededEOFError_read_fmt_chunkZ	chunksize
_framesize_nframesskip)selffilechunkZ	chunknamerrr	initfp}s:					

			zWave_read.initfpc	Csid|_t|tr3tj|d}||_y|j|Wn|jr]|jYnXdS)Nrb)_i_opened_the_file
isinstancestrbuiltinsrr!close)rfrrr	__init__s			
zWave_read.__init__cCs|jdS)N)r')rrrr	__del__szWave_read.__del__cCs|S)Nr)rrrr		__enter__szWave_read.__enter__cGs|jdS)N)r')rargsrrr	__exit__szWave_read.__exit__cCs|jS)N)r)rrrr	getfpszWave_read.getfpcCsd|_d|_dS)Nr
r)rr)rrrr	rewinds	zWave_read.rewindcCs/d|_|j}|r+d|_|jdS)N)rr#r')rrrrr	r's
			zWave_read.closecCs|jS)N)r)rrrr	tellszWave_read.tellcCs|jS)N)
_nchannels)rrrr	getnchannelsszWave_read.getnchannelscCs|jS)N)r)rrrr	
getnframesszWave_read.getnframescCs|jS)N)
_sampwidth)rrrr	getsampwidthszWave_read.getsampwidthcCs|jS)N)
_framerate)rrrr	getframerateszWave_read.getframeratecCs|jS)N)	_comptype)rrrr	getcomptypeszWave_read.getcomptypecCs|jS)N)	_compname)rrrr	getcompnameszWave_read.getcompnamecCs=t|j|j|j|j|j|jS)N)rr2r5r7r3r9r;)rrrr		getparamsszWave_read.getparamscCsdS)Nr)rrrr	
getmarkersszWave_read.getmarkerscCstddS)Nzno marks)r)ridrrr	getmarkszWave_read.getmarkcCs=|dks||jkr'td||_d|_dS)Nrzposition not in ranger
)rrrr)rposrrr	setposs	zWave_read.setposcCs|jrN|jjdd|j|j}|rE|jj|dd|_|dkr^dS|jj||j}|jdkrtjdkrt	j
||j}|jr|r|j|}|jt||j
|j|_|S)Nrr
big)rrseekrrrr4sys	byteorderaudioopbyteswaprlenr1)rnframesr@datarrr	
readframess		$zWave_read.readframescCstjd|jd\}|_|_}}|tkrotjd|jdd}|dd|_ntd|f|j|j|_d	|_	d
|_
dS)Nz<HHLLHz<Hrzunknown format: %rNONEznot compressed)structZunpack_fromrr1r6WAVE_FORMAT_PCMr4rrr8r:)rr Z
wFormatTagZdwAvgBytesPerSecZwBlockAlign	sampwidthrrr	rs0	zWave_read._read_fmt_chunkN)rrr__doc__r!r)r*r+r-r.r/r'r0r2r3r5r7r9r;r<r=r?rArLrrrrr	r^s,
rc@sfeZdZdZddZddZddZdd	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);
Wave_writeaVariables 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
    c	Csid|_t|tr3tj|d}||_y|j|Wn|jr]|jYnXdS)Nwb)r#r$r%r&rr!r')rr(rrr	r)#s			
zWave_write.__init__cCs^||_d|_d|_d|_d|_d|_d|_d|_d|_d|_	dS)NrF)
rrr1r4r6r_nframeswritten_datawritten_datalength_headerwritten)rrrrr	r!/s									zWave_write.initfpcCs|jdS)N)r')rrrr	r*;szWave_write.__del__cCs|S)Nr)rrrr	r+>szWave_write.__enter__cGs|jdS)N)r')rr,rrr	r-AszWave_write.__exit__cCs:|jrtd|dkr-td||_dS)Nz0cannot change parameters after starting to writer
zbad # of channels)rYrr1)r	nchannelsrrr	setnchannelsGs
	zWave_write.setnchannelscCs|jstd|jS)Nznumber of channels not set)r1r)rrrr	r2Ns	zWave_write.getnchannelscCsF|jrtd|dks-|dkr9td||_dS)Nz0cannot change parameters after starting to writer
rzbad sample width)rYrr4)rrTrrr	setsampwidthSs
	zWave_write.setsampwidthcCs|jstd|jS)Nzsample width not set)r4r)rrrr	r5Zs	zWave_write.getsampwidthcCsF|jrtd|dkr-tdtt||_dS)Nz0cannot change parameters after starting to writerzbad frame rate)rYrintroundr6)r	frameraterrr	setframerate_s
	zWave_write.setframeratecCs|jstd|jS)Nzframe rate not set)r6r)rrrr	r7fs	zWave_write.getframeratecCs"|jrtd||_dS)Nz0cannot change parameters after starting to write)rYrr)rrJrrr	
setnframesks	zWave_write.setnframescCs|jS)N)rX)rrrr	r3pszWave_write.getnframescCsC|jrtd|dkr-td||_||_dS)Nz0cannot change parameters after starting to writerQzunsupported compression type)rQ)rYrr8r:)rcomptypecompnamerrr	setcomptypess		zWave_write.setcomptypecCs|jS)N)r8)rrrr	r9{szWave_write.getcomptypecCs|jS)N)r:)rrrr	r;~szWave_write.getcompnamecCsu|\}}}}}}|jr-td|j||j||j||j||j||dS)Nz0cannot change parameters after starting to write)rYrr]r^rbrcrf)rZparamsr\rTrarJrdrerrr		setparamss	



zWave_write.setparamscCsU|js|js|jr*tdt|j|j|j|j|j|jS)Nznot all parameters set)r1r4r6rrrr8r:)rrrr	r<szWave_write.getparamscCstddS)Nzsetmark() not supported)r)rr>r@namerrr	setmarkszWave_write.setmarkcCstddS)Nzno marks)r)rr>rrr	r?szWave_write.getmarkcCsdS)Nr)rrrr	r=szWave_write.getmarkerscCs|jS)N)rX)rrrr	r0szWave_write.tellcCst|ttfs*t|jd}|jt|t||j|j}|j	ro|j	|}|jdkrt
jdkrtj
||j}|jj||jt|7_|j||_dS)NBr
rC)r$bytes	bytearray
memoryviewcast_ensure_header_writtenrIr4r1rrErFrGrHrwriterYrX)rrKrJrrr	writeframesraws	zWave_write.writeframesrawcCs-|j||j|jkr)|jdS)N)rqrZrY_patchheader)rrKrrr	writeframess
zWave_write.writeframescCsvzC|jrB|jd|j|jkr5|j|jjWdd|_|j}|rqd|_|jXdS)Nr)rrorZrYrrflushr#r')rrrrr	r's	

			zWave_write.closecCsY|jsU|jstd|js3td|jsHtd|j|dS)Nz# channels not specifiedzsample width not specifiedzsampling rate not specified)r[r1rr4r6
_write_header)rZdatasizerrr	ros				z!Wave_write._ensure_header_writtencCsJ|jst|jjd|js@||j|j|_|j|j|j|_y|jj|_	Wn!t
tfk
rd|_	YnX|jjtj
dd|jdddt|j|j|j|j|j|j|j|jdd|j	dk	r|jj|_|jjtj
d	|jd
|_dS)NsRIFFz<L4s4sLHHLLHH4s$sWAVEsfmt rPsdataz<LT)r[AssertionErrorrrprr1r4rZr0_form_length_posAttributeErrorOSErrorrRpackrSr6_data_length_pos)rZ
initlengthrrr	rus&	
zWave_write._write_headercCs|jst|j|jkr%dS|jj}|jj|jd|jjt	j
dd|j|jj|jd|jjt	j
d|j|jj|d|j|_dS)Nrz<Lrv)r[rxrYrZrr0rDryrprRr|r})rZcurposrrr	rrs#zWave_write._patchheaderN) rrrrUr)r!r*r+r-r]r2r^r5rbr7rcr3rfr9r;rgr<rir?r=r0rqrsr'rorurrrrrr	rV	s:


rVcCsi|dkr-t|dr'|j}nd}|dkrCt|S|dkrYt|StddS)	Nmoder"rwrWz$mode must be 'r', 'rb', 'w', or 'wb')rr")rrW)hasattrr~rrVr)r(r~rrr	rs

)NrrNr
)rUr&__all__	ExceptionrrSZ_array_fmtsrGrRrEr rcollectionsrrrrVrrrrrr	<module>Hs