Uname: Linux server.digisquadtech.com 4.18.0-553.100.1.el8_10.x86_64 #1 SMP Mon Feb 2 04:13:33 EST 2026 x86_64
User: 1091 (madhavfluid)
Group: 1090 (madhavfluid)
Disabled functions: NONE
Safe mode: On[ PHPinfo ]
//usr/lib64/python3.6///__pycache__      ( Reset | Go to )
File Name: wave.cpython-36.opt-1.pyc
3

 \-E@sdZddlZdddddgZGdddeZd    ZdZddlZddlZddl    Z    dd l
m Z ddl m Z e ddZGdddZGdddZdddZeZdS)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.
NopenopenfpError    Wave_read
Wave_writec@s eZdZdS)rN)__name__
__module__ __qualname__r
r
/usr/lib64/python3.6/wave.pyrNsbhi)Chunk)
namedtuple _wave_paramsz7nchannels sampwidth framerate nframes comptype compnamec@seZdZdZddZddZddZdd    Zd
d Zd d Z    ddZ
ddZ ddZ 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
    c Csd|_d|_t|dd|_|jjdkr0td|jjddkrHtdd|_d|_xd|_    yt|jdd}Wnt
k
rPYnX|j}|d    kr|j |d|_n2|d
kr|jstd ||_|j |j |_d|_    P|jqVW|j s|j rtd dS) Nr)Z    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    chunknamer
r
r initfp}s:
 zWave_read.initfpc    CsRd|_t|tr"tj|d}||_y|j|Wn|jrF|jYnXdS)Nrb)_i_opened_the_file
isinstancestrbuiltinsrr"close)rfr
r
r __init__s
 zWave_read.__init__cCs |jdS)N)r()rr
r
r __del__szWave_read.__del__cCs|S)Nr
)rr
r
r     __enter__szWave_read.__enter__cGs |jdS)N)r()rargsr
r
r __exit__szWave_read.__exit__cCs|jS)N)r)rr
r
r getfpszWave_read.getfpcCsd|_d|_dS)Nr r)rr)rr
r
r rewindszWave_read.rewindcCs"d|_|j}|rd|_|jdS)N)rr$r()rr r
r
r r(s
zWave_read.closecCs|jS)N)r)rr
r
r tellszWave_read.tellcCs|jS)N)
_nchannels)rr
r
r getnchannelsszWave_read.getnchannelscCs|jS)N)r)rr
r
r
getnframesszWave_read.getnframescCs|jS)N)
_sampwidth)rr
r
r getsampwidthszWave_read.getsampwidthcCs|jS)N)
_framerate)rr
r
r getframerateszWave_read.getframeratecCs|jS)N)    _comptype)rr
r
r getcomptypeszWave_read.getcomptypecCs|jS)N)    _compname)rr
r
r getcompnameszWave_read.getcompnamecCs*t|j|j|j|j|j|jS)N)rr3r6r8r4r:r<)rr
r
r     getparamss zWave_read.getparamscCsdS)Nr
)rr
r
r
getmarkersszWave_read.getmarkerscCs tddS)Nzno marks)r)ridr
r
r getmarkszWave_read.getmarkcCs*|dks||jkrtd||_d|_dS)Nrzposition not in ranger )rrrr)rposr
r
r setposszWave_read.setposcCs|jr8|jjdd|j|j}|r2|jj|dd|_|dkrDdS|jj||j}|jdkrxtjdkrxt    j
||j}|j r|r|j |}|jt ||j |j|_|S)Nrr big)rrseekrrrr5sys    byteorderaudioopbyteswaprlenr2)rnframesrAdatar
r
r
readframess 

zWave_read.readframescCsztjd|jd\}|_|_}}|tkrNtjd|jdd}|dd|_ntd|f|j|j|_d    |_    d
|_
dS) Nz<HHLLHz<Hrzunknown format: %rNONEznot compressed) structZ unpack_fromrr2r7WAVE_FORMAT_PCMr5rrr9r;)rr!Z
wFormatTagZdwAvgBytesPerSecZ wBlockAlign    sampwidthr
r
r rs zWave_read._read_fmt_chunkN)rrr    __doc__r"r*r+r,r.r/r0r(r1r3r4r6r8r:r<r=r>r@rBrMrr
r
r
r r^s, c@seZdZdZddZddZddZdd    Zd
d Zd d Z    ddZ
ddZ ddZ 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
    c    CsRd|_t|tr"tj|d}||_y|j|Wn|jrF|jYnXdS)Nwb)r$r%r&r'rr"r()rr)r
r
r r*#s
 zWave_write.__init__cCs@||_d|_d|_d|_d|_d|_d|_d|_d|_d|_    dS)NrF)
rrr2r5r7r_nframeswritten _datawritten _datalength_headerwritten)rr r
r
r r"/szWave_write.initfpcCs |jdS)N)r()rr
r
r r+;szWave_write.__del__cCs|S)Nr
)rr
r
r r,>szWave_write.__enter__cGs |jdS)N)r()rr-r
r
r r.AszWave_write.__exit__cCs(|jrtd|dkrtd||_dS)Nz0cannot change parameters after starting to writer zbad # of channels)rYrr2)r    nchannelsr
r
r setnchannelsGs
zWave_write.setnchannelscCs|jstd|jS)Nznumber of channels not set)r2r)rr
r
r r3NszWave_write.getnchannelscCs0|jrtd|dks|dkr&td||_dS)Nz0cannot change parameters after starting to writer rzbad sample width)rYrr5)rrUr
r
r setsampwidthSs
zWave_write.setsampwidthcCs|jstd|jS)Nzsample width not set)r5r)rr
r
r r6ZszWave_write.getsampwidthcCs0|jrtd|dkrtdtt||_dS)Nz0cannot change parameters after starting to writerzbad frame rate)rYrintroundr7)r    framerater
r
r setframerate_s
zWave_write.setframeratecCs|jstd|jS)Nzframe rate not set)r7r)rr
r
r r8fszWave_write.getframeratecCs|jrtd||_dS)Nz0cannot change parameters after starting to write)rYrr)rrKr
r
r
setnframeskszWave_write.setnframescCs|jS)N)rX)rr
r
r r4pszWave_write.getnframescCs.|jrtd|dkrtd||_||_dS)Nz0cannot change parameters after starting to writerRzunsupported compression type)rR)rYrr9r;)rcomptypecompnamer
r
r setcomptypess zWave_write.setcomptypecCs|jS)N)r9)rr
r
r r:{szWave_write.getcomptypecCs|jS)N)r;)rr
r
r r<~szWave_write.getcompnamecCsV|\}}}}}}|jrtd|j||j||j||j||j||dS)Nz0cannot change parameters after starting to write)rYrr]r^rbrcrf)rZparamsr\rUrarKrdrer
r
r     setparamss



zWave_write.setparamscCs>|j s|j s|j r tdt|j|j|j|j|j|jS)Nznot all parameters set)r2r5r7rrrr9r;)rr
r
r r=szWave_write.getparamscCs tddS)Nzsetmark() not supported)r)rr?rAnamer
r
r setmarkszWave_write.setmarkcCs tddS)Nzno marks)r)rr?r
r
r r@szWave_write.getmarkcCsdS)Nr
)rr
r
r r>szWave_write.getmarkerscCs|jS)N)rX)rr
r
r r1szWave_write.tellcCst|ttfst|jd}|jt|t||j|j}|j    rN|j    |}|jdkrpt
j dkrpt j ||j}|jj||jt|7_|j||_dS)NBr rD)r%bytes    bytearray
memoryviewcast_ensure_header_writtenrJr5r2rrFrGrHrIrwriterYrX)rrLrKr
r
r writeframesraws
 zWave_write.writeframesrawcCs"|j||j|jkr|jdS)N)rqrZrY _patchheader)rrLr
r
r writeframess
 zWave_write.writeframesc CsXz2|jr0|jd|j|jkr&|j|jjWdd|_|j}|rRd|_|jXdS)Nr)rrorZrYrrflushr$r()rr r
r
r r(s
 zWave_write.closecCs>|js:|jstd|js"td|js0td|j|dS)Nz# channels not specifiedzsample width not specifiedzsampling rate not specified)r[r2rr5r7 _write_header)rZdatasizer
r
r rosz!Wave_write._ensure_header_writtencCs|jjd|js$||j|j|_|j|j|j|_y|jj|_Wntt    fk
rfd|_YnX|jjt
j dd|jdddt |j|j |j|j |j|j|j|jdd |jdk    r|jj|_|jjt
j d    |jd
|_dS) NsRIFFz<L4s4sLHHLLHH4s$sWAVEsfmt rQsdataz<LT)rrprr2r5rZr1_form_length_posAttributeErrorOSErrorrSpackrTr7_data_length_posr[)rZ
initlengthr
r
r rus$   


 zWave_write._write_headercCs|j|jkrdS|jj}|jj|jd|jjtjdd|j|jj|j    d|jjtjd|j|jj|d|j|_dS)Nrz<Lrv)
rYrZrr1rErxrprSr{r|)rZcurposr
r
r rrs 
zWave_write._patchheaderN) rrr    rVr*r"r+r,r.r]r3r^r6rbr8rcr4rfr:r<rgr=rir@r>r1rqrsr(rorurrr
r
r
r r    s:  
 
cCsJ|dkrt|dr|j}nd}|dkr.t|S|dkr>t|StddS)    Nmoder#rwrWz$mode must be 'r', 'rb', 'w', or 'wb')r~r#)rrW)hasattrr}rrr)r)r}r
r
r rs
)Nr rNr)N)rVr'__all__    ExceptionrrTZ _array_fmtsrHrSrFr!r collectionsrrrrrrr
r
r
r <module>Hs$  ,d

All system for education purposes only. For more tools: Telegram @jackleet

Mr.X Private Shell

Logo
-
New File | New Folder
Command
SQL