#include <mobu-python-api.h>
Public Member Functions | |
__reduce__ () | |
__init__ (object arg1) | |
list | GetCodecIdList (FBVideoCodecManager arg1, str arg2) |
GetCodecIdList. More... | |
SetDefaultCodec (FBVideoCodecManager arg1, str arg2, str arg3) | |
SetDefaultCodec. More... | |
str | GetDefaultCodec (FBVideoCodecManager arg1, str arg2) |
GetDefaultCodec. More... | |
bool | RegisterExternalVideoFormat (FBVideoCodecManager arg1, str arg2) |
Register external video format suffix. More... | |
Public Attributes | |
object | VideoCodecMode |
__init__ | ( | object | arg1 | ) |
Python Docstring:
__init__( (object)arg1) -> None
__reduce__ | ( | ) |
list GetCodecIdList | ( | FBVideoCodecManager | arg1, |
str | arg2 | ||
) |
GetCodecIdList.
Python Docstring:
GetCodecIdList( (FBVideoCodecManager)arg1, (str)arg2) -> list
C++ Signature:
void GetCodecIdList(const char * pFileFormatInfo, ORSDK2018::FBStringList & pCodecList)
Get all codec id available for a given file format.
pFileFormatInfo | file format description string (AVI, MOV...) |
pCodecList | Codec list id |
str GetDefaultCodec | ( | FBVideoCodecManager | arg1, |
str | arg2 | ||
) |
GetDefaultCodec.
Python Docstring:
GetDefaultCodec( (FBVideoCodecManager)arg1, (str)arg2) -> str
C++ Signature:
const char * GetDefaultCodec(const char * pFileFormatInfo)
Get the default codec id for a given file format. This is the codec that will be used if codec mode is FBVideoCodecUseDefault
pFileFormatInfo | file format description string (AVI, MOV...) |
bool RegisterExternalVideoFormat | ( | FBVideoCodecManager | arg1, |
str | arg2 | ||
) |
Register external video format suffix.
Python Docstring:
RegisterExternalVideoFormat( (FBVideoCodecManager)arg1, (str)arg2) -> bool
C++ Signature:
bool RegisterExternalVideoFormat(const char * pFormatSuffix)
Only alphabetic and number is allowed in provided suffix, and can not be empty suffix or the system exist suffixes. This will allow this suffix to be appeared in the filters of file dialog when importing video, also allow to create a texture/video object with a path containing this suffix via SDK. However it will the custom SDK plug-in developer's responsibility to load the file into memory.
pFormatSuffix | Suffix/File extension of external video file format |
SetDefaultCodec | ( | FBVideoCodecManager | arg1, |
str | arg2, | ||
str | arg3 | ||
) |
SetDefaultCodec.
Python Docstring:
SetDefaultCodec( (FBVideoCodecManager)arg1, (str)arg2, (str)arg3) -> None
C++ Signature:
void SetDefaultCodec(const char * pFileFormatInfo, const char * pCodecId)
Set the default codec id for a given file format. This is the codec that will be used if codec mode is FBVideoCodecUseDefault
pFileFormatInfo | file format description string (AVI, MOV...) |
pCodecId | the codec id to set as default |
object VideoCodecMode |