Aplique data EXIFCrie dados criados para fotos existentes

1

Estou ajudando um parente a configurar um novo computador. Eles importaram todas as fotos do sistema antigo para a Galeria de Fotos do Windows Live no novo sistema (executando o Windows 7) e desejam que a data criada da foto seja exibida na foto (como na câmera antiga baseada em filme). Eu vi ferramentas que podem fazer isso de uma vez, mas essa pessoa tem mais de 1000 fotos, então estou procurando um utilitário que possa aplicar um bom carimbo de data e hora no canto da foto no modo em lote. Eu poderia escrever código para isso, mas estava esperando por uma solução mais rápida.

(Eu sei que a nova câmera digital pode fazer isso automaticamente e eu configurei isso, mas ainda preciso corrigir as fotos existentes)

    
por FrustratedWithFormsDesigner 19.08.2010 / 16:53

1 resposta

2

Você pode usar o Exiftool

Date/Time Shift Feature

Have you ever forgotten to set the date/time on your digital camera before taking a bunch of pictures? ExifTool has a time shift feature that makes it easy to apply a batch fix to the timestamps of the images (ie. change the "Date Picture Taken" reported by Windows Explorer).

Say for example that your camera clock was reset to 2000:01:01 00:00:00 when you put in a new battery at 2005:11:03 10:48:00. Then all of the pictures you took subsequently have timestamps that are wrong by 5 years, 10 months, 2 days, 10 hours and 48 minutes. To fix this, put all of the images in the same directory ("DIR") and run exiftool:

exiftool "-DateTimeOriginal+=5:10:2 10:48:0" DIR

The example above changes only the DateTimeOriginal tag, but any writable date or time tag can be shifted, and multiple tags may be written with a single command line. Commonly, in JPEG images, the DateTimeOriginal, CreateDate and ModifyDate values must all be changed. For convenience, a shortcut tag called AllDates has been defined to represent these three tags. So, for example, if you forgot to set your camera clock back 1 hour at the end of daylight savings time in the fall, you can fix the images with:

exiftool -AllDates-=1 DIR

    
por 19.08.2010 / 18:58

Tags