aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/mitele.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-04-25 22:27:25 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-04-25 22:27:25 +0800
commit6bdc2d5358c2843e3be4d073b2005e5196519664 (patch)
tree3b9a57ad8638b7f236a411fe7a076e4c563202f4 /youtube_dl/extractor/mitele.py
parent2beff95da5fb28440d26a3dee5de575c792d133c (diff)
downloadyoutube-dl-6bdc2d5358c2843e3be4d073b2005e5196519664.zip
youtube-dl-6bdc2d5358c2843e3be4d073b2005e5196519664.tar.gz
youtube-dl-6bdc2d5358c2843e3be4d073b2005e5196519664.tar.bz2
[mitele] Comment out unstable MD5
Also Akamai f4f fragments
Diffstat (limited to 'youtube_dl/extractor/mitele.py')
-rw-r--r--youtube_dl/extractor/mitele.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/mitele.py b/youtube_dl/extractor/mitele.py
index 7b4581d..3589c22 100644
--- a/youtube_dl/extractor/mitele.py
+++ b/youtube_dl/extractor/mitele.py
@@ -15,9 +15,9 @@ class MiTeleIE(InfoExtractor):
IE_DESC = 'mitele.es'
_VALID_URL = r'https?://www\.mitele\.es/[^/]+/[^/]+/[^/]+/(?P<id>[^/]+)/'
- _TESTS = [{
+ _TEST = {
'url': 'http://www.mitele.es/programas-tv/diario-de/la-redaccion/programa-144/',
- 'md5': '0ff1a13aebb35d9bc14081ff633dd324',
+ # MD5 is unstable
'info_dict': {
'id': '0NF1jJnxS1Wu3pHrmvFyw2',
'display_id': 'programa-144',
@@ -27,7 +27,7 @@ class MiTeleIE(InfoExtractor):
'thumbnail': 're:(?i)^https?://.*\.jpg$',
'duration': 2913,
},
- }]
+ }
def _real_extract(self, url):
display_id = self._match_id(url)