made extractor not throw exception upon missing dash mpd

pull/224/head
Christian Schabesberger 2016-02-29 16:11:29 +01:00
rodzic 1a2840b33f
commit 4ac36af40c
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -412,7 +412,6 @@ public class YoutubeStreamExtractor implements StreamExtractor {
@Override
public String getDashMpdUrl() throws ParsingException {
throw new ParsingException("blabla");
/*
try {
String dashManifestUrl = videoInfoPage.get("dashmpd");
@ -429,6 +428,7 @@ public class YoutubeStreamExtractor implements StreamExtractor {
"Could not get \"dashmpd\" maybe VideoInfoPage is broken.", e);
}
*/
return "";
}