tv.nrk.no urls mostly contain capital characters
authorAnders Einar Hilden <hildenae@gmail.com>
Mon, 16 Jun 2014 17:29:23 +0000 (19:29 +0200)
committerAnders Einar Hilden <hildenae@gmail.com>
Mon, 16 Jun 2014 17:29:23 +0000 (19:29 +0200)
Updated regexp and one of the test cases to reflect this.
tv.nrksuper.no mostly uses lowercase, so that is still there.

youtube_dl/extractor/nrk.py

index 1f066cf055344d6e760bb6b8ecc782d66a73a43e..527e431d745e4bcaa8ddfe9525e4e02d86387c90 100644 (file)
@@ -72,11 +72,11 @@ 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',
@@ -141,4 +141,4 @@ class NRKTVIE(InfoExtractor):
             'upload_date': upload_date,
             'duration': duration,
             'formats': formats,
-        }
\ No newline at end of file
+        }