File: filter.pyi

package info (click to toggle)
python-av 14.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,664 kB
  • sloc: python: 4,712; sh: 175; ansic: 174; makefile: 123
file content (23 lines) | stat: -rw-r--r-- 500 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from av.descriptor import Descriptor
from av.option import Option

from .pad import FilterPad

class Filter:
    name: str
    description: str

    descriptor: Descriptor
    options: tuple[Option, ...] | None
    flags: int
    dynamic_inputs: bool
    dynamic_outputs: bool
    timeline_support: bool
    slice_threads: bool
    command_support: bool
    inputs: tuple[FilterPad, ...]
    outputs: tuple[FilterPad, ...]

    def __init__(self, name: str) -> None: ...

filters_available: set[str]