diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-08-24 03:13:49 +0200 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-08-24 03:13:58 +0200 | 
| commit | 8f9b683eeb01eb60c6cf8373f0429a7f560faa1c (patch) | |
| tree | 3bcb17f0d4683a0efbd56baaae62c0d97e3f7677 | |
| parent | b5f4775b3821ed22e90cecd895977fbefbc97def (diff) | |
[blip.tv] Add legacy test case
This was broken in the mean time, so add a test case to make sure it doesn't break silently again.
| -rw-r--r-- | youtube_dl/extractor/bliptv.py | 17 | 
1 files changed, 16 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/bliptv.py b/youtube_dl/extractor/bliptv.py index acfc4ad73..4e80d8293 100644 --- a/youtube_dl/extractor/bliptv.py +++ b/youtube_dl/extractor/bliptv.py @@ -49,6 +49,21 @@ class BlipTVIE(SubtitlesInfoExtractor):                  'uploader_id': '792887',                  'duration': 279,              } +        }, +        { +            # https://bugzilla.redhat.com/show_bug.cgi?id=967465 +            'url': 'http://a.blip.tv/api.swf#h6Uag5KbVwI', +            'md5': '314e87b1ebe7a48fcbfdd51b791ce5a6', +            'info_dict': { +                'id': '6573122', +                'ext': 'mov', +                'upload_date': '20130520', +                'description': 'Two hapless space marines argue over what to do when they realize they have an astronomically huge problem on their hands.', +                'title': 'Red vs. Blue Season 11 Trailer', +                'timestamp': 1369029609, +                'uploader': 'redvsblue', +                'uploader_id': '792887', +            }          }      ] @@ -150,7 +165,7 @@ class BlipTVIE(SubtitlesInfoExtractor):  class BlipTVUserIE(InfoExtractor): -    _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?blip\.tv/)|bliptvuser:)([^/]+)/*$' +    _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?blip\.tv/)|bliptvuser:)(?!api\.swf)([^/]+)/*$'      _PAGE_SIZE = 12      IE_NAME = 'blip.tv:user' | 
