logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: f04cfe24e0554ca7e08db94ef138d44d22493af0
parent 20c50c65566be31607e59d7ca2467c664a29c843
Author: JChris246 <43832407+JChris246@users.noreply.github.com>
Date:   Sat, 28 Nov 2020 15:32:13 -0400

[pornhub] Fix like and dislike count extraction (closes #27227) (#27234)


Diffstat:

Myoutube_dl/extractor/pornhub.py4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/pornhub.py b/youtube_dl/extractor/pornhub.py @@ -346,9 +346,9 @@ class PornHubIE(PornHubBaseIE): view_count = self._extract_count( r'<span class="count">([\d,\.]+)</span> [Vv]iews', webpage, 'view') like_count = self._extract_count( - r'<span class="votesUp">([\d,\.]+)</span>', webpage, 'like') + r'<span[^>]+class="votesUp"[^>]*>([\d,\.]+)</span>', webpage, 'like') dislike_count = self._extract_count( - r'<span class="votesDown">([\d,\.]+)</span>', webpage, 'dislike') + r'<span[^>]+class="votesDown"[^>]*>([\d,\.]+)</span>', webpage, 'dislike') comment_count = self._extract_count( r'All Comments\s*<span>\(([\d,.]+)\)', webpage, 'comment')