Browse Source

[facebook] Recognize .onion URLs (closes #11443)

totalwebcasting
Yen Chi Hsuan 8 years ago
parent
commit
30918999f5
No known key found for this signature in database GPG Key ID: 7F902A182457CA23
2 changed files with 9 additions and 1 deletions
  1. +5
    -0
      ChangeLog
  2. +4
    -1
      youtube_dl/extractor/facebook.py

+ 5
- 0
ChangeLog View File

@ -1,3 +1,8 @@
version <unreleased>
Extractors
+ [facebook] Recognize .onion URLs (#11443)
version 2016.12.12 version 2016.12.12
Core Core


+ 4
- 1
youtube_dl/extractor/facebook.py View File

@ -27,7 +27,7 @@ class FacebookIE(InfoExtractor):
_VALID_URL = r'''(?x) _VALID_URL = r'''(?x)
(?: (?:
https?:// https?://
(?:[\w-]+\.)?facebook\.com/
(?:[\w-]+\.)?(?:facebook\.com|facebookcorewwwi\.onion)/
(?:[^#]*?\#!/)? (?:[^#]*?\#!/)?
(?: (?:
(?: (?:
@ -150,6 +150,9 @@ class FacebookIE(InfoExtractor):
}, { }, {
'url': 'https://zh-hk.facebook.com/peoplespower/videos/1135894589806027/', 'url': 'https://zh-hk.facebook.com/peoplespower/videos/1135894589806027/',
'only_matching': True, 'only_matching': True,
}, {
'url': 'https://www.facebookcorewwwi.onion/video.php?v=274175099429670',
'only_matching': True,
}] }]
@staticmethod @staticmethod


Loading…
Cancel
Save