aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-06-12 16:22:23 +0600
committerSergey M․ <dstftw@gmail.com>2015-06-12 16:22:23 +0600
commit29902c8ec016a7128557d47a7413e82d4e022f01 (patch)
treeeae234661c913bd6d0075dac5f0fae3dcbd2d3ba
parent9f15bdabc85add582d78a6dd57cfbb56cb33baff (diff)
downloadyoutube-dl-29902c8ec016a7128557d47a7413e82d4e022f01.tar.xz
[tvc:embed] Add embed extraction routine
-rw-r--r--youtube_dl/extractor/tvc.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/youtube_dl/extractor/tvc.py b/youtube_dl/extractor/tvc.py
index 0055f9598..756fec732 100644
--- a/youtube_dl/extractor/tvc.py
+++ b/youtube_dl/extractor/tvc.py
@@ -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)