android-youtubeExtractor
android-youtubeExtractor copied to clipboard
Live Stream can't detected
String youtubeLink = "https://www.youtube.com/watch?v=inOugVa_NYA";
new YouTubeExtractor(this) {
@Override
public void onExtractionComplete(SparseArray<YtFile> ytFiles, VideoMeta vMeta) {
System.out.println(vMeta.isLiveStream());
}
}.extract(youtubeLink, true, true);
Got:
I/System.out: false
Did anyone succeed in extracting a Live Stream?
Same issue here with latest master branch snapshot
String youtubeLink = "https://www.youtube.com/watch?v=inOugVa_NYA"; new YouTubeExtractor(this) { @Override public void onExtractionComplete(SparseArray<YtFile> ytFiles, VideoMeta vMeta) { System.out.println(vMeta.isLiveStream()); } }.extract(youtubeLink, true, true);
Got:
I/System.out: false
Did anyone succeed in extracting a Live Stream?
Hi, did you found a solution for that? im having the same issue
same here