1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-16 07:42:24 +02:00

[vidio] Make duration non fatal and fix typo

This commit is contained in:
Sergey M․ 2017-07-23 00:44:50 +07:00
parent e0f1fb0a27
commit 935d6c20c0
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

View File

@ -56,7 +56,8 @@ def _real_extract(self, url):
self._sort_formats(formats) self._sort_formats(formats)
duration = int_or_none(duration or self._search_regex( duration = int_or_none(duration or self._search_regex(
r'data-video-duration=(["\'])(?P<duartion>\d+)\1', webpage, 'duration')) r'data-video-duration=(["\'])(?P<duration>\d+)\1', webpage,
'duration', fatal=False, group='duration'))
thumbnail = thumbnail or self._og_search_thumbnail(webpage) thumbnail = thumbnail or self._og_search_thumbnail(webpage)
like_count = int_or_none(self._search_regex( like_count = int_or_none(self._search_regex(