Gets or sets the sink's media subtype.
public string SinkSubType {get; set;} Public Property SinkSubType As String A string value representing the GUID string name for the sink's media subtype.
The string contains a formatted Globally Unique Identifier (GUID) of the form {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx} For more information on the available GUIDs, refer to the DirectShow documentation. If the value is undefined (empty string), then no media subtype will be assigned to the TargetFormat.Sink property. Attempting to set this value on a ReadOnly item will result in an error. For more information, refer to the Error Codes.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.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's 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's name hereif (capturectrl.AudioDevices["USB"] == null)throw new Exception("No USB audio device available");capturectrl.AudioDevices["USB"].Selected = true;// no recompression for video and audiocapturectrl.VideoCompressors.Mpeg2.Selected = true;capturectrl.AudioCompressors.AC3.Selected = true;// select the DVD target formatcapturectrl.TargetFormats[TargetFormatType.DVD].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;string sink = t.Sink;string sinkSubType = t.SinkSubType;string audio = t.AudioCompressor;string video = t.VideoCompressor;string sRecAudio = t.RecommendedAudioCompressor;string sRecVideo = t.RecommendedVideoCompressor;string mux = t.Mux;string avMux = t.AVMux;StreamFormatType sft = t.Streams;// if we found the video tuner inputif (name == "AVI"){// select it and breakt.Selected = true;break;}}// check it directlyTargetFormatType tft = capturectrl.TargetFormat;// set the result to what we expect_result = (tft != TargetFormatType.DVD && 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.MultimediaImports LeadtoolsMultimediaExamples.FixturesPublic _result As Boolean = FalsePublic _form As CaptureCtrlForm = 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' no recompression for video and audiocapturectrl.VideoCompressors.Mpeg2.Selected = Truecapturectrl.AudioCompressors.AC3.Selected = True' select the DVD target formatcapturectrl.TargetFormats(TargetFormatType.DVD).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 sink As String = t.SinkDim sinkSubType As String = t.SinkSubTypeDim audio As String = t.AudioCompressorDim video As String = t.VideoCompressorDim sRecAudio As String = t.RecommendedAudioCompressorDim sRecVideo As String = t.RecommendedVideoCompressorDim mux As String = t.MuxDim avMux As String = t.AVMuxDim sft As StreamFormatType = t.Streams' if we found the video tuner inputIf name = "AVI" Then' select it and breakt.Selected = TrueExit ForEnd IfNext t' check it directlyDim tft As TargetFormatType = capturectrl.TargetFormat' set the result to what we expect_result = (tft <> TargetFormatType.DVD AndAlso n <> capturectrl.TargetFormats.Selection)Catch 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 capturectrl.State = CaptureState.RunningApplication.DoEvents()LoopEnd Sub
|
Products |
Support |
Feedback: SinkSubType Property - Leadtools.Multimedia |
Introduction |
Help Version 19.0.2017.6.16
|

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
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.