2
0
mirror of https://gitea.eponym.info/Mirrors/youtube-dl synced 2025-08-31 14:30:20 +00:00

[postprocessor/ffmpeg] Fix metadata filename handling on Python 2

Fixes #13182
This commit is contained in:
Yen Chi Hsuan
2017-05-25 22:04:12 +08:00
parent e834f04400
commit 5192ee17e7
2 changed files with 7 additions and 1 deletions

View File

@@ -444,7 +444,7 @@ class FFmpegMetadataPP(FFmpegPostProcessor):
chapters = info.get('chapters', [])
if chapters:
metadata_filename = encodeFilename(replace_extension(filename, 'meta'))
metadata_filename = replace_extension(filename, 'meta')
with io.open(metadata_filename, 'wt', encoding='utf-8') as f:
def ffmpeg_escape(text):
return re.sub(r'(=|;|#|\\|\n)', r'\\\1', text)