You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamExtractor.java
+12-6Lines changed: 12 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
importcom.grack.nanojson.JsonParser;
6
6
importcom.grack.nanojson.JsonParserException;
7
7
importorg.jsoup.Jsoup;
8
+
importorg.jsoup.helper.StringUtil;
8
9
importorg.jsoup.nodes.Document;
9
10
importorg.jsoup.nodes.Element;
10
11
importorg.jsoup.select.Elements;
@@ -386,13 +387,18 @@ public String getDashMpdUrl() throws ParsingException {
386
387
publicStringgetHlsUrl() throwsParsingException {
387
388
assertPageFetched();
388
389
try {
389
-
Stringhlsvp;
390
-
if (playerArgs != null && playerArgs.isString("hlsvp")) {
0 commit comments