mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
[imgur] support "unmuted" URLs
This commit is contained in:
parent
72e66f0aac
commit
ad14de19c6
@ -118,7 +118,7 @@ class ImgurAlbumExtractor(ImgurExtractor):
|
|||||||
filename_fmt = "{category}_{album[hash]}_{num:>03}_{hash}.{extension}"
|
filename_fmt = "{category}_{album[hash]}_{num:>03}_{hash}.{extension}"
|
||||||
archive_fmt = "{album[hash]}_{hash}"
|
archive_fmt = "{album[hash]}_{hash}"
|
||||||
pattern = [r"(?:https?://)?(?:www\.|m\.)?imgur\.com"
|
pattern = [r"(?:https?://)?(?:www\.|m\.)?imgur\.com"
|
||||||
r"/(?:a|gallery)/(\w{7}|\w{5})"]
|
r"/(?:a|gallery|t/unmuted)/(\w{7}|\w{5})"]
|
||||||
test = [
|
test = [
|
||||||
("https://imgur.com/a/TcBmP", {
|
("https://imgur.com/a/TcBmP", {
|
||||||
"url": "ce3552f550a5b5316bd9c7ae02e21e39f30c0563",
|
"url": "ce3552f550a5b5316bd9c7ae02e21e39f30c0563",
|
||||||
@ -155,6 +155,9 @@ class ImgurAlbumExtractor(ImgurExtractor):
|
|||||||
("https://imgur.com/a/RhJXhVT/all", { # 7 character album hash
|
("https://imgur.com/a/RhJXhVT/all", { # 7 character album hash
|
||||||
"url": "695ef0c950023362a0163ee5041796300db76674",
|
"url": "695ef0c950023362a0163ee5041796300db76674",
|
||||||
}),
|
}),
|
||||||
|
("https://imgur.com/t/unmuted/FVyxO32", { # unmuted URL
|
||||||
|
"url": "1df12d96438ad9018ace7665dc893419ce9ec867",
|
||||||
|
}),
|
||||||
("https://imgur.com/a/TcBmQ", {
|
("https://imgur.com/a/TcBmQ", {
|
||||||
"exception": exception.NotFoundError,
|
"exception": exception.NotFoundError,
|
||||||
}),
|
}),
|
||||||
|
Loading…
Reference in New Issue
Block a user