Skip to content

Commit

Permalink
[bild] Make more robust and improve hls extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed Oct 11, 2015
1 parent 03e3b4e commit 7d49502
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions youtube_dl/extractor/expotv.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,25 @@ def _real_extract(self, url):
player_key = self._search_regex(
r'<param name="playerKey" value="([^"]+)"', webpage, 'player key')
config = self._download_json(
'http://client.expotv.com/video/config/%s/%s' % (video_id, player_key),
video_id,
note='Downloading video configuration')
'http://client.expotv.com/video/config/%s/%s' % (video_id, player_key),
video_id, 'Downloading video configuration')

formats = []
for fcfg in config['sources']:
if fcfg['type'] == 'm3u8':
formats.extend(self._extract_m3u8_formats(fcfg['file'], video_id))
media_url = fcfg.get('file')
if not media_url:
continue
if fcfg.get('type') == 'm3u8':
formats.extend(self._extract_m3u8_formats(
media_url, video_id, 'mp4', entry_protocol='m3u8_native', m3u8_id='hls'))
else:
formats.append({
'url': fcfg['file'],
'url': media_url,
'height': int_or_none(fcfg.get('height')),
'format_id': fcfg.get('label'),
'ext': self._search_regex(
r'filename=.*\.([a-z0-9_A-Z]+)&', fcfg['file'],
'file extension', default=None),
r'filename=.*\.([a-z0-9_A-Z]+)&', media_url,
'file extension', default=None) or fcfg.get('type'),
})
self._sort_formats(formats)

Expand Down

0 comments on commit 7d49502

Please sign in to comment.