|
|
@ -1,7 +1,10 @@
|
|
|
|
import re
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import determine_ext
|
|
|
|
from ..utils import (
|
|
|
|
|
|
|
|
int_or_none,
|
|
|
|
|
|
|
|
parse_duration,
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CNNIE(InfoExtractor):
|
|
|
|
class CNNIE(InfoExtractor):
|
|
|
@ -15,6 +18,8 @@ class CNNIE(InfoExtractor):
|
|
|
|
u'info_dict': {
|
|
|
|
u'info_dict': {
|
|
|
|
u'title': u'Nadal wins 8th French Open title',
|
|
|
|
u'title': u'Nadal wins 8th French Open title',
|
|
|
|
u'description': u'World Sport\'s Amanda Davies chats with 2013 French Open champion Rafael Nadal.',
|
|
|
|
u'description': u'World Sport\'s Amanda Davies chats with 2013 French Open champion Rafael Nadal.',
|
|
|
|
|
|
|
|
u'duration': 135,
|
|
|
|
|
|
|
|
u'upload_date': u'20130609',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -35,22 +40,58 @@ class CNNIE(InfoExtractor):
|
|
|
|
info = self._download_xml(info_url, page_title)
|
|
|
|
info = self._download_xml(info_url, page_title)
|
|
|
|
|
|
|
|
|
|
|
|
formats = []
|
|
|
|
formats = []
|
|
|
|
|
|
|
|
rex = re.compile(r'''(?x)
|
|
|
|
|
|
|
|
(?P<width>[0-9]+)x(?P<height>[0-9]+)
|
|
|
|
|
|
|
|
(?:_(?P<bitrate>[0-9]+)k)?
|
|
|
|
|
|
|
|
''')
|
|
|
|
for f in info.findall('files/file'):
|
|
|
|
for f in info.findall('files/file'):
|
|
|
|
mf = re.match(r'(\d+)x(\d+)(?:_(.*)k)?',f.attrib['bitrate'])
|
|
|
|
video_url = 'http://ht.cdn.turner.com/cnn/big%s' % (f.text.strip())
|
|
|
|
if mf is not None:
|
|
|
|
fdct = {
|
|
|
|
formats.append((int(mf.group(1)), int(mf.group(2)), int(mf.group(3) or 0), f.text))
|
|
|
|
'format_id': f.attrib['bitrate'],
|
|
|
|
formats = sorted(formats)
|
|
|
|
'url': video_url,
|
|
|
|
(_,_,_, video_path) = formats[-1]
|
|
|
|
}
|
|
|
|
video_url = 'http://ht.cdn.turner.com/cnn/big%s' % video_path
|
|
|
|
|
|
|
|
|
|
|
|
mf = rex.match(f.attrib['bitrate'])
|
|
|
|
|
|
|
|
if mf:
|
|
|
|
|
|
|
|
fdct['width'] = int(mf.group('width'))
|
|
|
|
|
|
|
|
fdct['height'] = int(mf.group('height'))
|
|
|
|
|
|
|
|
fdct['tbr'] = int_or_none(mf.group('bitrate'))
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
mf = rex.search(f.text)
|
|
|
|
|
|
|
|
if mf:
|
|
|
|
|
|
|
|
fdct['width'] = int(mf.group('width'))
|
|
|
|
|
|
|
|
fdct['height'] = int(mf.group('height'))
|
|
|
|
|
|
|
|
fdct['tbr'] = int_or_none(mf.group('bitrate'))
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
mi = re.match(r'ios_(audio|[0-9]+)$', f.attrib['bitrate'])
|
|
|
|
|
|
|
|
if mi:
|
|
|
|
|
|
|
|
if mi.group(1) == 'audio':
|
|
|
|
|
|
|
|
fdct['vcodec'] = 'none'
|
|
|
|
|
|
|
|
fdct['ext'] = 'm4a'
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
fdct['tbr'] = int(mi.group(1))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
formats.append(fdct)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
|
|
|
|
|
|
|
thumbnails = sorted([((int(t.attrib['height']),int(t.attrib['width'])), t.text) for t in info.findall('images/image')])
|
|
|
|
thumbnails = sorted([((int(t.attrib['height']),int(t.attrib['width'])), t.text) for t in info.findall('images/image')])
|
|
|
|
thumbs_dict = [{'resolution': res, 'url': t_url} for (res, t_url) in thumbnails]
|
|
|
|
thumbs_dict = [{'resolution': res, 'url': t_url} for (res, t_url) in thumbnails]
|
|
|
|
|
|
|
|
|
|
|
|
return {'id': info.attrib['id'],
|
|
|
|
metas_el = info.find('metas')
|
|
|
|
|
|
|
|
upload_date = (
|
|
|
|
|
|
|
|
metas_el.attrib.get('version') if metas_el is not None else None)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
duration_el = info.find('length')
|
|
|
|
|
|
|
|
duration = parse_duration(duration_el.text)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
'id': info.attrib['id'],
|
|
|
|
'title': info.find('headline').text,
|
|
|
|
'title': info.find('headline').text,
|
|
|
|
'url': video_url,
|
|
|
|
'formats': formats,
|
|
|
|
'ext': determine_ext(video_url),
|
|
|
|
|
|
|
|
'thumbnail': thumbnails[-1][1],
|
|
|
|
'thumbnail': thumbnails[-1][1],
|
|
|
|
'thumbnails': thumbs_dict,
|
|
|
|
'thumbnails': thumbs_dict,
|
|
|
|
'description': info.find('description').text,
|
|
|
|
'description': info.find('description').text,
|
|
|
|
|
|
|
|
'duration': duration,
|
|
|
|
|
|
|
|
'upload_date': upload_date,
|
|
|
|
}
|
|
|
|
}
|
|
|
|