1
0
Fork 0

Make the mandatory metadata warning generic

This should close #95.
This commit is contained in:
jvoisin 2019-02-10 21:46:13 +01:00
parent 6e63e03b86
commit a81b7658a8
1 changed files with 2 additions and 2 deletions

View File

@ -14,9 +14,9 @@ class AbstractFFmpegParser(exiftool.ExiftoolParser):
def remove_all(self) -> bool:
if self.meta_key_value_whitelist:
logging.warning('The format of "%s" (video/mp4) has some mandatory '
logging.warning('The format of "%s" (%s) has some mandatory '
'metadata fields; mat2 filled them with standard '
'data.', self.filename)
'data.', self.filename, ', '.join(self.mimetypes))
cmd = [_get_ffmpeg_path(),
'-i', self.filename, # input file
'-y', # overwrite existing output file