开发者

Can I use exiftool with an URL?

开发者 https://www.devze.com 2023-04-05 13:34 出处:网络
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 开发者_如何学JAVAI?

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 开发者_如何学JAVAI?

For example:

exiftool http://www.edfr.com/images/wert_1.jpg -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


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

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

0

精彩评论

暂无评论...
验证码 换一张
取 消