Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.11.27
LEADTOOLS Media Foundation Help

Show MKV Format Properties Dialog Example for C++

Show in webframe

The following code demonstrates showing the properties dialog for the MKV target format

// include the LEAD Media Foundation TOOLKIT header
#include "ltmf.h"
void EnumMKVCompressors(IltmfConvert *pConvert, HWND hwndParent)
{
   IltmfTargetFormats *pTargetformats;
   IltmfTargetFormat* pTargetformat;
   // set the target format to MKV
   pConvert->put_TargetFormat(ltmfConvert_TargetFormat_MKV);
   pConvert->get_TargetFormats(&pTargetformats);
   pTargetformats->Item(ltmfConvert_TargetFormat_MKV, &pTargetformat);
   pTargetformats->Release();



// show the target format profile (properties) dialog if available.
VARIANT_BOOL vbDialog;
pTargetformat->HasDialog(ltmfTargetFormat_Dlg_Profile, &vbDialog);
if (vbDialog)
{
pTargetformat->ShowDialog(ltmfTargetFormat_Dlg_Profile, (long)hwndParent);
} pTargetformat->Release(); }
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.