Merge pull request #927 from Stypox/fix-feed-thumbnail
[YouTube] Return mqdefault thumbnails in fast feed
This commit is contained in:
commit
a99af9bb6e
1 changed files with 5 additions and 1 deletions
|
@ -91,6 +91,10 @@ public class YoutubeFeedInfoItemExtractor implements StreamInfoItemExtractor {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getThumbnailUrl() {
|
public String getThumbnailUrl() {
|
||||||
return entryElement.getElementsByTag("media:thumbnail").first().attr("url");
|
// The hqdefault thumbnail has some black bars at the top and at the bottom, while the
|
||||||
|
// mqdefault doesn't, so return the mqdefault one. It should always exist, according to
|
||||||
|
// https://stackoverflow.com/a/20542029/9481500.
|
||||||
|
return entryElement.getElementsByTag("media:thumbnail").first().attr("url")
|
||||||
|
.replace("hqdefault", "mqdefault");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue