C#
VB
C++
Adds a TargetFormat item to the collection.
public void Add(TargetFormat item)
Public Sub Add( _ByVal item As Leadtools.Mediafoundation.TargetFormat _)
public:void Add(Leadtools.Mediafoundation.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 controlCaptureCtrl capturectrl = _form.CaptureCtrl;try{// set the video capture device, use your capture device name hereif (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 hereif (capturectrl.AudioDevices["USB"] == null)throw new Exception("No USB audio device available");capturectrl.AudioDevices["USB"].Selected = true;// select the MP4 target formatcapturectrl.TargetFormats[TargetFormatType.MP4].Selected = true;// get the current selected inputint n = capturectrl.TargetFormats.Selection;// loop through the target formats and set a different oneforeach (TargetFormat t in capturectrl.TargetFormats){// get the format propertiesstring name = t.Name;StreamFormatType sft = t.Streams;// if we found the video tuner inputif (name == "WMV"){// select it and breakt.Selected = true;break;}}// check it directlyTargetFormatType 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();}
Imports LeadtoolsImports Leadtools.MediaFoundationImports LeadtoolsMediaFoundationExamples.FixturesPublic _result As Boolean = FalsePublic _form As New CaptureCtrlForm()Public Sub TargetFormatsExample()' reference the capture controlDim capturectrl As CaptureCtrl = _form.CaptureCtrlTry' set the video capture device, use your capture device name hereIf capturectrl.VideoDevices("USB") Is Nothing ThenThrow New Exception("No USB video device available")End Ifcapturectrl.VideoDevices("USB").Selected = True' set the audio capture device, use your capture device name hereIf capturectrl.AudioDevices("USB") Is Nothing ThenThrow New Exception("No USB audio device available")End Ifcapturectrl.AudioDevices("USB").Selected = True' select the MP4 target formatcapturectrl.TargetFormats(TargetFormatType.MP4).Selected = True' get the current selected inputDim n As Integer = capturectrl.TargetFormats.Selection' loop through the target formats and set a different oneFor Each t As TargetFormat In capturectrl.TargetFormats' get the format propertiesDim name As String = t.NameDim sft As StreamFormatType = t.Streams' if we found the video tuner inputIf name = "WMV" Then' select it and breakt.Selected = TrueExit ForEnd IfNext' check it directlyDim tft As TargetFormatType = capturectrl.TargetFormat' set the result to what we expect_result = (tft <> TargetFormatType.MP4 AndAlso n <> capturectrl.TargetFormats.Selection)Catch generatedExceptionName As Exception_result = FalseEnd Try' 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.RunningApplication.DoEvents()End WhileEnd Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
