[facebook] Improve video selection (closes #11390)
This commit is contained in:
parent
6ca478d44a
commit
19b4900b7b
1 changed files with 4 additions and 2 deletions
|
@ -244,7 +244,9 @@ class FacebookIE(InfoExtractor):
|
|||
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:
|
||||
|
|
Loading…
Reference in a new issue