NewPipeExtractor/extractor/src/main/java/org/schabi/newpipe/extractor/stream/AudioTrackType.java

34 lines
968 B
Java
Raw Normal View History

2023-03-19 02:12:01 +01:00
package org.schabi.newpipe.extractor.stream;
/**
* An enum representing the track type of an {@link AudioStream} extracted by a {@link
* StreamExtractor}.
*/
public enum AudioTrackType {
/**
2023-03-20 23:58:03 +01:00
* An original audio track of the video.
2023-03-19 02:12:01 +01:00
*/
ORIGINAL,
/**
2023-03-20 23:58:03 +01:00
* An audio track with the original voices replaced, typically in a different language.
2023-03-19 02:12:01 +01:00
*
* @see <a href="https://en.wikipedia.org/wiki/Dubbing">
* https://en.wikipedia.org/wiki/Dubbing</a>
*/
DUBBED,
/**
2023-03-20 23:58:03 +01:00
* A descriptive audio track.
2023-03-19 02:12:01 +01:00
* <p>
2023-03-20 23:58:03 +01:00
* 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.
2023-03-19 02:12:01 +01:00
* </p>
*
* @see <a href="https://en.wikipedia.org/wiki/Audio_description">
* https://en.wikipedia.org/wiki/Audio_description</a>
*/
2023-03-20 13:18:17 +01:00
DESCRIPTIVE
2023-03-19 02:12:01 +01:00
}