Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
av / bitstream.pyi
Size: Mime:
from .packet import Packet
from .stream import Stream

class BitStreamFilterContext:
    def __init__(
        self,
        filter_description: str | bytes,
        in_stream: Stream | None = None,
        out_stream: Stream | None = None,
    ): ...
    def filter(self, packet: Packet | None) -> list[Packet]: ...
    def flush(self) -> None: ...

bitstream_filters_available: set[str]