Browse Source

[tvc] Fix embed regex

totalwebcasting
Sergey M․ 9 years ago
parent
commit
3d535e0471
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/tvc.py

+ 1
- 1
youtube_dl/extractor/tvc.py View File

@ -27,7 +27,7 @@ class TVCIE(InfoExtractor):
@classmethod
def _extract_url(cls, webpage):
mobj = re.search(
r'<iframe[^>]+?src=(["\'])(?P<url>(?:http://)?(?:www\.)?tvc\.ru/video/iframe/id/[^"]+)\1', webpage)
r'<iframe[^>]+?src=(["\'])(?P<url>(?:http:)?//(?:www\.)?tvc\.ru/video/iframe/id/[^"]+)\1', webpage)
if mobj:
return mobj.group('url')


Loading…
Cancel
Save