diff options
| -rw-r--r-- | youtube_dl/extractor/dotsub.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/dotsub.py b/youtube_dl/extractor/dotsub.py index f51d88a98..e9ca236d4 100644 --- a/youtube_dl/extractor/dotsub.py +++ b/youtube_dl/extractor/dotsub.py @@ -36,7 +36,8 @@ class DotsubIE(InfoExtractor):          if not video_url:              webpage = self._download_webpage(url, video_id)              video_url = self._search_regex( -                r'"file"\s*:\s*\'([^\']+)', webpage, 'video url') +                [r'<source[^>]+src="([^"]+)"', r'"file"\s*:\s*\'([^\']+)'], +                webpage, 'video url')          return {              'id': video_id,  | 
