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__/sunau.cpython-35.pyc


FaF@sdZddlmZeddZdZdZdZdZd	Zd
Z	dZ
dZd
ZdZ
dZdZdZdZeeeee	egZGdddeZddZddZGdddZGdddZdddZeZdS) aStuff 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 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 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(b'') or
close() to patch up the sizes in the header.
The close() method is called automatically when the class instance
is destroyed.
)
namedtuple
_sunau_paramsz7nchannels sampwidth framerate nframes comptype compnameidns.lc@seZdZdS)ErrorN)__name__
__module____qualname__rr/usr/lib/python3.5/sunau.pyrsrcCsPd}xCtdD]5}|jd}|s4t|dt|}qW|S)Nrrr)rangereadEOFErrorord)filexiZbyterrr	_read_u32srcCseg}xEtdD]7}t|d\}}|jdt||}qW|jt|dS)Nrrr)rdivmodinsertintwritebytes)rrdatardmrrr
_write_u32s
r'c@seZdZddZddZddZddZd	d
ZddZd
dZ	ddZ
ddZddZddZ
ddZddZddZddZdd Zd!d"Zd#d$Zd%d&Zd'd(Zd)S)*Au_readcCs\t|tdkrBddl}|j|d}d|_n	d|_|j|dS)NrrbTF)typebuiltinsopen_openedinitfp)selffr,rrr__init__s	zAu_read.__init__cCs|jr|jdS)N)_fileclose)r0rrr__del__s	zAu_read.__del__cCs|S)Nr)r0rrr	__enter__szAu_read.__enter__cGs|jdS)N)r4)r0argsrrr__exit__szAu_read.__exit__cCso||_d|_tt|}|tkr<tdtt||_|jdkrltd|jdkrtdt||_|jtkrt|j|_tt||_	|j	t
krtd|j	ttfkrd|_
d	|_n|j	tkr3d	|_|_
nr|j	tkrUd|_|_
nP|j	tkrwd
|_|_
n.|j	tkrd|_|_
ntdtt||_tt||_|j|j|_|jdkr+|j|jd|_|jjd
\|_}}n	d|_y|j|_Wn!ttfk
rjd|_YnXdS)Nrzbad magic numberrzheader size too smalldzheader size ridiculously largezencoding not (yet) supportedrrrrzunknown encodings)r3	_soundposr!rAUDIO_FILE_MAGICrZ	_hdr_size
_data_sizeAUDIO_UNKNOWN_SIZE	_encoding_simple_encodingsAUDIO_FILE_ENCODING_MULAW_8AUDIO_FILE_ENCODING_ALAW_8
_sampwidth
_framesizeAUDIO_FILE_ENCODING_LINEAR_8AUDIO_FILE_ENCODING_LINEAR_16AUDIO_FILE_ENCODING_LINEAR_24AUDIO_FILE_ENCODING_LINEAR_32
_framerate
_nchannelsr_info	partitiontell	_data_posAttributeErrorOSError)r0rmagic_rrrr/sP				!	zAu_read.initfpcCs|jS)N)r3)r0rrrgetfpsz
Au_read.getfpcCs|jS)N)rJ)r0rrrgetnchannelsszAu_read.getnchannelscCs|jS)N)rC)r0rrrgetsampwidthszAu_read.getsampwidthcCs|jS)N)rI)r0rrrgetframerateszAu_read.getframeratecCs4|jtkrtS|jtkr0|j|jSdS)Nr)r=r>r?r@rD)r0rrr
getnframess
zAu_read.getnframescCs.|jtkrdS|jtkr&dSdSdS)NULAWALAWNONE)r?rArB)r0rrrgetcomptypes
zAu_read.getcomptypecCs.|jtkrdS|jtkr&dSdSdS)NzCCITT G.711 u-lawzCCITT G.711 A-lawznot compressed)r?rArB)r0rrrgetcompnames
zAu_read.getcompnamecCs=t|j|j|j|j|j|jS)N)rrTrUrVrWr[r\)r0rrr	getparamsszAu_read.getparamscCsdS)Nr)r0rrr
getmarkersszAu_read.getmarkerscCstddS)Nzno marks)r)r0idrrrgetmarkszAu_read.getmarkcCs|jtkr|tkr-|jj}n|jj||j}|jt||j7_|jtkrddl	}|j
||j}|SdS)Nr)r?r@r>r3rrDr;lenrAaudioopZulaw2linrC)r0nframesr$rbrrr
readframesszAu_read.readframescCs;|jdkrtd|jj|jd|_dS)Nzcannot seekr)rNrPr3seekr;)r0rrrrewindszAu_read.rewindcCs|jS)N)r;)r0rrrrMszAu_read.tellcCsp|dks||jkr*td|jdkrEtd|jj|j||j||_dS)Nrzposition not in rangezcannot seek)rWrrNrPr3rerDr;)r0posrrrsetpos!szAu_read.setposcCs/|j}|r+d|_|jr+|jdS)N)r3r.r4)r0rrrrr4)s
			z
Au_read.closeN)rrrr2r5r6r8r/rSrTrUrVrWr[r\r]r^r`rdrfrMrhr4rrrrr(s(	,
r(c@s<eZdZddZddZddZddZd	d
ZddZd
dZ	ddZ
ddZddZddZ
ddZddZddZddZdd Zd!d"Zd#d$Zd%d&Zd'd(Zd)d*Zd+d,Zd-d.Zd/d0Zd1d2Zd3S)4Au_writecCs\t|tdkrBddl}|j|d}d|_n	d|_|j|dS)Nr)rwbTF)r+r,r-r.r/)r0r1r,rrrr22s	zAu_write.__init__cCs |jr|jd|_dS)N)r3r4)r0rrrr5;s	
zAu_write.__del__cCs|S)Nr)r0rrrr6@szAu_write.__enter__cGs|jdS)N)r4)r0r7rrrr8CszAu_write.__exit__cCsg||_d|_d|_d|_d|_t|_d|_d|_d|_	d|_
d|_dS)Nrr:rX)r3rIrJrCrDr>_nframes_nframeswritten_datawritten_datalengthrK	_comptype)r0rrrrr/Fs										zAu_write.initfpcCs:|jrtd|dkr-td||_dS)Nz0cannot change parameters after starting to writerrrz"only 1, 2, or 4 channels supported)rrr)rlrrJ)r0	nchannelsrrrsetnchannelsSs
	zAu_write.setnchannelscCs|jstd|jS)Nznumber of channels not set)rJr)r0rrrrTZs	zAu_write.getnchannelscCs:|jrtd|dkr-td||_dS)Nz0cannot change parameters after starting to writerrrrzbad sample width)rrrr)rlrrC)r0	sampwidthrrrsetsampwidth_s
	zAu_write.setsampwidthcCs|jstd|jS)Nzsample width not specified)rIrrC)r0rrrrUfs	zAu_write.getsampwidthcCs"|jrtd||_dS)Nz0cannot change parameters after starting to write)rlrrI)r0	frameraterrrsetframerateks	zAu_write.setframeratecCs|jstd|jS)Nzframe rate not set)rIr)r0rrrrVps	zAu_write.getframeratecCs:|jrtd|dkr-td||_dS)Nz0cannot change parameters after starting to writerz# of frames cannot be negative)rlrrk)r0rcrrr
setnframesus
	zAu_write.setnframescCs|jS)N)rl)r0rrrrW|szAu_write.getnframescCs(|dkr||_ntddS)NrZrXzunknown compression type)rZrX)ror)r0r+namerrrsetcomptypeszAu_write.setcomptypecCs|jS)N)ro)r0rrrr[szAu_write.getcomptypecCs.|jdkrdS|jdkr&dSdSdS)NrXzCCITT G.711 u-lawrYzCCITT G.711 A-lawznot compressed)ro)r0rrrr\s
zAu_write.getcompnamecCs`|\}}}}}}|j||j||j||j||j||dS)N)rqrsrurvrx)r0ZparamsrprrrtrcZcomptypeZcompnamerrr	setparamss



zAu_write.setparamscCs=t|j|j|j|j|j|jS)N)rrTrUrVrWr[r\)r0rrrr]szAu_write.getparamscCs|jS)N)rl)r0rrrrMsz
Au_write.tellcCst|ttfs*t|jd}|j|jdkrdddl}|j||j	}t
||j}|jj
||j||_|jt
||_dS)NBrXr)
isinstancer#	bytearray
memoryviewcast_ensure_header_writtenrorbZlin2ulawrCrarDr3r"rlrm)r0r$rbrcrrrwriteframesraws
zAu_write.writeframesrawcCs?|j||j|jks1|j|jkr;|jdS)N)rrlrkrnrm_patchheader)r0r$rrrwriteframess
zAu_write.writeframescCs|jr{zI|j|j|jks:|j|jkrD|j|jjWd|j}d|_|jrz|j	XdS)N)
r3rrlrkrnrmrflushr.r4)r0rrrrr4s	

			zAu_write.closecCsV|jsR|jstd|js3td|jsHtd|jdS)Nz# of channels not specifiedzsample width not specifiedzframe rate not specified)rlrJrrCrI
_write_header)r0rrrrs				zAu_write._ensure_header_writtenc
Cs|jdkr|jdkr0t}d|_q|jdkrQt}d|_q|jdkrrt}d|_q|jdkrt}d|_qtdn-|jdkrt}d|_ntd|j|j	|_t
|jtdt
|j}|d	d@}t
|j||jtkr;t}n|j|j}y|jj|_Wn!ttfk
rd|_YnXt
|j|||_t
|j|t
|j|jt
|j|j	|jj|j|jjd
|t
|jddS)
NrZrrrrzinternal errorrXr
r
sri)rorCrErDrFrGrHrrArJr'r3r<rarKrkr>rM_form_length_posrOrPrnrIr")r0encodingZheader_sizeZlengthrrrrsJ		zAu_write._write_headercCsd|jdkrtd|jj|jt|j|j|j|_|jjdddS)Nzcannot seekrr)rrPr3rer'rmrn)r0rrrrszAu_write._patchheaderN)rrrr2r5r6r8r/rqrTrsrUrurVrvrWrxr[r\ryr]rMrrr4rrrrrrrri0s2	

*riNcCsi|dkr-t|dr'|j}nd}|dkrCt|S|dkrYt|StddS)	Nmoder*rwrjz$mode must be 'r', 'rb', 'w', or 'wb')rr*)rrj)hasattrrr(rir)r1rrrrr-s

r-)__doc__collectionsrrr<rArErFrGrHZAUDIO_FILE_ENCODING_FLOATZAUDIO_FILE_ENCODING_DOUBLEZAUDIO_FILE_ENCODING_ADPCM_G721ZAUDIO_FILE_ENCODING_ADPCM_G722Z AUDIO_FILE_ENCODING_ADPCM_G723_3Z AUDIO_FILE_ENCODING_ADPCM_G723_5rBr>r@	Exceptionrrr'r(rir-Zopenfprrrr<module>hs<