about summary refs log tree commit diff
path: root/youtube_dl/extractor/xhamster.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-06-21 23:11:25 +0600
committerSergey M․ <dstftw@gmail.com>2015-06-21 23:11:25 +0600
commit2bb5b6d0a1671957c7a2e6d6433901b2a1b8f48f (patch)
treeadf8fb532a2195547875452cc8560ef4cc8cdeb3 /youtube_dl/extractor/xhamster.py
parent0bbba43ed0c68b612fcafbdad460a93b733b9f87 (diff)
downloadyoutube-dl-2bb5b6d0a1671957c7a2e6d6433901b2a1b8f48f.tar.gz
youtube-dl-2bb5b6d0a1671957c7a2e6d6433901b2a1b8f48f.tar.xz
youtube-dl-2bb5b6d0a1671957c7a2e6d6433901b2a1b8f48f.zip
[generic] Add support for xhamster embeds
Diffstat (limited to 'youtube_dl/extractor/xhamster.py')
-rw-r--r--youtube_dl/extractor/xhamster.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/youtube_dl/extractor/xhamster.py b/youtube_dl/extractor/xhamster.py
index ae3c5962b..725e01ac3 100644
--- a/youtube_dl/extractor/xhamster.py
+++ b/youtube_dl/extractor/xhamster.py
@@ -149,6 +149,12 @@ class XHamsterEmbedIE(InfoExtractor):
         }
     }
 
+    @staticmethod
+    def _extract_urls(webpage):
+        return [url for _, url in re.findall(
+            r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?xhamster\.com/xembed\.php\?video=\d+)\1',
+            webpage)]
+
     def _real_extract(self, url):
         video_id = self._match_id(url)