答案1
Phil Harvey 的 ExifTool
这Exif工具Comment
将允许您使用 CSV 文件作为源来替换一组文件中的标签值。
CSV 文件格式
mp4
每个批次的文件需要放在同一个文件夹中(请参阅最后的注释)csv
列标题必须与A1:B1
下面显示的相同
A | 乙 | |
---|---|---|
1 | 源文件 | 评论 |
2 | 目录:\我的文件夹\034572_838638.mp4 | 绝对路径,等等 |
3 | ..\我的文件夹\034572_838638.mp4 | 相对路径,等等 |
4 | .\034572_838638.mp4 | 相对路径,等等 |
4 | 034572_838638.mp4 | 相对路径,等等 |
写入 MP4
根据当前工作目录以及 exifTool、csv 和 mp4 文件的位置,您的命令可能是
# Absolute
C:\exiftool-12.52\exiftool -csv=D:\csv\list.csv D:\downloads\*.mp4
# Relative (and all in CWD)
exiftool -csv=list.csv *.mp4
# Based on
{exiftool_path} -csv={csv_filePath} {mp4_filePath}
读取 MP4
您还可以csv
基于文件集和现有标签生成。使用与上一个示例相同的路径
# Absolute
C:\exiftool-12.52\exiftool -comment -csv D:\downloads\*.mp4 > D:\csv\list.csv
# Relative (and all in CWD)
exiftool -comment -csv *.mp4 > list.csv
# based on
{exiftool_path} -comment -csv {mp4_filePath} > {csv_filePath}
- CSV 文档:exiftool.org #csv-CSVFILE
- ExifTool 安装:exiftool.org/install
笔记: 如果您将一批mp4
文件放在不同的文件夹中,则需要对每个文件夹运行一次 ExifTool。csv
如果有帮助,您可以共享相同的文件,然后它会针对该运行中的任何不匹配生成非致命错误消息。