42 lines
1.5 KiB
Python
42 lines
1.5 KiB
Python
|
|
from typing import overload, Any, Callable, TypeVar, Union
|
||
|
|
from typing import Tuple, List, Sequence, MutableSequence
|
||
|
|
|
||
|
|
Callback = Union[Callable[..., None], None]
|
||
|
|
Buffer = TypeVar('Buffer')
|
||
|
|
Pointer = TypeVar('Pointer')
|
||
|
|
Template = TypeVar('Template')
|
||
|
|
|
||
|
|
import vtkmodules.vtkCommonCore
|
||
|
|
import vtkmodules.vtkIOMovie
|
||
|
|
|
||
|
|
class vtkOggTheoraWriter(vtkmodules.vtkIOMovie.vtkGenericMovieWriter):
|
||
|
|
quality:'getset_descriptor'
|
||
|
|
rate:'getset_descriptor'
|
||
|
|
subsampling:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def End(self) -> None: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetQuality(self) -> int: ...
|
||
|
|
def GetQualityMaxValue(self) -> int: ...
|
||
|
|
def GetQualityMinValue(self) -> int: ...
|
||
|
|
def GetRate(self) -> int: ...
|
||
|
|
def GetRateMaxValue(self) -> int: ...
|
||
|
|
def GetRateMinValue(self) -> int: ...
|
||
|
|
def GetSubsampling(self) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkOggTheoraWriter': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkOggTheoraWriter': ...
|
||
|
|
def SetQuality(self, _arg:int) -> None: ...
|
||
|
|
def SetRate(self, _arg:int) -> None: ...
|
||
|
|
def SetSubsampling(self, _arg:int) -> None: ...
|
||
|
|
def Start(self) -> None: ...
|
||
|
|
def SubsamplingOff(self) -> None: ...
|
||
|
|
def SubsamplingOn(self) -> None: ...
|
||
|
|
def Write(self) -> None: ...
|
||
|
|
|