Skip to content

Commit

Permalink
Merge branch 'master' of github.com:rg3/youtube-dl
Browse files Browse the repository at this point in the history
  • Loading branch information
phihag committed Aug 25, 2014
2 parents 0990305 + bcc069a commit f971dcb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/bliptv.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


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

_TESTS = [
{
Expand Down
1 change: 0 additions & 1 deletion youtube_dl/extractor/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,6 @@ def _playlist_from_matches(matches, getter, ie=None):
\s*{[^}]+? ["']?clip["']?\s*:\s*\{\s*
["']?url["']?\s*:\s*["']([^"']+)["']
''', webpage)
assert found
if not found:
# Try to find twitter cards info
found = re.findall(r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage)
Expand Down

0 comments on commit f971dcb

Please sign in to comment.