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

* A descriptive audio track is an audio track in which descriptions of visual elements of * a video are added to 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 }