projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f15bda
)
[tvc:embed] Add embed extraction routine
author
Sergey M․
<dstftw@gmail.com>
Fri, 12 Jun 2015 10:22:23 +0000
(16:22 +0600)
committer
Sergey M․
<dstftw@gmail.com>
Fri, 12 Jun 2015 10:22:23 +0000
(16:22 +0600)
youtube_dl/extractor/tvc.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/tvc.py
b/youtube_dl/extractor/tvc.py
index 0055f9598ec12422da069b4c16036bad5c071ebe..756fec7329c3adeb3dc74c947beaab5157d9ea1c 100644
(file)
--- 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)