public virtual int EstimateOutputBitRate() public:virtual int EstimateOutputBitRate();
The estimated capture output bit rate, in bits per second.
The retrieved bit rate depends on the state of the capture object. If the object is in the running state, the retrieved bit rate is related to the actual number of bytes written. If the object is not running, the retrieved bit rate is a theoretical value dependent on the capture settings and the chosen encoder settings.
using Leadtools;using Leadtools.MediaFoundation;using LeadtoolsMediaFoundationExamples.Fixtures;public bool _result = false;public CaptureCtrlForm _form = new CaptureCtrlForm(false);public CaptureCtrl _capturectrl;public void EstimateExample(){// reference the capture control_capturectrl = _form.CaptureCtrl;// output filestring outFile = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_EstimateOutputBitRateExample.avi");// 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;try{// set the capture target file_capturectrl.TargetFile = outFile;// set the capture mode to still and start_capturectrl.ReadyCapture(CaptureMode.Video | CaptureMode.InhibitRun);// get the bit rate estimateint bitRate = _capturectrl.EstimateOutputBitRate();// get file size estimate for 60 secsdouble fileSize = _capturectrl.EstimateOutputSize(60.0);// set the result to what we expect_result = (bitRate != 0 && fileSize != 0.0);}catch (Exception){_result = false;}}static class LEAD_VARS{public const string MediaDir = @"C:\LEADTOOLS23\Media";}
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
