import DashDescriptor from './DashDescriptor'; import DescriptorType from './DescriptorType'; import HlsDescriptor from './HlsDescriptor'; import Track from './Track'; /** @group Interfaces */ export default interface AudioTrack extends Track { /** * The human-readable title. */ label?: string; /** * The language associated with this track. * This value is normalized - language part is always lowercase and translated to ISO-639-1 if possible. */ language?: string; /** * The bitrate in bits per second. * @remarks Available on Android. */ bitrate?: number; /** * The used codecs. * @remarks Available on Android. */ codecs?: string; /** * The media type. * @remarks Available on Android. */ mimeType?: string; /** * The additional metadata extracted from the manifest. */ descriptors: Record; }