4

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

例如:

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

2 回答 2

2

尝试这个:

wget -qO - http://www.edfr.com/images/wert_1.jpg | exiftool -j - > /home/damaris/Desktop/metadata.json
于 2011-09-19T15:27:21.493 回答
0

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

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

于 2021-07-06T15:40:33.520 回答