TargetStream Property (original) (raw)

Summary

Gets or sets the media target stream.

Syntax

public virtual Stream TargetStream { get; set; } 

public: virtual property Stream^ TargetStream { Stream^ get(); void set ( Stream^ ); }

Property Value

A System.IO.Stream object for the target stream.

Example

using Leadtools; using Leadtools.Multimedia; using LeadtoolsMultimediaExamples.Fixtures; public bool _result = false; public ConvertCtrlForm _form = new ConvertCtrlForm(); // input and output file names public string _inFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.mpeg"); public string _outFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_SourceStreamExample.avi"); public void SourceStreamExample() { // reference the convert control ConvertCtrl convertctrl = _form.ConvertCtrl; try { // set the source stream convertctrl.SourceStream = new StreamReader(_inFile).BaseStream; // select video and audio compressors convertctrl.VideoCompressors.Mpeg2.Selected = true; convertctrl.AudioCompressors.AC3.Selected = true; // set the target file and format convertctrl.TargetStream = new MemoryStream(); convertctrl.TargetFormat = TargetFormatType.AVI; // subscribe to the complete event to check our result convertctrl.Complete += new EventHandler(ConvertCtrl_Complete); // set the allowed streams convertctrl.AllowedStreams = StreamFormatType.AudioVideoCC; // convert it! convertctrl.StartConvert(); } 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_Complete(object sender, EventArgs e) { Stream ts = _form.ConvertCtrl.TargetStream; FileStream fs = new FileStream(_outFile, FileMode.Create); if (ts != null) { ts.Position = 0; byte[] buffer = new byte[ts.Length + 1]; int read = ts.Read(buffer, 0, (int)ts.Length); fs.Write(buffer, 0, read); } // set the result _result = File.Exists(_outFile); } static class LEAD_VARS { public const string MediaDir = @"C:\LEADTOOLS23\Media"; }