我可以将 exiftool 与 URL 一起使用吗?
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
try this:
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