summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-12-07 22:02:45 +0600
committerSergey M․ <dstftw@gmail.com>2015-12-07 22:02:45 +0600
commitdb7c9da871def2ab6c8520760512a976ea0fe0e7 (patch)
tree755e5d20a38ffaadd0627694d30beeef039e887c
parentbc92621adea280c93ed7ed86cc8f2bec2c27bb36 (diff)
downloadyoutube-dl-db7c9da871def2ab6c8520760512a976ea0fe0e7.tar.gz
youtube-dl-db7c9da871def2ab6c8520760512a976ea0fe0e7.tar.xz
youtube-dl-db7c9da871def2ab6c8520760512a976ea0fe0e7.zip
[pladform] Add _extract_url routine
-rw-r--r--youtube_dl/extractor/pladform.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/youtube_dl/extractor/pladform.py b/youtube_dl/extractor/pladform.py
index 551c8c9f0..bc559d1df 100644
--- a/youtube_dl/extractor/pladform.py
+++ b/youtube_dl/extractor/pladform.py
@@ -1,6 +1,8 @@
 # coding: utf-8
 from __future__ import unicode_literals
 
+import re
+
 from .common import InfoExtractor
 from ..utils import (
     ExtractorError,
@@ -44,6 +46,13 @@ class PladformIE(InfoExtractor):
         'only_matching': True,
     }]
 
+    @staticmethod
+    def _extract_url(webpage):
+        mobj = re.search(
+            r'<iframe[^>]+src="(?P<url>(?:https?:)?//out\.pladform\.ru/player\?.+?)"', webpage)
+        if mobj:
+            return mobj.group('url')
+
     def _real_extract(self, url):
         video_id = self._match_id(url)