mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
[goldenmoustache] Remove view count
view count is not present anymore, so we can't extract it.
This commit is contained in:
parent
025f30ba38
commit
751536f5c8
@ -17,7 +17,6 @@ class GoldenMoustacheIE(InfoExtractor):
|
|||||||
'title': 'Suricate - Le Poker',
|
'title': 'Suricate - Le Poker',
|
||||||
'description': 'md5:3d1f242f44f8c8cb0a106f1fd08e5dc9',
|
'description': 'md5:3d1f242f44f8c8cb0a106f1fd08e5dc9',
|
||||||
'thumbnail': 're:^https?://.*\.jpg$',
|
'thumbnail': 're:^https?://.*\.jpg$',
|
||||||
'view_count': int,
|
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
'url': 'http://www.goldenmoustache.com/le-lab-tout-effacer-mc-fly-et-carlito-55249/',
|
'url': 'http://www.goldenmoustache.com/le-lab-tout-effacer-mc-fly-et-carlito-55249/',
|
||||||
@ -28,7 +27,6 @@ class GoldenMoustacheIE(InfoExtractor):
|
|||||||
'title': 'Le LAB - Tout Effacer (Mc Fly et Carlito)',
|
'title': 'Le LAB - Tout Effacer (Mc Fly et Carlito)',
|
||||||
'description': 'md5:9b7fbf11023fb2250bd4b185e3de3b2a',
|
'description': 'md5:9b7fbf11023fb2250bd4b185e3de3b2a',
|
||||||
'thumbnail': 're:^https?://.*\.(?:png|jpg)$',
|
'thumbnail': 're:^https?://.*\.(?:png|jpg)$',
|
||||||
'view_count': int,
|
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
|
|
||||||
@ -42,9 +40,6 @@ def _real_extract(self, url):
|
|||||||
r'<title>(.*?)(?: - Golden Moustache)?</title>', webpage, 'title')
|
r'<title>(.*?)(?: - Golden Moustache)?</title>', webpage, 'title')
|
||||||
thumbnail = self._og_search_thumbnail(webpage)
|
thumbnail = self._og_search_thumbnail(webpage)
|
||||||
description = self._og_search_description(webpage)
|
description = self._og_search_description(webpage)
|
||||||
view_count = int_or_none(self._html_search_regex(
|
|
||||||
r'<strong>([0-9]+)</strong>\s*VUES</span>',
|
|
||||||
webpage, 'view count', fatal=False))
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
@ -53,5 +48,4 @@ def _real_extract(self, url):
|
|||||||
'title': title,
|
'title': title,
|
||||||
'description': description,
|
'description': description,
|
||||||
'thumbnail': thumbnail,
|
'thumbnail': thumbnail,
|
||||||
'view_count': view_count,
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user