diff options
author | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2009-05-04 19:31:00 +0200 |
---|---|---|
committer | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2010-10-31 11:24:12 +0100 |
commit | ad274509aa1eba53d41f15e5226b81419991af64 (patch) | |
tree | d9e7bee2d422d7e616efbc602c55beab772bd935 | |
parent | d09744d0553650065195a212a826e4267bcfed7b (diff) |
Add an "epoch" keyword to the output template
-rwxr-xr-x | youtube-dl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl index 2708fe4e7..db9510f7b 100755 --- a/youtube-dl +++ b/youtube-dl @@ -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)) |