mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-21 18:22:30 +01:00
[nhentai] support ',webp' files (#6442)
This commit is contained in:
parent
9e72968154
commit
1ddbcda58b
@ -61,7 +61,7 @@ class NhentaiGalleryExtractor(GalleryExtractor):
|
||||
def images(self, _):
|
||||
ufmt = ("https://i.nhentai.net/galleries/" +
|
||||
self.data["media_id"] + "/{}.{}")
|
||||
extdict = {"j": "jpg", "p": "png", "g": "gif"}
|
||||
extdict = {"j": "jpg", "p": "png", "g": "gif", "w": "webp"}
|
||||
|
||||
return [
|
||||
(ufmt.format(num, extdict.get(img["t"], "jpg")), {
|
||||
|
@ -34,6 +34,19 @@ __tests__ = (
|
||||
"height" : int,
|
||||
},
|
||||
|
||||
{
|
||||
"#url" : "https://nhentai.net/g/538045/",
|
||||
"#comment" : "webp (#6442)",
|
||||
"#class" : nhentai.NhentaiGalleryExtractor,
|
||||
"#range" : "4-7",
|
||||
"#urls" : (
|
||||
"https://i.nhentai.net/galleries/3115523/4.jpg",
|
||||
"https://i.nhentai.net/galleries/3115523/5.webp",
|
||||
"https://i.nhentai.net/galleries/3115523/6.webp",
|
||||
"https://i.nhentai.net/galleries/3115523/7.jpg",
|
||||
),
|
||||
},
|
||||
|
||||
{
|
||||
"#url" : "https://nhentai.net/tag/sole-female/",
|
||||
"#category": ("", "nhentai", "tag"),
|
||||
|
Loading…
Reference in New Issue
Block a user