Type alias ParsedVideoComponentType

ParsedVideoComponentType: {
    aspectRatio?: string;
    chromaSubsampling?: string;
    colorPrimaries?: string;
    colorSpace?: string;
    dimension?: string;
    fieldOrder?: string;
    frameRate?: string | number;
    height?: number;
    smpte?: string;
    timeBase?: TimeBase;
    timeCode?: TimeCode;
    videoBitrate?: string;
    videoCodec?: string;
    videoFormat?: string;
    videoMediaInfo?: ParsedVideoMediaInfoType;
    videoMetadata?: {
        [key: string]: string;
    };
    width?: number;
}

Type declaration

  • Optional aspectRatio?: string
  • Optional chromaSubsampling?: string
  • Optional colorPrimaries?: string
  • Optional colorSpace?: string
  • Optional dimension?: string
  • Optional fieldOrder?: string
  • Optional frameRate?: string | number
  • Optional height?: number
  • Optional smpte?: string
  • Optional timeBase?: TimeBase
  • Optional timeCode?: TimeCode
  • Optional videoBitrate?: string
  • Optional videoCodec?: string
  • Optional videoFormat?: string
  • Optional videoMediaInfo?: ParsedVideoMediaInfoType
  • Optional videoMetadata?: {
        [key: string]: string;
    }
    • [key: string]: string
  • Optional width?: number