mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
Fix exception with n_views<1000
This commit is contained in:
parent
12c82cf9cb
commit
9c4c233b84
1 changed files with 5 additions and 1 deletions
|
@ -35,7 +35,11 @@ def _real_extract(self, url):
|
|||
duration = int(mobj.group('minutes')) * 60 + int(mobj.group('seconds')) if mobj else None
|
||||
|
||||
mobj = re.search(r'<span>((?P<thousands>\d+),)?(?P<units>\d+) VIEWS</span>', webpage)
|
||||
view_count = int(mobj.group('thousands')) * 1000 + int(mobj.group('units')) if mobj else None
|
||||
try:
|
||||
view_count = int(mobj.group('units'))
|
||||
view_count += int(mobj.group('thousands')) * 1000
|
||||
except:
|
||||
pass
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
|
|
Loading…
Reference in a new issue