about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-15 12:16:37 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-15 12:18:39 +0200
commitcdbccafed9e5852a8d6ceb9b09058520078d37f5 (patch)
tree074dafbfdb7ee9f8789217e609b95be6c4b068bf
parente69ae5b9e74910541e75eea4c8dfc13066f28f65 (diff)
parent9a1c32dc54fdefcd6b5e03fac1a0dd65383b6f99 (diff)
downloadyoutube-dl-cdbccafed9e5852a8d6ceb9b09058520078d37f5.tar.gz
youtube-dl-cdbccafed9e5852a8d6ceb9b09058520078d37f5.tar.xz
youtube-dl-cdbccafed9e5852a8d6ceb9b09058520078d37f5.zip
Merge pull request #1422 from rzhxeo/xhamster
XHamsterIE: Add support for new URL format (download in hd by default)
-rw-r--r--youtube_dl/extractor/xhamster.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/xhamster.py b/youtube_dl/extractor/xhamster.py
index 88b8b6be0..fa759d30c 100644
--- a/youtube_dl/extractor/xhamster.py
+++ b/youtube_dl/extractor/xhamster.py
@@ -27,7 +27,7 @@ class XHamsterIE(InfoExtractor):
         mobj = re.match(self._VALID_URL, url)
 
         video_id = mobj.group('id')
-        mrss_url = 'http://xhamster.com/movies/%s/.html' % video_id
+        mrss_url = 'http://xhamster.com/movies/%s/.html?hd' % video_id
         webpage = self._download_webpage(mrss_url, video_id)
 
         mobj = re.search(r'\'srv\': \'(?P<server>[^\']*)\',\s*\'file\': \'(?P<file>[^\']+)\',', webpage)