diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-06-07 16:50:19 +0200 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-06-07 16:50:19 +0200 | 
| commit | 94128d6b0d94551ea23daf59983557c777c1e251 (patch) | |
| tree | 47729f0d2fc996f313635abb2cf1888d9149bc6f /youtube_dl/extractor/nrk.py | |
| parent | 059009c592d1851c157632657b2ca53e782bdeb4 (diff) | |
[nrk] Fix test checksum
Diffstat (limited to 'youtube_dl/extractor/nrk.py')
| -rw-r--r-- | youtube_dl/extractor/nrk.py | 9 | 
1 files changed, 4 insertions, 5 deletions
diff --git a/youtube_dl/extractor/nrk.py b/youtube_dl/extractor/nrk.py index 3a6a7883e..1f066cf05 100644 --- 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 = []  | 
