Browse Source
[facebook] Fix for new handleServerJS syntax (closes #10846)
According to the dump file in #10846, handleServerJS() now accepts
an optional second argument. It's a string from available dump files.
master
Yen Chi Hsuan
8 years ago
No known key found for this signature in database
GPG Key ID: 3FDDD575826C5C30
2 changed files with
2 additions and
1 deletions
-
ChangeLog
-
youtube_dl/extractor/facebook.py
|
|
@ -1,6 +1,7 @@ |
|
|
|
version <unreleased> |
|
|
|
|
|
|
|
Extractors |
|
|
|
* [facebook] Fix video extraction (#10846) |
|
|
|
+ [commonprotocols] Support direct MMS links (#10838) |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -258,7 +258,7 @@ class FacebookIE(InfoExtractor): |
|
|
|
|
|
|
|
if not video_data: |
|
|
|
server_js_data = self._parse_json(self._search_regex( |
|
|
|
r'handleServerJS\(({.+})\);', webpage, 'server js data', default='{}'), video_id) |
|
|
|
r'handleServerJS\(({.+})(?:\);|,")', webpage, 'server js data', default='{}'), video_id) |
|
|
|
for item in server_js_data.get('instances', []): |
|
|
|
if item[1][0] == 'VideoConfig': |
|
|
|
video_data = video_data_list2dict(item[2][0]['videoData']) |
|
|
|