我可以将 exiftool 与 URL 一起使用吗?

发布于 2024-12-04 16:31:06 字数 198 浏览 2 评论 0原文

我是 exiftool 的新手,不知道是否可以在包含该文件的位置放置一个 URL,而不是一个文件。我可以吗?

例如:

exiftool http://www.edfr.com/images/wert_1.jpg -j /home/damaris/Desktop/metadata.json

I'm new at exiftool and don't know whether instead of a file, I can put a URL where that file is contained. Can I?

For example:

exiftool http://www.edfr.com/images/wert_1.jpg -j /home/damaris/Desktop/metadata.json

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

吾性傲以野 2024-12-11 16:31:06

试试这个:

wget -qO - http://www.edfr.com/images/wert_1.jpg | exiftool -j - > /home/damaris/Desktop/metadata.json

try this:

wget -qO - http://www.edfr.com/images/wert_1.jpg | exiftool -j - > /home/damaris/Desktop/metadata.json
七堇年 2024-12-11 16:31:06

curl -s http://a.domain.com/bigfile.jpg | curl -s http://a.domain.com/bigfile.jpg | exiftool -fast -

参考:https://exiftool.org/exiftool_pod.html#piping_examples< /a>

curl -s http://a.domain.com/bigfile.jpg | exiftool -fast -

Reference: https://exiftool.org/exiftool_pod.html#piping_examples

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