youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit c2a453b46177787d5cc17e09cedb3eca215ab159
parent cd29eaab955b930fc7ee595553d6351ad643569d
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 13 Aug 2016 16:46:07 +0700

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

Diffstat:
Myoutube_dl/extractor/imgur.py | 10++++------
1 file changed, 4 insertions(+), 6 deletions(-)

diff --git 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>',