[vgtv] extract 5 digit length video ids using both xstream and vgtv
This commit is contained in:
parent
41c3b34b1f
commit
d50116b8ac
|
@ -4,13 +4,14 @@ from __future__ import unicode_literals
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
from .xstream import XstreamIE
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
float_or_none,
|
float_or_none,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class VGTVIE(InfoExtractor):
|
class VGTVIE(XstreamIE):
|
||||||
IE_DESC = 'VGTV, BTTV, FTV, Aftenposten and Aftonbladet'
|
IE_DESC = 'VGTV, BTTV, FTV, Aftenposten and Aftonbladet'
|
||||||
|
|
||||||
_HOST_TO_APPNAME = {
|
_HOST_TO_APPNAME = {
|
||||||
|
@ -137,6 +138,15 @@ class VGTVIE(InfoExtractor):
|
||||||
raise ExtractorError(
|
raise ExtractorError(
|
||||||
'Video %s is no longer available' % video_id, expected=True)
|
'Video %s is no longer available' % video_id, expected=True)
|
||||||
|
|
||||||
|
info = {
|
||||||
|
'formats': [],
|
||||||
|
}
|
||||||
|
if len(video_id) == 5:
|
||||||
|
if appname == 'bttv':
|
||||||
|
info = self._extract_video_info('btno', video_id)
|
||||||
|
elif appname == 'aptv':
|
||||||
|
info = self._extract_video_info('ap', video_id)
|
||||||
|
|
||||||
streams = data['streamUrls']
|
streams = data['streamUrls']
|
||||||
stream_type = data.get('streamType')
|
stream_type = data.get('streamType')
|
||||||
|
|
||||||
|
@ -177,9 +187,11 @@ class VGTVIE(InfoExtractor):
|
||||||
})
|
})
|
||||||
formats.append(format_info)
|
formats.append(format_info)
|
||||||
|
|
||||||
self._sort_formats(formats)
|
info['formats'].extend(formats)
|
||||||
|
|
||||||
return {
|
self._sort_formats(info['formats'])
|
||||||
|
|
||||||
|
info.update({
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': self._live_title(data['title']) if stream_type == 'live' else data['title'],
|
'title': self._live_title(data['title']) if stream_type == 'live' else data['title'],
|
||||||
'description': data['description'],
|
'description': data['description'],
|
||||||
|
@ -187,9 +199,9 @@ class VGTVIE(InfoExtractor):
|
||||||
'timestamp': data['published'],
|
'timestamp': data['published'],
|
||||||
'duration': float_or_none(data['duration'], 1000),
|
'duration': float_or_none(data['duration'], 1000),
|
||||||
'view_count': data['displays'],
|
'view_count': data['displays'],
|
||||||
'formats': formats,
|
|
||||||
'is_live': True if stream_type == 'live' else False,
|
'is_live': True if stream_type == 'live' else False,
|
||||||
}
|
})
|
||||||
|
return info
|
||||||
|
|
||||||
|
|
||||||
class BTArticleIE(InfoExtractor):
|
class BTArticleIE(InfoExtractor):
|
||||||
|
|
|
@ -42,11 +42,7 @@ class XstreamIE(InfoExtractor):
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _extract_video_info(self, partner_id, video_id):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
|
||||||
partner_id = mobj.group('partner_id')
|
|
||||||
video_id = mobj.group('id')
|
|
||||||
|
|
||||||
data = self._download_xml(
|
data = self._download_xml(
|
||||||
'http://frontend.xstream.dk/%s/feed/video/?platform=web&id=%s'
|
'http://frontend.xstream.dk/%s/feed/video/?platform=web&id=%s'
|
||||||
% (partner_id, video_id),
|
% (partner_id, video_id),
|
||||||
|
@ -97,6 +93,7 @@ class XstreamIE(InfoExtractor):
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': link.get('href'),
|
'url': link.get('href'),
|
||||||
'format_id': link.get('rel'),
|
'format_id': link.get('rel'),
|
||||||
|
'preference': 2,
|
||||||
})
|
})
|
||||||
|
|
||||||
thumbnails = [{
|
thumbnails = [{
|
||||||
|
@ -113,3 +110,10 @@ class XstreamIE(InfoExtractor):
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
'thumbnails': thumbnails,
|
'thumbnails': thumbnails,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
mobj = re.match(self._VALID_URL, url)
|
||||||
|
partner_id = mobj.group('partner_id')
|
||||||
|
video_id = mobj.group('id')
|
||||||
|
|
||||||
|
return self._extract_video_info(partner_id, video_id)
|
||||||
|
|
Loading…
Reference in New Issue