Browse Source

[tvc:embed] Add embed extraction routine

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

+ 9
- 0
youtube_dl/extractor/tvc.py View File

@ -1,6 +1,8 @@
# coding: utf-8
from __future__ import unicode_literals
import re
from .common import InfoExtractor
from ..utils import (
clean_html,
@ -22,6 +24,13 @@ class TVCEmbedIE(InfoExtractor):
},
}
@classmethod
def _extract_url(cls, webpage):
mobj = re.search(
r'<iframe[^>]+?src=(["\'])(?P<url>(?:http://)?(?:www\.)?tvc\.ru/video/iframe/id/[^"]+)\1', webpage)
if mobj:
return mobj.group('url')
def _real_extract(self, url):
video_id = self._match_id(url)


Loading…
Cancel
Save