From 0d9ec5d9630afa298f8b9acdfae0d85fbaa3fe58 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Sat, 7 Dec 2013 10:59:18 +0100 Subject: [PATCH] [pyvideo] Cleanup and fix test --- youtube_dl/extractor/pyvideo.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/youtube_dl/extractor/pyvideo.py b/youtube_dl/extractor/pyvideo.py index 5c47993e7..e28ca3fb6 100644 --- a/youtube_dl/extractor/pyvideo.py +++ b/youtube_dl/extractor/pyvideo.py @@ -1,18 +1,22 @@ import re from .common import InfoExtractor -from ..utils import determine_ext class PyvideoIE(InfoExtractor): _VALID_URL = r'(?:http://)?(?:www\.)?pyvideo\.org/video/(\d+)/(.*)' _TEST = { u'url': u'http://pyvideo.org/video/1737/become-a-logging-expert-in-30-minutes', - u'file': u'Become a logging expert in 30 minutes-24_4WWkSmNo.mp4', - u'md5': u'bf08cae24e1601027f98ae1262c299ad', + u'file': u'24_4WWkSmNo.mp4', + u'md5': u'de317418c8bc76b1fd8633e4f32acbc6', u'info_dict': { - u"title": u"Become a logging expert in 30 minutes" - } + u"title": u"Become a logging expert in 30 minutes", + u"description": u"md5:9665350d466c67fb5b1598de379021f7", + u"upload_date": u"20130320", + u"uploader": u"NextDayVideo", + u"uploader_id": u"NextDayVideo", + }, + u'add_ie': ['Youtube'], } def _real_extract(self, url): -- 2.30.2