mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2024-12-13 22:00:32 +05:30
b1989c0a83
- Add new itags
11 lines
228 B
Java
11 lines
228 B
Java
package org.schabi.newpipe.extractor.stream;
|
|
|
|
public enum StreamType {
|
|
NONE, // placeholder to check if stream type was checked or not
|
|
VIDEO_STREAM,
|
|
AUDIO_STREAM,
|
|
LIVE_STREAM,
|
|
AUDIO_LIVE_STREAM,
|
|
FILE
|
|
}
|