package org.schabi.newpipe.extractor.stream; /** * An enum representing the track type of an {@link AudioStream} extracted by a {@link * StreamExtractor}. */ public enum AudioTrackType { /** * The original audio track of the video */ ORIGINAL, /** * Audio track with the original voices replaced, typically in a different language * * @see * https://en.wikipedia.org/wiki/Dubbing */ DUBBED, /** * Descriptive audio *

* A descriptive audio is an audio in which descriptions of visual elements of a video are * added in the original audio, with the goal to make a video more accessible to blind and * visually impaired people. *

* * @see * https://en.wikipedia.org/wiki/Audio_description */ DESCRIPTIVE, }