mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-22 16:44:32 +01:00
[expressen] make extractor work with more URLs
This commit is contained in:
parent
d65d89183f
commit
a9dcb076cb
@ -4,14 +4,17 @@ from __future__ import unicode_literals
|
|||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
from ..compat import (
|
||||||
|
compat_HTTPError,
|
||||||
|
)
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
determine_ext,
|
determine_ext,
|
||||||
int_or_none,
|
int_or_none,
|
||||||
unescapeHTML,
|
unescapeHTML,
|
||||||
unified_timestamp,
|
unified_timestamp,
|
||||||
|
ExtractorError,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class ExpressenIE(InfoExtractor):
|
class ExpressenIE(InfoExtractor):
|
||||||
_VALID_URL = r'''(?x)
|
_VALID_URL = r'''(?x)
|
||||||
https?://
|
https?://
|
||||||
@ -44,6 +47,25 @@ class ExpressenIE(InfoExtractor):
|
|||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://www.di.se/videoplayer/embed/tv/ditv/borsmorgon/implantica-rusar-70--under-borspremiaren-hor-styrelsemedlemmen/?embed=true&external=true&autoplay=true&startVolume=0&partnerId=di',
|
'url': 'https://www.di.se/videoplayer/embed/tv/ditv/borsmorgon/implantica-rusar-70--under-borspremiaren-hor-styrelsemedlemmen/?embed=true&external=true&autoplay=true&startVolume=0&partnerId=di',
|
||||||
|
}, {
|
||||||
|
'url': 'https://www.expressen.se/tv/livsstil/halsoliv/5-harliga-fakta-om-kaffe/',
|
||||||
|
'md5': '4d4572e17d2bec5fa2c144bb63857934',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '8790448',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': '5 härliga fakta om kaffe',
|
||||||
|
'description': 'md5:b7faa986d02765cdd7ccaa0db4673258',
|
||||||
|
'thumbnail': r're:^https?://.*\.jpg$',
|
||||||
|
'duration': 56,
|
||||||
|
'timestamp': 1531986096,
|
||||||
|
'upload_date': '20180719'
|
||||||
|
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
'url': 'https://www.expressen.se/videoplayer/embed/tv/livsstil/halsoliv/5-harliga-fakta-om-kaffe',
|
||||||
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'https://www.expressen.se/tv/livsstil/halsoliv/har-gifter-de-sig-pa-10-000-meters-hojd/',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
@ -57,7 +79,10 @@ class ExpressenIE(InfoExtractor):
|
|||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
display_id = self._match_id(url)
|
display_id = self._match_id(url)
|
||||||
|
|
||||||
webpage = self._download_webpage(url, display_id)
|
original_url = url
|
||||||
|
embed_url = url.replace('expressen.se/tv/', 'expressen.se/videoplayer/embed/tv/')
|
||||||
|
|
||||||
|
urls = (embed_url, original_url)
|
||||||
|
|
||||||
def extract_data(name):
|
def extract_data(name):
|
||||||
return self._parse_json(
|
return self._parse_json(
|
||||||
@ -66,6 +91,19 @@ class ExpressenIE(InfoExtractor):
|
|||||||
webpage, 'info', group='value'),
|
webpage, 'info', group='value'),
|
||||||
display_id, transform_source=unescapeHTML)
|
display_id, transform_source=unescapeHTML)
|
||||||
|
|
||||||
|
for url in urls:
|
||||||
|
last = url == urls[len(urls) - 1]
|
||||||
|
|
||||||
|
try:
|
||||||
|
webpage = self._download_webpage(url, display_id)
|
||||||
|
|
||||||
|
except ExtractorError as e:
|
||||||
|
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 404:
|
||||||
|
if not last:
|
||||||
|
continue
|
||||||
|
raise ExtractorError('Video not found', expected=True)
|
||||||
|
|
||||||
|
try:
|
||||||
info = extract_data('video-tracking-info')
|
info = extract_data('video-tracking-info')
|
||||||
video_id = info['videoId']
|
video_id = info['videoId']
|
||||||
|
|
||||||
@ -80,6 +118,15 @@ class ExpressenIE(InfoExtractor):
|
|||||||
formats = [{
|
formats = [{
|
||||||
'url': stream,
|
'url': stream,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
except (ExtractorError, KeyError) as e:
|
||||||
|
formats = None
|
||||||
|
|
||||||
|
if formats:
|
||||||
|
break
|
||||||
|
elif last:
|
||||||
|
raise ExtractorError('Video not found', expected=True)
|
||||||
|
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
title = info.get('titleRaw') or data['title']
|
title = info.get('titleRaw') or data['title']
|
||||||
|
Loading…
Reference in New Issue
Block a user