aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/imgur.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/imgur.py')
-rw-r--r--youtube_dl/extractor/imgur.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/youtube_dl/extractor/imgur.py b/youtube_dl/extractor/imgur.py
index 85e9344..d23489d 100644
--- a/youtube_dl/extractor/imgur.py
+++ b/youtube_dl/extractor/imgur.py
@@ -50,12 +50,10 @@ class ImgurIE(InfoExtractor):
webpage = self._download_webpage(
compat_urlparse.urljoin(url, video_id), video_id)
- width = int_or_none(self._search_regex(
- r'<param name="width" value="([0-9]+)"',
- webpage, 'width', fatal=False))
- height = int_or_none(self._search_regex(
- r'<param name="height" value="([0-9]+)"',
- webpage, 'height', fatal=False))
+ width = int_or_none(self._og_search_property(
+ 'video:width', webpage, default=None))
+ height = int_or_none(self._og_search_property(
+ 'video:height', webpage, default=None))
video_elements = self._search_regex(
r'(?s)<div class="video-elements">(.*?)</div>',