如果我用exiftool设置了一些标记,例如
exiftool UserComment="test" video.mp4然后,我可以使用以下命令删除它
exiftool UserComment= video.mp4但是,exiftool设置了一个额外的标记ExifToolVersion,我不能用
exiftool -ExifToolVersion= video.mp4因为
Warning: Sorry, ExifToolVersion is not writable如何从文件中删除exiftool的所有痕迹?我需要保持其他元数据标签不变。
发布于 2014-06-26 20:20:44
ExifToolVersion未存储在文件中。这只是ExifTool返回的信息。使用-G1选项查看每个标记的组名。组名为"ExifTool“的标签在内部生成。其他"ExifTool“标签是Error和Warning。有关完整列表,请参见Extra Tags documentation
https://stackoverflow.com/questions/24412513
复制相似问题