1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-01 13:41:00 +02:00

Merge branch 'RedpointsBots-bugfix_youtube_like_extraction'

This commit is contained in:
Tom-Oliver Heidel 2020-10-07 05:13:32 +02:00
commit 929eeb1e01

View File

@ -2421,7 +2421,7 @@ def extract_meta(field):
def _extract_count(count_name):
return str_to_int(self._search_regex(
r'-%s-button[^>]+><span[^>]+class="yt-uix-button-content"[^>]*>([\d,]+)</span>'
r'"accessibilityData":\{"label":"([\d,\w]+) %ss"\}'
% re.escape(count_name),
video_webpage, count_name, default=None))