소스 검색

[onionstudios] Add generic embed extraction routine

Sergey M․ 10 년 전
부모
커밋
d4f58034f7
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      youtube_dl/extractor/onionstudios.py

+ 7 - 0
youtube_dl/extractor/onionstudios.py

@@ -27,6 +27,13 @@ class OnionStudiosIE(InfoExtractor):
         'only_matching': True,
     }]
 
+    @staticmethod
+    def _extract_url(webpage):
+        mobj = re.search(
+            r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?onionstudios\.com/embed.+?)\1', webpage)
+        if mobj:
+            return mobj.group('url')
+
     def _real_extract(self, url):
         video_id = self._match_id(url)