diff options
| author | Sergey M. <dstftw@gmail.com> | 2014-06-17 02:21:10 +0700 | 
|---|---|---|
| committer | Sergey M. <dstftw@gmail.com> | 2014-06-17 02:21:10 +0700 | 
| commit | b60a4690238d78c3f1fe66fb4906814b47116dd0 (patch) | |
| tree | 88bd996f73e2ce7beaae4891b93d4c262a9ebb59 | |
| parent | 2371053565787dc833b04a6d8a45730d61ae7074 (diff) | |
| parent | 70126312570805b09efcbb511d6d049b8de30c01 (diff) | |
Merge pull request #3090 from Kagee/patch-1
tv.nrk.no urls mostly contain capital characters
| -rw-r--r-- | youtube_dl/extractor/nrk.py | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/youtube_dl/extractor/nrk.py b/youtube_dl/extractor/nrk.py index 1f066cf05..96f0ae1eb 100644 --- a/youtube_dl/extractor/nrk.py +++ b/youtube_dl/extractor/nrk.py @@ -72,14 +72,14 @@ class NRKIE(InfoExtractor):  class NRKTVIE(InfoExtractor): -    _VALID_URL = r'http://tv\.nrk(?:super)?\.no/(?:serie/[^/]+|program)/(?P<id>[a-z]{4}\d{8})' +    _VALID_URL = r'http://tv\.nrk(?:super)?\.no/(?:serie/[^/]+|program)/(?P<id>[a-zA-Z]{4}\d{8})'      _TESTS = [          { -            'url': 'http://tv.nrk.no/serie/20-spoersmaal-tv/muhh48000314/23-05-2014', +            'url': 'http://tv.nrk.no/serie/20-spoersmaal-tv/MUHH48000314/23-05-2014',              'md5': '7b96112fbae1faf09a6f9ae1aff6cb84',              'info_dict': { -                'id': 'muhh48000314', +                'id': 'MUHH48000314',                  'ext': 'flv',                  'title': '20 spørsmål',                  'description': 'md5:bdea103bc35494c143c6a9acdd84887a', @@ -141,4 +141,4 @@ class NRKTVIE(InfoExtractor):              'upload_date': upload_date,              'duration': duration,              'formats': formats, -        }
\ No newline at end of file +        }  | 
