mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-07-17 00:44:15 +09:00
Compare commits
No commits in common. "6508688e88c83bb811653083db9351702cd39a6a" and "f8e543c9063c1c7ad157936cb6a15b428ddb3896" have entirely different histories.
6508688e88
...
f8e543c906
@ -997,25 +997,6 @@ class TestYoutubeDL(unittest.TestCase):
|
|||||||
self.assertEqual(downloaded['extractor'], 'Video')
|
self.assertEqual(downloaded['extractor'], 'Video')
|
||||||
self.assertEqual(downloaded['extractor_key'], 'Video')
|
self.assertEqual(downloaded['extractor_key'], 'Video')
|
||||||
|
|
||||||
def test_default_times(self):
|
|
||||||
"""Test addition of missing upload/release/_date from /release_/timestamp"""
|
|
||||||
info = {
|
|
||||||
'id': '1234',
|
|
||||||
'url': TEST_URL,
|
|
||||||
'title': 'Title',
|
|
||||||
'ext': 'mp4',
|
|
||||||
'timestamp': 1631352900,
|
|
||||||
'release_timestamp': 1632995931,
|
|
||||||
}
|
|
||||||
|
|
||||||
params = {'simulate': True, }
|
|
||||||
ydl = FakeYDL(params)
|
|
||||||
out_info = ydl.process_ie_result(info)
|
|
||||||
self.assertTrue(isinstance(out_info['upload_date'], compat_str))
|
|
||||||
self.assertEqual(out_info['upload_date'], '20210911')
|
|
||||||
self.assertTrue(isinstance(out_info['release_date'], compat_str))
|
|
||||||
self.assertEqual(out_info['release_date'], '20210930')
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
@ -1529,7 +1529,7 @@ class YoutubeDL(object):
|
|||||||
# see http://bugs.python.org/issue1646728)
|
# see http://bugs.python.org/issue1646728)
|
||||||
try:
|
try:
|
||||||
upload_date = datetime.datetime.utcfromtimestamp(info_dict[ts_key])
|
upload_date = datetime.datetime.utcfromtimestamp(info_dict[ts_key])
|
||||||
info_dict[date_key] = compat_str(upload_date.strftime('%Y%m%d'))
|
info_dict[date_key] = upload_date.strftime('%Y%m%d')
|
||||||
except (ValueError, OverflowError, OSError):
|
except (ValueError, OverflowError, OSError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@ -271,7 +271,7 @@ class VimeoIE(VimeoBaseInfoExtractor):
|
|||||||
)?
|
)?
|
||||||
vimeo(?:pro)?\.com/
|
vimeo(?:pro)?\.com/
|
||||||
(?!(?:channels|album|showcase)/[^/?#]+/?(?:$|[?#])|[^/]+/review/|ondemand/)
|
(?!(?:channels|album|showcase)/[^/?#]+/?(?:$|[?#])|[^/]+/review/|ondemand/)
|
||||||
(?:.*?/)??
|
(?:.*?/)?
|
||||||
(?:
|
(?:
|
||||||
(?:
|
(?:
|
||||||
play_redirect_hls|
|
play_redirect_hls|
|
||||||
@ -518,27 +518,13 @@ class VimeoIE(VimeoBaseInfoExtractor):
|
|||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
# requires passing unlisted_hash(a52724358e) to load_download_config request
|
'url': 'https://vimeo.com/160743502/abd0e13fb4',
|
||||||
'url': 'https://vimeo.com/392479337/a52724358e',
|
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
# similar, but all numeric: ID must be 581039021, not 9603038895
|
# requires passing unlisted_hash(a52724358e) to load_download_config request
|
||||||
# issue #29690
|
'url': 'https://vimeo.com/392479337/a52724358e',
|
||||||
'url': 'https://vimeo.com/581039021/9603038895',
|
'only_matching': True,
|
||||||
'info_dict': {
|
|
||||||
'id': '581039021',
|
|
||||||
# these have to be provided but we don't care
|
|
||||||
'ext': 'mp4',
|
|
||||||
'timestamp': 1627621014,
|
|
||||||
'title': 're:.+',
|
|
||||||
'uploader_id': 're:.+',
|
|
||||||
'uploader': 're:.+',
|
|
||||||
'upload_date': r're:\d+',
|
|
||||||
},
|
|
||||||
'params': {
|
|
||||||
'skip_download': True,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
# https://gettingthingsdone.com/workflowmap/
|
# https://gettingthingsdone.com/workflowmap/
|
||||||
# vimeo embed with check-password page protected by Referer header
|
# vimeo embed with check-password page protected by Referer header
|
||||||
|
Loading…
x
Reference in New Issue
Block a user