Browse Source

FacebookIE: Not all videos are available in all formats.

rtmp_test
Rogério Brito 13 years ago
parent
commit
0067bbe7a7
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube-dl

+ 2
- 1
youtube-dl View File

@ -2712,8 +2712,9 @@ class FacebookIE(InfoExtractor):
_VALID_URL = r'^(?:https?://)?(?:\w+\.)?facebook\.com/video/video\.php\?(?:.*?)v=(?P<ID>\d+)(?:.*)'
_LOGIN_URL = 'https://login.facebook.com/login.php?m&next=http%3A%2F%2Fm.facebook.com%2Fhome.php&'
_NETRC_MACHINE = 'facebook'
_available_formats = ['highqual', 'lowqual']
_available_formats = ['video', 'highqual', 'lowqual']
_video_extensions = {
'video': 'mp4',
'highqual': 'mp4',
'lowqual': 'mp4',
}


Loading…
Cancel
Save