Enum LVCMediaType
- Namespace
- VisioForge.Core.LiveVideoCompositor
- Assembly
- VisioForge.Core.dll
Defines the media type for Live Video Compositor inputs and outputs. This enumeration specifies whether a compositor component handles video only, audio only, or both video and audio streams. Used to categorize and manage different types of media sources and destinations within the composition pipeline.
public enum LVCMediaTypeFields
Video = 0-
Video-only media type. The input or output handles only video streams and will be connected to video processing components.
Audio = 1-
Audio-only media type. The input or output handles only audio streams and will be connected to audio processing components.
VideoAudio = 2-
Combined video and audio media type. The input or output handles both video and audio streams simultaneously, requiring connections to both video and audio processing pipelines.
Remarks
The media type determines how the compositor will process and route the associated streams. For example, VideoAudio inputs will be connected to both video and audio mixers, while Video-only inputs will only participate in video mixing operations.