[facebook] Improve video selection (closes #11390)

This commit is contained in:
Sergey M․ 2016-12-11 01:22:01 +07:00
parent 6ca478d44a
commit 19b4900b7b
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

View File

@ -244,7 +244,9 @@ def _extract_from_url(self, url, video_id, fatal_if_no_video=True):
r'handleServerJS\(({.+})(?:\);|,")', webpage, 'server js data', default='{}'), video_id)
for item in server_js_data.get('instances', []):
if item[1][0] == 'VideoConfig':
video_data = item[2][0]['videoData']
video_item = item[2][0]
if video_item.get('video_id') == video_id:
video_data = video_item['videoData']
break
if not video_data: