⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
python3.12
/
__pycache__
/
View File Name :
chunk.cpython-312.pyc
CRh| L d Z ddlZ ej ed G d d Zy)a Simple class to read IFF chunks. An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File Format)) has the following structure: +----------------+ | ID (4 bytes) | +----------------+ | size (4 bytes) | +----------------+ | data | | ... | +----------------+ The ID is a 4-byte string which identifies the type of chunk. The size field (a 32-bit value, encoded using big-endian byte order) gives the size of the whole chunk, including the 8-byte header. Usually an IFF-type file consists of one or more chunks. The proposed usage of the Chunk class defined here is to instantiate an instance at the start of each chunk and read from the instance until it reaches the end, after which a new instance can be instantiated. At the end of the file, creating a new instance will fail with an EOFError exception. Usage: while True: try: chunk = Chunk(file) except EOFError: break chunktype = chunk.getname() while True: data = chunk.read(nbytes) if not data: pass # do something with data The interface is file-like. The implemented methods are: read, close, seek, tell, isatty. Extra methods are: skip() (called by close, skips to the end of the chunk), getname() (returns the name (ID) of the chunk) The __init__ method has one required argument, a file-like object (including a chunk instance), and one optional argument, a flag which specifies whether or not chunks are aligned on 2-byte boundaries. The default is 1, i.e. aligned. N) )removec H e Zd ZddZd Zd Zd Zd ZddZd Z d dZ d Zy )Chunkc dd l }d| _ || _ |rd}nd}|| _ |j d | _ t | j dk rt |j |dz |j d d | _ |r| j dz | _ d| _ | j j | _ d| _ y # |j $ r t d w xY w# t t f$ r d| _ Y y w xY w) Nr F>< L T)structclosedalignfileread chunknamelenEOFErrorunpack_from chunksizeerror size_readtelloffsetseekableAttributeErrorOSError)selfr r bigendian inclheaderr strflags /usr/lib/python3.12/chunk.py__init__zChunk.__init__8 s GG 1t~~"N %#//TYYq\J1MDN !^^a/DN !))..*DK !DM || %$ % ( "!DM "s ,C C! C!C:9C:c | j S )z*Return the name (ID) of the current chunk.)r r s r# getnamez Chunk.getnameR ~~ c | j S )z%Return the size of the current chunk.)r r&