public void Add(
TargetFormat item
)
public:
void Add(
TargetFormat^ item
)
item
The TargetFormat item to add.
Adds a TargetFormat item to the collection. Be sure to set the properties of the added format. If the method fails, an error is raised. For more information, refer to the Error Codes.
using Leadtools;
using Leadtools.MediaFoundation;
using LeadtoolsMediaFoundationExamples.Fixtures;
public bool _result = false;
public CaptureCtrlForm _form = new CaptureCtrlForm();
public void TargetFormatsExample()
{
// reference the capture control
CaptureCtrl capturectrl = _form.CaptureCtrl;
try
{
// set the video capture device, use your capture device name here
if (capturectrl.VideoDevices["USB"] == null)
throw new Exception("No USB video device available");
capturectrl.VideoDevices["USB"].Selected = true;
// set the audio capture device, use your capture device name here
if (capturectrl.AudioDevices["USB"] == null)
throw new Exception("No USB audio device available");
capturectrl.AudioDevices["USB"].Selected = true;
// select the MP4 target format
capturectrl.TargetFormats[TargetFormatType.MP4].Selected = true;
// get the current selected format
int n = capturectrl.TargetFormats.Selection;
// loop through the target formats and set a different one
foreach (TargetFormat t in capturectrl.TargetFormats)
{
// get the format properties
string name = t.Name;
StreamFormatType sft = t.Streams;
bool available = t.Available;
// if we found the WMV format
if (name == "WMV")
{
// if it is available then select it
if (available)
{
t.Selected = true;
}
// exit loop
break;
}
}
// check it directly
TargetFormatType tft = capturectrl.TargetFormat;
// set the result to what we expect
_result = (tft != TargetFormatType.MP4 && n != capturectrl.TargetFormats.Selection);
}
catch (Exception)
{
_result = false;
}
// we'll loop on the state and pump messages for this example.
// but you should not need to if running from a Windows Forms application.
while (capturectrl.State == CaptureState.Running)
Application.DoEvents();
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document