videoOnly property

FfmpegStream 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);
}