mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-04 17:34:32 +01:00
Add an "epoch" keyword to the output template
This commit is contained in:
parent
d09744d055
commit
ad274509aa
@ -260,7 +260,9 @@ class FileDownloader(object):
|
||||
return
|
||||
|
||||
try:
|
||||
filename = self.params['outtmpl'] % info_dict
|
||||
template_dict = dict(info_dict)
|
||||
template_dict['epoch'] = unicode(long(time.time()))
|
||||
filename = self.params['outtmpl'] % template_dict
|
||||
self.report_destination(filename)
|
||||
except (ValueError, KeyError), err:
|
||||
self.trouble('ERROR: invalid output template or system charset: %s' % str(err))
|
||||
|
Loading…
Reference in New Issue
Block a user