Browse Source

[BlipTV] Allow plus sign in video ID

Michael Smith 11 years ago
parent
commit
b7c33124c8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/bliptv.py

+ 1 - 1
youtube_dl/extractor/bliptv.py

@@ -15,7 +15,7 @@ from ..utils import (
 
 
 
 
 class BlipTVIE(SubtitlesInfoExtractor):
 class BlipTVIE(SubtitlesInfoExtractor):
-    _VALID_URL = r'https?://(?:\w+\.)?blip\.tv/(?:(?:.+-|rss/flash/)(?P<id>\d+)|((?:play/|api\.swf#)(?P<lookup_id>[\da-zA-Z]+)))'
+    _VALID_URL = r'https?://(?:\w+\.)?blip\.tv/(?:(?:.+-|rss/flash/)(?P<id>\d+)|((?:play/|api\.swf#)(?P<lookup_id>[\da-zA-Z+]+)))'
 
 
     _TESTS = [
     _TESTS = [
         {
         {