Exiftool 从一个目录创建多个 JSon 文件
有谁知道我如何通过执行一次 exiftool 来获取多个 JSon 文件? 我可以从我的目录生成一个 JSon 文件,其中包含该文件夹内文件的所有元数据,但我想为每个文件生成一个。我还想将生成的所有文件放在特定文件夹中。我还尝试在我的文件夹内创建一个循环,并为每个文件调用一次 exiftool,但这不是正确的解决方案,因为我对每个文件都有一个进程。
我已经检查了整个 exiftool 文档,但没有无法找到正确的参数组合。
有什么帮助吗?
Does anybody know how I could get several JSon files by executing exiftool
just once?
I could generate one JSon file from my directory, with all metadata from files inside this folder, but I want to get one for each file. I want also to put all the files generated in a specific folder. I also tried to make a loop inside my folder, and call exiftool once for each file, but this is not right solution, because I have one process for each file.
I have checked the whole exiftool documentation, but wasn't able to find the correct combination of parameters.
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这正是 exiftool -w 选项的目的:
这将生成
.json
文件,每个输入文件一个。This is exactly the purpose of the
exiftool -w
option:This will generate
.json
files, one for each input file.为了重定向这些分离的 Json 文件,我使用了以下命令:
不是
-o
选项,因为它是写入图像时的输出目录。To redirect these separated JSon files, I used this command:
Not
-o
option, because it is the output directory when writing the image.