videoOnly property
FFMpegStream
get
videoOnly
Returns a copy of this stream with just the video stream handle.
If this stream only includes video, then this stream is returned.
Implementation
FFMpegStream get videoOnly {
return audioId == null ? this : FFMpegStream(videoId: videoId);
}