Browse Source

[imgur] Fix width and height extraction (Closes #10325)

totalwebcasting
Sergey M․ 8 years ago
parent
commit
c2a453b461
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 4 additions and 6 deletions
  1. +4
    -6
      youtube_dl/extractor/imgur.py

+ 4
- 6
youtube_dl/extractor/imgur.py View File

@ -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>',


Loading…
Cancel
Save