a*******e 发帖数: 3021 | 2 Nikon的raw照片,.nef格式,exiftool从中读出jpg文件,但是似乎照片信息都丢了。
exiftool可以从nef文件中读到时间戳,想把它加给jpg文件。我知道可以用convert
但是这样一个一个处理太麻烦了
有啥更便捷的办法嘛?
例子:
exiftool -h -nikon DSC_0321.NEF
Camera Model Name | NIKON D3000 |
Date/Time Original | 2010:03:27 12:45:33.00 | <<<<--
Shutter Count | 329 |
Lens | 0mm f/0 MF |
Focal Length | 0.0 mm |
Image Size | 3904x2616 |
|
O*******d 发帖数: 20343 | 3 一个月前买了一个AMOD GPS receiver. 不到70刀。 买蓄电池和充电器又花了20刀。
买来后研究了一番。 发现附带的软件不好用。 不是真正给照片加标签,而是在软件
自己的meta data文件里, 离开软件就看不到标签。并且不能识别RAW文
件。 我看了一下GPS的log文件,是text file, 用的是NMEA格式。于是自己动手写了
一个perl script,可以自动读log,然后把照片时间和GPS时间对上,再把GPS标签写
入照片里。 由于使用exiftool,可以识别很多文件,也可以加入一些商业软件不加的
标签,例如altitude,ground speed。 这里是下载连接
http://www.mediafire.com/?jlmztl3zmny
使用前要在你的计算机上安装perl和exiftool,可以在Windows和Mac上运行。 用的是
console。 拍摄时最好把你的相机时间调到精确的当地时间。 新式的计算机时间一般和
网上时间服务器同步,相当精确,可以用来作为标准时间。 先把照片和GPS log file放
在一个文件夹里,然后用一个t |
|
|
|
T********r 发帖数: 6210 | 6 % exiftool 1d3b_19652_full.jpg | grep Lens
Lens Info : 24/1 24/1 0/0 0/0
Lens : EF24mm f/1.4L II USM
% exiftool 1d3b_19652_full.jpg | grep Camera
Camera Model Name : Canon EOS-1D Mark III
你说的对,照片的视角不是24mm,因为相机和后期都裁过了,不过镜头的确是
24L II。强调过了多遍了,我就是来插科打诨讲非黄色下流的冷笑话的三无人员,
有人就是敏感当真是在攻击他,你说我能怎么办? |
|
i*****e 发帖数: 5233 | 7 我来发圈包子好了 大家还是和和气气别吵了
% exiftool 1d3b_19652_full.jpg | grep Lens
Lens Info : 24/1 24/1 0/0 0/0
Lens : EF24mm f/1.4L II USM
% exiftool 1d3b_19652_full.jpg | grep Camera
Camera Model Name : Canon EOS-1D Mark III
你说的对,照片的视角不是24mm,因为相机和后期都裁过了,不过镜头的确是
24L II。强调过了多遍了,我就是来插科打诨讲非黄色下流的冷笑话的三无人员,
有人就是敏感当真是在攻击他,你说我能怎么办? |
|
|
a*******e 发帖数: 3021 | 9 一个目录下全是.NEF文件,
我要用一个命令转换成jpg,
exiftool -b -JpgFromRaw file1.NEF > file1.jpg
exiftool -b -JpgFromRaw file2.NEF > file2.jpg
咋写个命令行一下就行了?谢谢 :) |
|
S*******t 发帖数: 2831 | 10 用EXIFTOOL或者PHOTOME。网上有下。免费的。
每台机器出厂前都要经过检测,所以即使是新机器,你也能看到100-200次的快门数,
这完全正常。 |
|
T********r 发帖数: 6210 | 11 use exiftool on a raw file, and check shutter count in the exif of the image
. it gives you a rough estimation of the shutter count. |
|
|
T********r 发帖数: 6210 | 13 exiftool on raw file, a rough estimate |
|
T********r 发帖数: 6210 | 14 混包子来也!今天处理去年七月份的照片,发现了下面这两张。
器材:Canon 1Ds2,430ex II,山寨引闪。
说明:片子是在客厅里拍的,俺家小子忽然对凉台门的把手来了兴趣,就爬了上去。闪
光灯应该是离机对天花板闪的。后期做了Crop和Resize。
参数:
% exiftool _E5C9518.CR2 | egrep "Camera|Lens|Shutter|Aperture|ISO"
Camera Model Name : Canon EOS-1Ds Mark II
Shutter Speed Value : 1/166
Aperture Value : 2.8
Max Aperture : 2
Min Aperture : 32
Auto ISO : 100
Base ISO : 100
Target Aperture |
|
o*p 发帖数: 128 | 15 ExifTool+ExifToolGUI 测的,
其他的exif软件显示不出来 |
|
S*******t 发帖数: 2831 | 16 那是延续了你存储卡里的编号。正确的做法是下载一个EXIFTOOL小软件,打开图片,找
到SHUTTER COUNT。 |
|
y****z 发帖数: 111 | 17 exiftool太高级了……
用了个bkviewer,
快门190,正常,谢拉 |
|
s****d 发帖数: 1205 | 18 一直用gui exiftool,但感觉有时候不好用,大家推荐一个吧,谢谢 |
|
T********r 发帖数: 6210 | 19 #!/bin/sh
while [ "${1}" != "" ]; do
org_date=`exiftool ${1} | grep 'Date/Time Original' | head -1 | awk '{
print $(NF-1) $NF}' | sed 's/://g' | head -c 12`
if [ "${org_date}" != "" ]; then
touch -t ${org_date} ${1}
fi
shift
done |
|
p**p 发帖数: 3386 | 20 存成一个script,调用方式为script_name file_name
给你大致翻译一下script的功能。当file_name非空的时候,用exiftool获取照片的
EXIF参数,找到原始时间,做简单格式替换以后,用touch命令改变文件本身的时间信
息。
'{ |
|
|
T********r 发帖数: 6210 | 22 exiftool -r "-Directory |
|
|
l******r 发帖数: 544 | 24 机器包装,配件,纸都全。卖方说用得很少,快门数应小于3000,我用空cf卡拍了几张
,文件号3988。回家用exiftool一读,快门数才625,怎么回事? |
|
T********r 发帖数: 6210 | 25 exiftool or ImageMagick |
|
|
|
O*******d 发帖数: 20343 | 28 知道时间差后,可以用exiftool修改照片的时间。 如果你懂怎样写计算机script,可
以写一个处理大量照片的script。 先读照片的时间,加上修改值, 再写回照片去。 |
|
h******e 发帖数: 730 | 29 用 exiftool(-k).exe 这个小工具看 |
|
C******l 发帖数: 859 | 30 用了exiftool,也使用了myshuttercount。com
你怎么查的shutter count? 看照片文件名上的数字是不靠谱的
大家 |
|
m********l 发帖数: 6748 | 31 metabones的最新0.50升级, 完全把Sigma干躺了... 今天晚上我就升级, 周末就可以测
试了, 哈哈哈哈
Release date: 23 Jun 2016
Benefits and improvements:
Wide open button functionality is removed on A7 series and A6300. The button
of the adapter is now dedicated to the function of the customizable Focus
Hold button on the A7 series and A6300.
"Advanced" mode is now the default operating mode.
"Native" autofocus features including DMF, Eye-AF and fast CDAF on all E-
mount cameras (see Press Release for details).
Support for smooth iris... 阅读全帖 |
|
s**********l 发帖数: 8966 | 32 exiftool should works.
description |
|
O*******d 发帖数: 20343 | 33 把GPS放进照片,exif里就有经纬度高度,还有速度。 很多软件可以读取这些信息,在
地图上显示你的拍摄地点。我的pbase照片下边有一个view map,点击,就会显示一个
地图和照片拍摄地点。我使用的iPhoto,可以显示照片的地点的地图。 你出门拍摄时
需要每天把你相机的时间和当地时间精确同步。 Holux可以显示精确的从卫星上收到的
时间。
佳能有17-40的镜头。 我的70-300是绿圈镜头,就是衍射镜头。比较轻便,但不太锐。
所以需要一个锐利的70-200红圈镜头。
我把我写的GPS程序文件放到了网上。 这个程序只能读取NMEA格式的文件。 你需要安
装Perl,还有exiftool。 在网上可以查到。AMOD直接就出NMEA文件。 Holux需要在电
脑上export NMEA. 在我的perl程序里,你需要改变前三行。
你的照片文件夹
use constant SOURCE_DIR => "/Volumes/280 GB/Canon GPS";
你的拍摄地点的时区
use co... 阅读全帖 |
|