| .Net SDKs | Media Blocks SDK .Net | Special | Null renderer
Null renderer Media Blocks SDK .Net
The null renderer block sends the data to null. This block may be required if your block has outputs you do not want to use.
Block info Name: NullRendererBlock.
The sample pipeline The sample pipeline is shown below. It reads a file and sends the video data to the video samples grabber, where you can grab each video frame after decoding. The Null renderer block is used to end the pipeline.
UniversalSourceBlock
VideoSampleGrabberBlock
NullRendererBlock
Sample code private void Start ( )
{
var pipeline = new MediaBlocksPipeline ( ) ;
var filename = "test.mp4" ;
var fileSource = new UniversalSourceBlock ( await UniversalSourceSettings. CreateAsync ( new Uri ( filename) ) ) ;
var sampleGrabber = new VideoSampleGrabberBlock ( ) ;
sampleGrabber. OnVideoFrameBuffer += sampleGrabber_OnVideoFrameBuffer;
var nullRenderer = new NullRendererBlock ( ) ;
pipeline. Connect ( fileSource. VideoOutput, sampleGrabber. Input) ;
pipeline. Connect ( sampleGrabber. Output, nullRenderer. Input) ;
await pipeline. StartAsync ( ) ;
}
private void sampleGrabber_OnVideoFrameBuffer ( object sender, VideoFrameXBufferEventArgs e)
{
}
Platforms Windows, macOS, Linux, iOS, Android.