mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
625e94fa7d
still not everything, but good enough for now
31 lines
944 B
Python
31 lines
944 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
|
|
from gallery_dl.extractor import khinsider
|
|
|
|
|
|
__tests__ = (
|
|
{
|
|
"#url" : "https://downloads.khinsider.com/game-soundtracks/album/horizon-riders-wii",
|
|
"#category": ("", "khinsider", "soundtrack"),
|
|
"#class" : khinsider.KhinsiderSoundtrackExtractor,
|
|
"#pattern" : r"https?://(dl\.)?vgm(site|downloads)\.com/soundtracks/horizon-riders-wii/[^/]+/Horizon%20Riders%20Wii%20-%20Full%20Soundtrack\.mp3",
|
|
"#count" : 1,
|
|
|
|
"album" : {
|
|
"count" : 1,
|
|
"date" : "Sep 18th, 2016",
|
|
"name" : "Horizon Riders",
|
|
"platform": "Wii",
|
|
"size" : 26214400,
|
|
"type" : "Gamerip",
|
|
},
|
|
"extension": "mp3",
|
|
"filename" : "Horizon Riders Wii - Full Soundtrack",
|
|
},
|
|
|
|
)
|