mirror of https://github.com/yt-dlp/yt-dlp.git
[metacafe] move tests
This commit is contained in:
parent
0c6c096c20
commit
83f6f68e79
|
@ -9,19 +9,6 @@
|
||||||
"title": "Tutoriel de Youtubeur\"DL DES VIDEO DE YOUTUBE\""
|
"title": "Tutoriel de Youtubeur\"DL DES VIDEO DE YOUTUBE\""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Metacafe",
|
|
||||||
"add_ie": ["Youtube"],
|
|
||||||
"url": "http://metacafe.com/watch/yt-_aUehQsCQtM/the_electric_company_short_i_pbs_kids_go/",
|
|
||||||
"file": "_aUehQsCQtM.flv",
|
|
||||||
"info_dict": {
|
|
||||||
"upload_date": "20090102",
|
|
||||||
"title": "The Electric Company | \"Short I\" | PBS KIDS GO!",
|
|
||||||
"description": "md5:2439a8ef6d5a70e380c22f5ad323e5a8",
|
|
||||||
"uploader": "PBS",
|
|
||||||
"uploader_id": "PBS"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "BlipTV",
|
"name": "BlipTV",
|
||||||
"md5": "b2d849efcf7ee18917e4b4d9ff37cafe",
|
"md5": "b2d849efcf7ee18917e4b4d9ff37cafe",
|
||||||
|
|
|
@ -20,6 +20,20 @@ class MetacafeIE(InfoExtractor):
|
||||||
_DISCLAIMER = 'http://www.metacafe.com/family_filter/'
|
_DISCLAIMER = 'http://www.metacafe.com/family_filter/'
|
||||||
_FILTER_POST = 'http://www.metacafe.com/f/index.php?inputType=filter&controllerGroup=user'
|
_FILTER_POST = 'http://www.metacafe.com/f/index.php?inputType=filter&controllerGroup=user'
|
||||||
IE_NAME = u'metacafe'
|
IE_NAME = u'metacafe'
|
||||||
|
_TEST = {
|
||||||
|
u"name": u"Metacafe",
|
||||||
|
u"add_ie": ["Youtube"],
|
||||||
|
u"url": u"http://metacafe.com/watch/yt-_aUehQsCQtM/the_electric_company_short_i_pbs_kids_go/",
|
||||||
|
u"file": u"_aUehQsCQtM.flv",
|
||||||
|
u"info_dict": {
|
||||||
|
u"upload_date": u"20090102",
|
||||||
|
u"title": u"The Electric Company | \"Short I\" | PBS KIDS GO!",
|
||||||
|
u"description": u"md5:2439a8ef6d5a70e380c22f5ad323e5a8",
|
||||||
|
u"uploader": u"PBS",
|
||||||
|
u"uploader_id": u"PBS"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
def report_disclaimer(self):
|
def report_disclaimer(self):
|
||||||
"""Report disclaimer retrieval."""
|
"""Report disclaimer retrieval."""
|
||||||
|
|
Loading…
Reference in New Issue