mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-09 06:27:06 +01:00
tv.nrk.no urls mostly contain capital characters
Updated regexp and one of the test cases to reflect this. tv.nrksuper.no mostly uses lowercase, so that is still there.
This commit is contained in:
parent
2371053565
commit
e6c9f80c48
@ -72,11 +72,11 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
|
|
||||||
class NRKTVIE(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 = [
|
_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',
|
'md5': '7b96112fbae1faf09a6f9ae1aff6cb84',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': 'muhh48000314',
|
'id': 'muhh48000314',
|
||||||
|
Loading…
Reference in New Issue
Block a user