NewPipeExtractor/src/main/java/org/schabi/newpipe/extractor/playlist/PlaylistInfoItemExtractor.java

10 lines
347 B
Java
Raw Normal View History

package org.schabi.newpipe.extractor.playlist;
2017-08-11 20:21:49 +02:00
import org.schabi.newpipe.extractor.InfoItemExtractor;
import org.schabi.newpipe.extractor.exceptions.ParsingException;
2017-08-11 20:21:49 +02:00
public interface PlaylistInfoItemExtractor extends InfoItemExtractor {
String getUploaderName() throws ParsingException;
2017-08-06 22:20:15 +02:00
long getStreamCount() throws ParsingException;
}