Browse Source

Fix blip.tv regular expression to not match blipXtv

master
Philipp Hagemeister 13 years ago
parent
commit
1cab2c6dcf
1 changed files with 1 additions and 1 deletions
  1. 2
      youtube-dl

2
youtube-dl

@ -2741,7 +2741,7 @@ class FacebookIE(InfoExtractor):
class BlipTVIE(InfoExtractor): class BlipTVIE(InfoExtractor):
"""Information extractor for blip.tv""" """Information extractor for blip.tv"""
_VALID_URL = r'^(?:https?://)?(?:\w+\.)?blip.tv(/.+)$'
_VALID_URL = r'^(?:https?://)?(?:\w+\.)?blip\.tv(/.+)$'
_URL_EXT = r'^.*\.([a-z0-9]+)$' _URL_EXT = r'^.*\.([a-z0-9]+)$'
@staticmethod @staticmethod

Loading…
Cancel
Save