Fix relative url in uploader URL
This commit is contained in:
parent
06ea74cbb8
commit
7cfdaf39a4
|
@ -94,13 +94,23 @@ public class YoutubeStreamInfoItemExtractor implements StreamInfoItemExtractor {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static String fixRelativeUrls(String url) {
|
||||||
|
if(url == null || url.isEmpty()) return url;
|
||||||
|
if(url.startsWith("/")) {
|
||||||
|
return "https://youtube.com" + url;
|
||||||
|
} else {
|
||||||
|
return url;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getUploaderUrl() throws ParsingException {
|
public String getUploaderUrl() throws ParsingException {
|
||||||
try {
|
try {
|
||||||
try {
|
try {
|
||||||
return item.select("div[class=\"yt-lockup-byline\"]").first()
|
String url = item.select("div[class=\"yt-lockup-byline\"]").first()
|
||||||
.select("a").first()
|
.select("a").first()
|
||||||
.attr("href");
|
.attr("href");
|
||||||
|
return fixRelativeUrls(url);
|
||||||
} catch (Exception e){}
|
} catch (Exception e){}
|
||||||
|
|
||||||
// try this if the first didn't work
|
// try this if the first didn't work
|
||||||
|
|
Loading…
Reference in New Issue