/** * Represents an audio track for a video. */ export interface AudioTrack { /** * The URL to the timed file, e.g. WebVTT file. */ url?: string; /** * The label for this track. */ label?: string; /** * The unique identifier for this track. If no value is provided, a random UUIDv4 will be generated for it. */ identifier?: string; /** * If set to true, this track would be considered as default. Default is `false`. */ isDefault?: boolean; /** * The IETF BCP 47 language tag associated with this track, e.g. `pt`, `en`, `es` etc. */ language?: string; }