aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-12-19 19:52:37 +0600
committerSergey M․ <dstftw@gmail.com>2015-12-19 19:52:37 +0600
commit989e9f8eadc936ab47fcd0b7ba63aac13020a526 (patch)
treef429a087b301bebec5adf57d0d769d82ac39354c
parent8f097af4ec5d6ff72a80c744d67f947336fecb28 (diff)
downloadyoutube-dl-989e9f8eadc936ab47fcd0b7ba63aac13020a526.tar.xz
[toggle] Improve formats extraction robustness
-rw-r--r--youtube_dl/extractor/togglesg.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/youtube_dl/extractor/togglesg.py b/youtube_dl/extractor/togglesg.py
index 36367971f..47b2bfcb8 100644
--- a/youtube_dl/extractor/togglesg.py
+++ b/youtube_dl/extractor/togglesg.py
@@ -124,12 +124,15 @@ class ToggleSgIE(InfoExtractor):
formats = []
for video_file in info.get('Files', []):
- ext = determine_ext(video_file['URL'])
- vid_format = video_file['Format'].replace(' ', '')
+ video_url, vid_format = video_file.get('URL'), video_file.get('Format')
+ if not video_url or not vid_format:
+ continue
+ ext = determine_ext(video_url)
+ vid_format = vid_format.replace(' ', '')
# if geo-restricted, m3u8 is inaccessible, but mp4 is okay
if ext == 'm3u8':
m3u8_formats = self._extract_m3u8_formats(
- video_file['URL'], video_id, ext='mp4', m3u8_id=vid_format,
+ video_url, video_id, ext='mp4', m3u8_id=vid_format,
note='Downloading %s m3u8 information' % vid_format,
errnote='Failed to download %s m3u8 information' % vid_format,
fatal=False)
@@ -139,7 +142,7 @@ class ToggleSgIE(InfoExtractor):
# wvm are drm-protected files
formats.append({
'ext': ext,
- 'url': video_file['URL'],
+ 'url': video_url,
'format_id': vid_format,
'preference': self._FORMAT_PREFERENCES.get(ext + '-' + vid_format) or -1,
'format_note': 'DRM-protected video' if ext == 'wvm' else None