aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/animelab.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-05-16 19:36:36 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-05-17 00:07:43 +0530
commit241464919271278831f23b3a086dcf57aeb80d3b (patch)
tree8e1e0e2c2b4d632fa48d30aa84148185aa66224e /yt_dlp/extractor/animelab.py
parent5d5c0f7e99d121aa0db476b1166828af552aeb14 (diff)
downloadhypervideo-pre-241464919271278831f23b3a086dcf57aeb80d3b.tar.lz
hypervideo-pre-241464919271278831f23b3a086dcf57aeb80d3b.tar.xz
hypervideo-pre-241464919271278831f23b3a086dcf57aeb80d3b.zip
[cleanup] Misc cleanup
Diffstat (limited to 'yt_dlp/extractor/animelab.py')
-rw-r--r--yt_dlp/extractor/animelab.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/yt_dlp/extractor/animelab.py b/yt_dlp/extractor/animelab.py
index cd0d77805..fe2b70aed 100644
--- a/yt_dlp/extractor/animelab.py
+++ b/yt_dlp/extractor/animelab.py
@@ -53,11 +53,6 @@ class AnimeLabBaseIE(InfoExtractor):
class AnimeLabIE(AnimeLabBaseIE):
_VALID_URL = r'https?://(?:www\.)?animelab\.com/player/(?P<id>[^/]+)'
- # the following tests require authentication, but a free account will suffice
- # just set 'usenetrc' to true in test/local_parameters.json if you use a .netrc file
- # or you can set 'username' and 'password' there
- # the tests also select a specific format so that the same video is downloaded
- # regardless of whether the user is premium or not (needs testing on a premium account)
_TEST = {
'url': 'https://www.animelab.com/player/fullmetal-alchemist-brotherhood-episode-42',
'md5': '05bde4b91a5d1ff46ef5b94df05b0f7f',
@@ -76,9 +71,9 @@ class AnimeLabIE(AnimeLabBaseIE):
'season_id': '38',
},
'params': {
+ # Ensure the same video is downloaded whether the user is premium or not
'format': '[format_id=21711_yeshardsubbed_ja-JP][height=480]',
},
- 'skip': 'All AnimeLab content requires authentication',
}
def _real_extract(self, url):