mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 15:33:16 +00:00
[vk] Extract timestamp (Closes #10760)
This commit is contained in:
parent
c6eed6b8c0
commit
a7ee8a00f4
|
@ -20,7 +20,7 @@
|
||||||
remove_start,
|
remove_start,
|
||||||
str_to_int,
|
str_to_int,
|
||||||
unescapeHTML,
|
unescapeHTML,
|
||||||
unified_strdate,
|
unified_timestamp,
|
||||||
urlencode_postdata,
|
urlencode_postdata,
|
||||||
)
|
)
|
||||||
from .dailymotion import DailymotionIE
|
from .dailymotion import DailymotionIE
|
||||||
|
@ -106,6 +106,7 @@ class VKIE(VKBaseIE):
|
||||||
'title': 'ProtivoGunz - Хуёвая песня',
|
'title': 'ProtivoGunz - Хуёвая песня',
|
||||||
'uploader': 're:(?:Noize MC|Alexander Ilyashenko).*',
|
'uploader': 're:(?:Noize MC|Alexander Ilyashenko).*',
|
||||||
'duration': 195,
|
'duration': 195,
|
||||||
|
'timestamp': 1329060660,
|
||||||
'upload_date': '20120212',
|
'upload_date': '20120212',
|
||||||
'view_count': int,
|
'view_count': int,
|
||||||
},
|
},
|
||||||
|
@ -119,6 +120,7 @@ class VKIE(VKBaseIE):
|
||||||
'uploader': 'Tom Cruise',
|
'uploader': 'Tom Cruise',
|
||||||
'title': 'No name',
|
'title': 'No name',
|
||||||
'duration': 9,
|
'duration': 9,
|
||||||
|
'timestamp': 1374374880,
|
||||||
'upload_date': '20130721',
|
'upload_date': '20130721',
|
||||||
'view_count': int,
|
'view_count': int,
|
||||||
}
|
}
|
||||||
|
@ -195,6 +197,7 @@ class VKIE(VKBaseIE):
|
||||||
'upload_date': '20150709',
|
'upload_date': '20150709',
|
||||||
'view_count': int,
|
'view_count': int,
|
||||||
},
|
},
|
||||||
|
'skip': 'Removed',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
# youtube embed
|
# youtube embed
|
||||||
|
@ -237,6 +240,7 @@ class VKIE(VKBaseIE):
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'S-Dance, репетиции к The way show',
|
'title': 'S-Dance, репетиции к The way show',
|
||||||
'uploader': 'THE WAY SHOW | 17 апреля',
|
'uploader': 'THE WAY SHOW | 17 апреля',
|
||||||
|
'timestamp': 1454870100,
|
||||||
'upload_date': '20160207',
|
'upload_date': '20160207',
|
||||||
'view_count': int,
|
'view_count': int,
|
||||||
},
|
},
|
||||||
|
@ -373,8 +377,9 @@ def _real_extract(self, url):
|
||||||
title = self._live_title(title)
|
title = self._live_title(title)
|
||||||
|
|
||||||
# Extract upload date
|
# Extract upload date
|
||||||
upload_date = unified_strdate(self._html_search_regex(
|
timestamp = unified_timestamp(self._html_search_regex(
|
||||||
r'class="mv_info_date[^>]*>([^<]*)<', info_page, 'upload date', default=None))
|
r'class=["\']mv_info_date[^>]*>([^<]+)(?:<|from)', info_page,
|
||||||
|
'upload date', fatal=False))
|
||||||
|
|
||||||
view_count = str_to_int(self._html_search_regex(
|
view_count = str_to_int(self._html_search_regex(
|
||||||
r'class="mv_views_count[^>]*>([\d,.]+)',
|
r'class="mv_views_count[^>]*>([\d,.]+)',
|
||||||
|
@ -411,7 +416,7 @@ def _real_extract(self, url):
|
||||||
'thumbnail': data.get('jpg'),
|
'thumbnail': data.get('jpg'),
|
||||||
'uploader': data.get('md_author'),
|
'uploader': data.get('md_author'),
|
||||||
'duration': data.get('duration'),
|
'duration': data.get('duration'),
|
||||||
'upload_date': upload_date,
|
'timestamp': timestamp,
|
||||||
'view_count': view_count,
|
'view_count': view_count,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue