# encoding: utf-8
# module vtkmodules.vtkIOOggTheora
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkIOOggTheora.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkIOMovie as __vtkmodules_vtkIOMovie


# no functions
# classes

class vtkOggTheoraWriter(__vtkmodules_vtkIOMovie.vtkGenericMovieWriter):
    """
    vtkOggTheoraWriter - Uses the ogg and theora libraries to write video
    files.
    
    Superclass: vtkGenericMovieWriter
    
    vtkOggTheoraWriter is an adapter that allows VTK to use the ogg and
    theora libraries to write movie files.  This class creates .ogv files
    containing theora encoded video without audio.
    
    This implementation is based on vtkFFMPEGWriter and uses some code
    derived from the encoder example distributed with libtheora.
    """
    def End(self): # real signature unknown; restored from __doc__
        """
        End(self) -> None
        C++: void End() override;
        """
        pass

    def GetNumberOfGenerationsFromBase(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBase(self, type:str) -> int
        C++: vtkIdType GetNumberOfGenerationsFromBase(const char *type)
            override;
        
        Given the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetNumberOfGenerationsFromBaseType(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBaseType(type:str) -> int
        C++: static vtkIdType GetNumberOfGenerationsFromBaseType(
            const char *type)
        
        Given a the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetQuality(self): # real signature unknown; restored from __doc__
        """
        GetQuality(self) -> int
        C++: virtual int GetQuality()
        """
        return 0

    def GetQualityMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetQualityMaxValue(self) -> int
        C++: virtual int GetQualityMaxValue()
        """
        return 0

    def GetQualityMinValue(self): # real signature unknown; restored from __doc__
        """
        GetQualityMinValue(self) -> int
        C++: virtual int GetQualityMinValue()
        """
        return 0

    def GetRate(self): # real signature unknown; restored from __doc__
        """
        GetRate(self) -> int
        C++: virtual int GetRate()
        """
        return 0

    def GetRateMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetRateMaxValue(self) -> int
        C++: virtual int GetRateMaxValue()
        """
        return 0

    def GetRateMinValue(self): # real signature unknown; restored from __doc__
        """
        GetRateMinValue(self) -> int
        C++: virtual int GetRateMinValue()
        """
        return 0

    def GetSubsampling(self): # real signature unknown; restored from __doc__
        """
        GetSubsampling(self) -> int
        C++: virtual vtkTypeBool GetSubsampling()
        """
        return 0

    def IsA(self, type): # real signature unknown; restored from __doc__
        """
        IsA(self, type:str) -> int
        C++: vtkTypeBool IsA(const char *type) override;
        
        Return 1 if this class is the same type of (or a subclass of) the
        named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def IsTypeOf(self, type): # real signature unknown; restored from __doc__
        """
        IsTypeOf(type:str) -> int
        C++: static vtkTypeBool IsTypeOf(const char *type)
        
        Return 1 if this class type is the same type of (or a subclass
        of) the named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def NewInstance(self): # real signature unknown; restored from __doc__
        """
        NewInstance(self) -> vtkOggTheoraWriter
        C++: vtkOggTheoraWriter *NewInstance()
        """
        return vtkOggTheoraWriter

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkOggTheoraWriter
        C++: static vtkOggTheoraWriter *SafeDownCast(vtkObjectBase *o)
        """
        return vtkOggTheoraWriter

    def SetQuality(self, _arg): # real signature unknown; restored from __doc__
        """
        SetQuality(self, _arg:int) -> None
        C++: virtual void SetQuality(int _arg)
        
        Set/Get the compression quality. 0 means worst quality and
        smallest file size 2 means best quality and largest file size
        """
        pass

    def SetRate(self, _arg): # real signature unknown; restored from __doc__
        """
        SetRate(self, _arg:int) -> None
        C++: virtual void SetRate(int _arg)
        
        Set/Get the frame rate, in frame/s.
        """
        pass

    def SetSubsampling(self, _arg): # real signature unknown; restored from __doc__
        """
        SetSubsampling(self, _arg:int) -> None
        C++: virtual void SetSubsampling(vtkTypeBool _arg)
        
        Is the video to be encoded using 4:2:0 subsampling?
        """
        pass

    def Start(self): # real signature unknown; restored from __doc__
        """
        Start(self) -> None
        C++: void Start() override;
        
        These methods start writing an Movie file, write a frame to the
        file and then end the writing process.
        """
        pass

    def SubsamplingOff(self): # real signature unknown; restored from __doc__
        """
        SubsamplingOff(self) -> None
        C++: virtual void SubsamplingOff()
        """
        pass

    def SubsamplingOn(self): # real signature unknown; restored from __doc__
        """
        SubsamplingOn(self) -> None
        C++: virtual void SubsamplingOn()
        """
        pass

    def Write(self): # real signature unknown; restored from __doc__
        """
        Write(self) -> None
        C++: void Write() override;
        """
        pass

    def __delattr__(self, *args, **kwargs): # real signature unknown
        """ Implement delattr(self, name). """
        pass

    def __getattribute__(self, *args, **kwargs): # real signature unknown
        """ Return getattr(self, name). """
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass

    def __repr__(self, *args, **kwargs): # real signature unknown
        """ Return repr(self). """
        pass

    def __setattr__(self, *args, **kwargs): # real signature unknown
        """ Implement setattr(self, name, value). """
        pass

    def __str__(self, *args, **kwargs): # real signature unknown
        """ Return str(self). """
        pass

    __this__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """Pointer to the C++ object."""


    __dict__ = None # (!) real value is "mappingproxy({'__vtkname__': 'vtkOggTheoraWriter', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'Start': <method 'Start' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'Write': <method 'Write' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'End': <method 'End' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'SetQuality': <method 'SetQuality' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'GetQualityMinValue': <method 'GetQualityMinValue' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'GetQualityMaxValue': <method 'GetQualityMaxValue' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'GetQuality': <method 'GetQuality' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'SetRate': <method 'SetRate' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'GetRateMinValue': <method 'GetRateMinValue' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'GetRateMaxValue': <method 'GetRateMaxValue' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'GetRate': <method 'GetRate' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'SetSubsampling': <method 'SetSubsampling' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'GetSubsampling': <method 'GetSubsampling' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'SubsamplingOn': <method 'SubsamplingOn' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, 'SubsamplingOff': <method 'SubsamplingOff' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF8665162D0>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkIOOggTheora.vtkOggTheoraWriter' objects>, '__doc__': 'vtkOggTheoraWriter - Uses the ogg and theora libraries to write video\\nfiles.\\n\\nSuperclass: vtkGenericMovieWriter\\n\\nvtkOggTheoraWriter is an adapter that allows VTK to use the ogg and\\ntheora libraries to write movie files.  This class creates .ogv files\\ncontaining theora encoded video without audio.\\n\\nThis implementation is based on vtkFFMPEGWriter and uses some code\\nderived from the encoder example distributed with libtheora.\\n\\n'})"
    __vtkname__ = 'vtkOggTheoraWriter'


# variables with complex values

__loader__ = None # (!) real value is '<_frozen_importlib_external.ExtensionFileLoader object at 0x000001D1C53EBC50>'

__spec__ = None # (!) real value is "ModuleSpec(name='vtkmodules.vtkIOOggTheora', loader=<_frozen_importlib_external.ExtensionFileLoader object at 0x000001D1C53EBC50>, origin='C:\\\\Users\\\\xukai\\\\Downloads\\\\??2\\\\venv\\\\Lib\\\\site-packages\\\\vtkmodules\\\\vtkIOOggTheora.cp311-win_amd64.pyd')"

