1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-04 18:09:36 +02:00

[YoutubeDL] Improve annotations file naming

This commit is contained in:
Sergey M․ 2015-05-02 23:35:18 +06:00
parent b29e0000e6
commit 98727e123f

View File

@ -1286,7 +1286,7 @@ def process_info(self, info_dict):
return
if self.params.get('writeannotations', False):
annofn = filename + '.annotations.xml'
annofn = replace_extension(filename, 'annotations.xml', info_dict.get('ext'))
if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(annofn)):
self.to_screen('[info] Video annotations are already present')
else: