Surbhi123's picture
Upload folder using huggingface_hub
64772a4 verified
raw
history blame contribute delete
656 Bytes
from fractions import Fraction
from typing import Sequence
from av.packet import Packet
from av.stream import Stream
from .core import Container
class OutputContainer(Container):
def __enter__(self) -> OutputContainer: ...
def add_stream(
self,
codec_name: str | None = None,
rate: Fraction | int | float | None = None,
template: Stream | None = None,
options: dict[str, str] | None = None,
) -> Stream: ...
def start_encoding(self) -> None: ...
def close(self) -> None: ...
def mux(self, packets: Packet | Sequence[Packet]) -> None: ...
def mux_one(self, packet: Packet) -> None: ...