Exiftool 从一个目录创建多个 JSon 文件

发布于 2024-09-25 13:47:44 字数 353 浏览 7 评论 0原文

有谁知道我如何通过执行一次 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅冕 2024-10-02 13:47:44

这正是 exiftool -w 选项的目的:

exiftool -w json ...

这将生成 .json 文件,每个输入文件一个。

This is exactly the purpose of the exiftool -w option:

exiftool -w json ...

This will generate .json files, one for each input file.

旧人哭 2024-10-02 13:47:44

为了重定向这些分离的 Json 文件,我使用了以下命令:

exiftool -a -u -g1 -j -k -r -w OUTDIR/%f.json INPUTDIR

不是 -o 选项,因为它是写入图像时的输出目录。

To redirect these separated JSon files, I used this command:

exiftool -a -u -g1 -j -k -r -w OUTDIR/%f.json INPUTDIR

Not -o option, because it is the output directory when writing the image.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文