VideoFiltersFfdShowDecoderSet method |
|
Remarks
If FFDSHOW is installed inside the system, modifies the FFDSHOW decoder set for a certain video format. You can obtain the current selected decoder through the VideoFiltersFfdShowDecoderGet method.
You can know if FFDSHOW is installed by querying the VideoFiltersFfdShowIsAvailable method.
Important note
Since 2016 FFDSHOW filters are no more included inside the K-Lite Codec Pack so this method is now obsolete.
|
For further details about the use of the embedded video player see the VideoPlayer object section.
For details about video clips rendering refer to the How to play video files through DirectShow tutorial.
Syntax
[Visual Basic] control.VideoFiltersFfdShowDecoderSet ( strVideoFormat as String, nDecoder as Integer ) as enumErrorCodes |
[C++] short control.VideoFiltersFfdShowDecoderSet ( LPCTSTR strVideoFormat, short nDecoder ); |
Parameter |
Description |
|
|
strVideoFormat |
String representing the registry sub-key for the video format as managed by FFDSHOW inside the registry key HKEY_CURRENT_USER\Software\GNU\ffdshow, for example "mpg1" for MPEG1, "mpg2" for MPEG2, "mp4v" for MP4V, etc., |
nDecoder |
The identifier of the new decoder for the given video format. You can disable using any FFDSHOW decoders for the given video format by setting this value to 0; depending upon the video format in use this value may assume different meanings; for example, when dealing with MPEG1 and MPEG2 formats, the value 1 selects the "libavcodec" decoder while the value 5 selects the "libmpeg2" decoder. |
Return value
Value |
Meaning |
|
|
Negative value |
An error occurred (see the LastError property for further error details) |
enumErrorCodes.ERR_NOERROR (0) |
The method call was successful |