C#
VB
C++
Gets the target device collection object.
[EditorAttribute(System.Type, System.Type)]public virtual TargetDevices TargetDevices { get; }
Public Overridable ReadOnly Property TargetDevices As Leadtools.Multimedia.TargetDevices public:virtual property Leadtools.Multimedia.TargetDevices^ TargetDevices {Leadtools.Multimedia.TargetDevices^ get();}
A TargetDevices collection object.
The TargetDevices object is used to enumerate and select conversion output devices.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public ConvertCtrlForm _form = new ConvertCtrlForm();public ConvertCtrl _convertctrl;public void TargetDevicesExample(){// reference the convert control_convertctrl = _form.ConvertCtrl;// input filestring inFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.mpeg");try{// check to see if we have the desired target deviceif (_convertctrl.TargetDevices["Microsoft DV Camera and VCR"] == null)throw new Exception("No Microsoft DV Camera target devices available!");// set the video capture device, use your capture device name here_convertctrl.SourceFile = inFile;// select video and audio compressors to none_convertctrl.VideoCompressors.Selection = -1;_convertctrl.AudioCompressors.Selection = -1;// select the target format_convertctrl.TargetFormats[TargetFormatType.DVSD].Selected = true;// select only Audio for this example_convertctrl.AllowedStreams = StreamFormatType.AudioVideo;// set a target device_convertctrl.TargetDevices["Microsoft DV Camera and VCR"].Selected = true;// show the target format dialogif (_convertctrl.HasDialog(ConvertDlg.TargetFormat))_convertctrl.ShowDialog(ConvertDlg.TargetFormat, _form);// check the target device VCRControlif (_convertctrl.TargetVCRControl == null|| (_convertctrl.TargetVCRControl.DeviceType == VCRControlDeviceType.NotPresent|| _convertctrl.TargetVCRControl.DeviceType == VCRControlDeviceType.Unknown))throw new Exception("MS DV Camera's Target VCR control is not present!");// start recording on the target device VCRControl_convertctrl.TargetVCRControl.Record();// give the camera time to respondSystem.Threading.Thread.Sleep(2000);// subscribe to the convert complete event_convertctrl.Complete += new EventHandler(ConvertCtrl_Completed);// convert it now!_convertctrl.StartConvert();// set the result to what we expect_result = true;}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 (_convertctrl.State == ConvertState.Running)Application.DoEvents();}void ConvertCtrl_Completed(object sender, EventArgs e){// stop the TargetDevice camera recording and rewind_convertctrl.TargetVCRControl.Stop();_convertctrl.TargetVCRControl.Rewind();}static class LEAD_VARS{public const string MediaDir = @"C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media";}
Imports LeadtoolsImports Leadtools.MultimediaImports LeadtoolsMultimediaExamples.FixturesPublic _result As Boolean = FalsePublic _form As ConvertCtrlForm = New ConvertCtrlForm()Public _convertctrl As ConvertCtrlPublic Sub TargetDevicesExample()' reference the convert control_convertctrl = _form.ConvertCtrl' input fileDim inFile As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.mpeg")Try' check to see if we have the desired target deviceIf _convertctrl.TargetDevices("Microsoft DV Camera and VCR") Is Nothing ThenThrow New Exception("No Microsoft DV Camera target devices available!")End If' set the video capture device, use your capture device name here_convertctrl.SourceFile = inFile' set video and audio compressors to none_convertctrl.VideoCompressors.Selection = -1_convertctrl.AudioCompressors.Selection = -1' select the target format_convertctrl.TargetFormats(TargetFormatType.DVSD).Selected = True' select only Audio for this example_convertctrl.AllowedStreams = StreamFormatType.AudioVideo' set a target device_convertctrl.TargetDevices("Microsoft DV Camera and VCR").Selected = True' show the target format dialogIf _convertctrl.HasDialog(ConvertDlg.TargetFormat) Then_convertctrl.ShowDialog(ConvertDlg.TargetFormat, _form)End If' check the target device VCRControlIf _convertctrl.TargetVCRControl Is Nothing OrElse (_convertctrl.TargetVCRControl.DeviceType = VCRControlDeviceType.NotPresent _OrElse _convertctrl.TargetVCRControl.DeviceType = VCRControlDeviceType.Unknown) ThenThrow New Exception("MS DV Camera's Target VCR control is not present!")End If' start recording on the target device VCRControl_convertctrl.TargetVCRControl.Record()' give the camera time to respondSystem.Threading.Thread.Sleep(2000)' subscribe to the convert complete eventAddHandler _convertctrl.Complete, AddressOf ConvertCtrl_Completed' convert it now!_convertctrl.StartConvert()' set the result to what we expect_result = TrueCatch e1 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.Do While _convertctrl.State = ConvertState.RunningApplication.DoEvents()LoopEnd SubPrivate Sub ConvertCtrl_Completed(ByVal sender As Object, ByVal e As EventArgs)' stop the TargetDevice camera recording and rewind_convertctrl.TargetVCRControl.Stop()_convertctrl.TargetVCRControl.Rewind()End SubPublic NotInheritable Class LEAD_VARSPublic Const MediaDir As String = "C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media"End Class
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
