浏览代码

[pladform] Add _extract_url routine

Sergey M․ 9 年之前
父节点
当前提交
db7c9da871
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9 0
      youtube_dl/extractor/pladform.py

+ 9 - 0
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)