__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.200: ~ $
from enum import IntEnum
from typing import Any, ClassVar, Union

import numpy as np
from PIL import Image

from av.frame import Frame

from .format import VideoFormat
from .plane import VideoPlane

_SupportedNDarray = Union[
    np.ndarray[Any, np.dtype[np.uint8]],
    np.ndarray[Any, np.dtype[np.uint16]],
    np.ndarray[Any, np.dtype[np.float32]],
]

supported_np_pix_fmts: set[str]

class PictureType(IntEnum):
    NONE = 0
    I = 1
    P = 2
    B = 3
    S = 4
    SI = 5
    SP = 6
    BI = 7

class VideoFrame(Frame):
    format: VideoFormat
    pts: int
    planes: tuple[VideoPlane, ...]
    pict_type: int
    colorspace: int
    color_range: int

    @property
    def time(self) -> float: ...
    @property
    def width(self) -> int: ...
    @property
    def height(self) -> int: ...
    @property
    def interlaced_frame(self) -> bool: ...
    @property
    def rotation(self) -> int: ...
    def __init__(
        self, width: int = 0, height: int = 0, format: str = "yuv420p"
    ) -> None: ...
    def reformat(
        self,
        width: int | None = None,
        height: int | None = None,
        format: str | None = None,
        src_colorspace: str | int | None = None,
        dst_colorspace: str | int | None = None,
        interpolation: int | str | None = None,
        src_color_range: int | str | None = None,
        dst_color_range: int | str | None = None,
    ) -> VideoFrame: ...
    def to_rgb(self, **kwargs: Any) -> VideoFrame: ...
    def to_image(self, **kwargs: Any) -> Image.Image: ...
    def to_ndarray(
        self, channel_last: bool = False, **kwargs: Any
    ) -> _SupportedNDarray: ...
    @staticmethod
    def from_image(img: Image.Image) -> VideoFrame: ...
    @staticmethod
    def from_numpy_buffer(
        array: _SupportedNDarray, format: str = "rgb24", width: int = 0
    ) -> VideoFrame: ...
    @staticmethod
    def from_ndarray(
        array: _SupportedNDarray, format: str = "rgb24", channel_last: bool = False
    ) -> VideoFrame: ...
    @staticmethod
    def from_bytes(
        data: bytes,
        width: int,
        height: int,
        format: str = "rgba",
        flip_horizontal: bool = False,
        flip_vertical: bool = False,
    ) -> VideoFrame: ...

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
__init__.pxd File 0 B 0644
__init__.py File 62 B 0644
__init__.pyi File 103 B 0644
codeccontext.cpython-313-aarch64-linux-gnu.so File 133.88 KB 0644
codeccontext.pxd File 1.04 KB 0644
codeccontext.pyi File 968 B 0644
codeccontext.pyx File 10.57 KB 0644
format.cpython-313-aarch64-linux-gnu.so File 136.57 KB 0644
format.pxd File 727 B 0644
format.pyi File 775 B 0644
format.pyx File 5.8 KB 0644
frame.cpython-313-aarch64-linux-gnu.so File 393.54 KB 0644
frame.pxd File 621 B 0644
frame.pyi File 2.19 KB 0644
frame.pyx File 29.07 KB 0644
plane.cpython-313-aarch64-linux-gnu.so File 69.12 KB 0644
plane.pxd File 193 B 0644
plane.pyi File 223 B 0644
plane.pyx File 1.26 KB 0644
reformatter.cpython-313-aarch64-linux-gnu.so File 133.16 KB 0644
reformatter.pxd File 373 B 0644
reformatter.pyi File 1.35 KB 0644
reformatter.pyx File 8.22 KB 0644
stream.cpython-313-aarch64-linux-gnu.so File 133.27 KB 0644
stream.pxd File 209 B 0644
stream.pyi File 1.16 KB 0644
stream.pyx File 3.57 KB 0644
Filemanager