Skip to content

Latest commit

 

History

History
51 lines (30 loc) · 1.15 KB

Quality.md

File metadata and controls

51 lines (30 loc) · 1.15 KB

Quality

Properties

Name Type Description Notes
type TypeEnum The type of video (hls or mp4). [optional]
quality QualityEnum The quality of the video you have, in pixels. Choices include 360p, 480p, 720p, 1080p, and 2160p. [optional]
status StatusEnum The status of your video. Statuses include waiting - the video is waiting to be encoded. encoding - the video is in the process of being encoded. encoded - the video was successfully encoded. failed - the video failed to be encoded. [optional]

Enum: TypeEnum

Name Value
HLS "hls"
MP4 "mp4"

Enum: QualityEnum

Name Value
_240P "240p"
_360P "360p"
_480P "480p"
_720P "720p"
_1080P "1080p"
_2160P "2160p"

Enum: StatusEnum

Name Value
WAITING "waiting"
ENCODING "encoding"
ENCODED "encoded"
FAILED "failed"

Implemented Interfaces

  • Serializable