Tag Archives: time
Links of the day (February 28th):
- 500 Internal Server Error
- Cult of Mac Has Been Hit By Google’s War On Content Farms | Cult of Mac
- 6 Basisstappen tot storagevirtualisatie | Webwereld
- Boy-in-the-Browser misleidt Windows-gebruikers – Security.NL
- Etten-Leur eerste gemeente met koppeling BAG-GBA
- WhatWasThere – Put history in its place!
- Gemeente.nu – Verbindt gemeenteambtenaren – Ontsnap aan destructief leiderschap
- Ontevreden labels verdienen miljoenen aan YouTube | Webwereld
- ‘Fog computing is beste privacybescherming’ | Nieuws | Cloud Computing | Computable.nl
- MacDropAny: Dropbox sync voor elke Mac-folder | Lifehacking
- Apple heeft lockscreen met stippenpatroon ontwikkeld – iPhone – iPhoneclub.nl
- Gemeente Alphen stopt met anoniem solliciteren – Nieuws – InOverheid.nl – Alles over werken bij de overheid
- Rechter: vingerafdruk in paspoort verplicht | Webwereld
- T-Mobile: mobiel internet onvermijdelijk duurder
- Goodbyepad | One More Thing
Links of the day (December 1st):
Links of the day (December 1st):
- Mining Flickr to Build 3D Models of the World –
- ICT-chaos Amsterdam kost 2 miljoen per maand –
- Uniek pc-profiel achtervolgt gebruikers online | Webwereld –
- EU stimuleert elektronisch factureren –
- Virus infecteert alle geldautomaten in stad –
- Schoolvakanties toevoegen aan agenda – Computer!Totaal –
- Reeder voor iPhone krijgt Facebook-integratie en swipe-acties – iPhone – iPhoneclub.nl –
- Echtpaar klaagt Google aan, krijgt 1 dollar | Webwereld –
- IPv6-switches zonder filtering zijn onveilig | Testen | Netwerken | Computable.nl –
- Gemeente.nu – Verbindt gemeenteambtenaren – Gemeenten negeren webrichtlijnen massaal –
- Review Mindjet MindManager 9 | Lifehacking –
- FTC wil "do not track cookie" voor browsers – Security.NL –
- Alle Nederlandse bioscopen in 2012 digitaal – Innovatie – Automatisering Gids: IT in bedrijf – Automatisering Gids –
- FTC wil een track me niet-register – Telecom – Automatisering Gids Technologie pagina’s – Automatisering Gids –
- 500 Internal Server Error – 500 Internal Server Error
- Try This: Focusizer. Pomodoro comes to the iPhone to help you focus on tasks. [TNW Apps] –
- Megabod Google van 5.3 miljard voor Groupon –
- Bevestigd: Facebook is nu 50 miljard waard! –
- Blackbox Case –
- Comic for December 1, 2010 –
- Lifehacken met stijl, het mobiele kantoor –
- Adobe Releases Flash 10.2 Beta, Reduces CPU Usage During Video Playback [Updates] –
- Move Your Music To The Cloud With Mougg –
- Integriteit en relatiegeschenken –
- Meer regels voor Cloud Computing –
- Rekenkamer met open-sourcevraag op LinkedIn – rekenkamer opensource linkedin
- Google News telt sociaal delen mee – google news social share delen
- Internet Explorer blijft verliezen van Google Chrome –
- 5% van verkochte tv’s dit jaar is een 3D-tv –
- Digitaal aangifteloket voor slachtoffers cybercrime –
- Nep-systeemsoftware nieuwe tactiek cybercriminelen –
- Terug naar de Basis –
Copy the file date to EXIF
On my iPhone I make pictures using Darkroom Premium. Since I use this software and not the standard application the EXIF data is not stored in the pictures. Not having the GPS information is not such a big problem. But not having a date and time is!
In this specific situation the file date and time corresponds with the date and time at which the picture was taken. To correct this on my PC I use a script that copies the file date to some EXIF fields.
The script uses exiftool by Phil Harvey which is a brilliant piece of software when you want to manipulate the metadata of a picture
(1) "C:\Program Files\exiftool\exiftool.exe" "-FileModifyDate>CreateDate" *.jpg
(2) "C:\Program Files\exiftool\exiftool.exe" "-CreateDate>DateTimeOriginal" *.jpg
(3) "C:\Program Files\exiftool\exiftool.exe" "-CreateDate>ModifyDate" *.jpg
(4) "C:\Program Files\exiftool\exiftool.exe" "-CreateDate>FileModifyDate" *.jpg
Remarks:
C:\Program Files\exiftool\ is the location of exiftool.
*.jpg are the files that need to be updated.
First the file modify date (FileModifyDate) is copied to the EXIF field CreateDate (1).
Then theĀ CreateDate is copied to DateTimeOriginal and ModifyDate (2 and 3).
By this changes the change date of the file is modified. Because of this this field (FileModifyDate) is restored again (4).
After the first copy action the field CreateDate is being used. This will not change during the script. The file date (FileModifyDate) will change with every operation. If you use this as “source” the EXIF fields will contain three different dates. You probably do not want this to happen