Skip to content

Latest commit

 

History

History
63 lines (36 loc) · 3.26 KB

AssetNonStandardInputReasons.md

File metadata and controls

63 lines (36 loc) · 3.26 KB

AssetNonStandardInputReasons

An object containing one or more reasons the input file is non-standard. See the guide on minimizing processing time for more information on what a standard input is defined as. This object only exists on on-demand assets that have non-standard inputs, so if missing you can assume the input qualifies as standard.

Properties

Name Type Description Notes
videoCodec String The video codec used on the input file. For example, the input file encoded with `hevc` video codec is non-standard and the value of this parameter is `hevc`. [optional]
audioCodec String The audio codec used on the input file. Non-AAC audio codecs are non-standard. [optional]
videoGopSize VideoGopSizeEnum The video key frame Interval (also called as Group of Picture or GOP) of the input file is `high`. This parameter is present when the gop is greater than 20 seconds. [optional]
videoFrameRate String The video frame rate of the input file. Video with average frames per second (fps) less than 5 or greater than 120 is non-standard. A `-1` frame rate value indicates Mux could not determine the frame rate of the video track. [optional]
videoResolution String The video resolution of the input file. Video resolution higher than 2048 pixels on any one dimension (height or width) is considered non-standard, The resolution value is presented as `width` x `height` in pixels. [optional]
videoBitrate VideoBitrateEnum The video bitrate of the input file is `high`. This parameter is present when the average bitrate of any key frame interval (also known as Group of Pictures or GOP) is higher than what's considered standard which typically is 16 Mbps. [optional]
pixelAspectRatio String The video pixel aspect ratio of the input file. [optional]
videoEditList VideoEditListEnum Video Edit List reason indicates that the input file's video track contains a complex Edit Decision List. [optional]
audioEditList AudioEditListEnum Audio Edit List reason indicates that the input file's audio track contains a complex Edit Decision List. [optional]
unexpectedMediaFileParameters UnexpectedMediaFileParametersEnum A catch-all reason when the input file in created with non-standard encoding parameters. [optional]
unsupportedPixelFormat String The video pixel format, as a string, returned by libav. Considered non-standard if not one of yuv420p or yuvj420p. [optional]

Enum: VideoGopSizeEnum

Name Value
HIGH "high"

Enum: VideoBitrateEnum

Name Value
HIGH "high"

Enum: VideoEditListEnum

Name Value
NON_STANDARD "non-standard"

Enum: AudioEditListEnum

Name Value
NON_STANDARD "non-standard"

Enum: UnexpectedMediaFileParametersEnum

Name Value
NON_STANDARD "non-standard"