|
|
@ -13,7 +13,7 @@ from ..utils import ( |
|
|
|
|
|
|
|
|
|
|
|
class NRKIE(InfoExtractor): |
|
|
|
_VALID_URL = r'(?:nrk:|http://(?:www\.)?nrk\.no/video/PS\*)(?P<id>\d+)' |
|
|
|
_VALID_URL = r'(?:nrk:|https?://(?:www\.)?nrk\.no/video/PS\*)(?P<id>\d+)' |
|
|
|
|
|
|
|
_TESTS = [ |
|
|
|
{ |
|
|
@ -76,7 +76,7 @@ class NRKIE(InfoExtractor): |
|
|
|
|
|
|
|
|
|
|
|
class NRKPlaylistIE(InfoExtractor): |
|
|
|
_VALID_URL = r'http://(?:www\.)?nrk\.no/(?!video)(?:[^/]+/)+(?P<id>[^/]+)' |
|
|
|
_VALID_URL = r'https?://(?:www\.)?nrk\.no/(?!video)(?:[^/]+/)+(?P<id>[^/]+)' |
|
|
|
|
|
|
|
_TESTS = [{ |
|
|
|
'url': 'http://www.nrk.no/troms/gjenopplev-den-historiske-solformorkelsen-1.12270763', |
|
|
@ -116,11 +116,11 @@ class NRKPlaylistIE(InfoExtractor): |
|
|
|
|
|
|
|
|
|
|
|
class NRKTVIE(InfoExtractor): |
|
|
|
_VALID_URL = r'(?P<baseurl>http://tv\.nrk(?:super)?\.no/)(?:serie/[^/]+|program)/(?P<id>[a-zA-Z]{4}\d{8})(?:/\d{2}-\d{2}-\d{4})?(?:#del=(?P<part_id>\d+))?' |
|
|
|
_VALID_URL = r'(?P<baseurl>https?://tv\.nrk(?:super)?\.no/)(?:serie/[^/]+|program)/(?P<id>[a-zA-Z]{4}\d{8})(?:/\d{2}-\d{2}-\d{4})?(?:#del=(?P<part_id>\d+))?' |
|
|
|
|
|
|
|
_TESTS = [ |
|
|
|
{ |
|
|
|
'url': 'http://tv.nrk.no/serie/20-spoersmaal-tv/MUHH48000314/23-05-2014', |
|
|
|
'url': 'https://tv.nrk.no/serie/20-spoersmaal-tv/MUHH48000314/23-05-2014', |
|
|
|
'md5': 'adf2c5454fa2bf032f47a9f8fb351342', |
|
|
|
'info_dict': { |
|
|
|
'id': 'MUHH48000314', |
|
|
@ -132,7 +132,7 @@ class NRKTVIE(InfoExtractor): |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
'url': 'http://tv.nrk.no/program/mdfp15000514', |
|
|
|
'url': 'https://tv.nrk.no/program/mdfp15000514', |
|
|
|
'md5': '383650ece2b25ecec996ad7b5bb2a384', |
|
|
|
'info_dict': { |
|
|
|
'id': 'mdfp15000514', |
|
|
@ -145,7 +145,7 @@ class NRKTVIE(InfoExtractor): |
|
|
|
}, |
|
|
|
{ |
|
|
|
# single playlist video |
|
|
|
'url': 'http://tv.nrk.no/serie/tour-de-ski/MSPO40010515/06-01-2015#del=2', |
|
|
|
'url': 'https://tv.nrk.no/serie/tour-de-ski/MSPO40010515/06-01-2015#del=2', |
|
|
|
'md5': 'adbd1dbd813edaf532b0a253780719c2', |
|
|
|
'info_dict': { |
|
|
|
'id': 'MSPO40010515-part2', |
|
|
@ -157,7 +157,7 @@ class NRKTVIE(InfoExtractor): |
|
|
|
'skip': 'Only works from Norway', |
|
|
|
}, |
|
|
|
{ |
|
|
|
'url': 'http://tv.nrk.no/serie/tour-de-ski/MSPO40010515/06-01-2015', |
|
|
|
'url': 'https://tv.nrk.no/serie/tour-de-ski/MSPO40010515/06-01-2015', |
|
|
|
'playlist': [ |
|
|
|
{ |
|
|
|
'md5': '9480285eff92d64f06e02a5367970a7a', |
|
|
|