youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 94128d6b0d94551ea23daf59983557c777c1e251
parent 059009c592d1851c157632657b2ca53e782bdeb4
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sat,  7 Jun 2014 16:50:19 +0200

[nrk] Fix test checksum

Diffstat:
Myoutube_dl/extractor/nrk.py | 9++++-----
1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/youtube_dl/extractor/nrk.py b/youtube_dl/extractor/nrk.py @@ -6,7 +6,7 @@ import re from .common import InfoExtractor from ..utils import ( ExtractorError, - int_or_none, + float_or_none, unified_strdate, ) @@ -89,7 +89,7 @@ class NRKTVIE(InfoExtractor): }, { 'url': 'http://tv.nrk.no/program/mdfp15000514', - 'md5': '383650ece2b25ecec996ad7b5bb2a384', + 'md5': 'af01795a31f1cf7265c8657534d8077b', 'info_dict': { 'id': 'mdfp15000514', 'ext': 'flv', @@ -111,9 +111,8 @@ class NRKTVIE(InfoExtractor): description = self._html_search_meta('description', page, 'description') thumbnail = self._html_search_regex(r'data-posterimage="([^"]+)"', page, 'thumbnail', fatal=False) upload_date = unified_strdate(self._html_search_meta('rightsfrom', page, 'upload date', fatal=False)) - duration = self._html_search_regex(r'data-duration="([^"]+)"', page, 'duration', fatal=False) - if duration: - duration = float(duration) + duration = float_or_none( + self._html_search_regex(r'data-duration="([^"]+)"', page, 'duration', fatal=False)) formats = []