Reply to topic  [ 13 posts ] 
Aperture Question 
Author Message
What's a life?
User avatar

Joined: Thu Apr 23, 2009 6:27 pm
Posts: 12251
Reply with quote
I’m scanning in some negatives - and I’d like to record the camera (and if possible) the film stock used in Aperture. It seems that that’s locked out - any way of getting to those empty fields and entering the necessary data?

_________________
All the best,
Paul
brataccas wrote:
your posts are just combo chains of funny win

I’m on Twitter, tweeting away... My Photos Random Avatar Explanation


Tue Apr 26, 2011 11:07 am
Profile
What's a life?
User avatar

Joined: Thu Apr 23, 2009 7:26 pm
Posts: 17040
Reply with quote
paulzolo wrote:
I’m scanning in some negatives - and I’d like to record the camera (and if possible) the film stock used in Aperture. It seems that that’s locked out - any way of getting to those empty fields and entering the necessary data?

Isn't it just straight EXIF data? You might not be able to edit it directly in Aperture but can you export it to something like GraphicConverter instead, fiddle with the EXIF then import that into Aperture?


Tue Apr 26, 2011 1:32 pm
Profile
What's a life?
User avatar

Joined: Thu Apr 23, 2009 7:56 pm
Posts: 12030
Reply with quote
I'm at work so I can't check, but Mr Ark pointed me in the direction of a bit of software that'll add EXIF data to your scans, and record the things you're after to the image. I guess you'll have to run that first, then import to Aperture.
Google?

_________________
www.alexsmall.co.uk

Charlie Brooker wrote:
Windows works for me. But I'd never recommend it to anybody else, ever.


Tue Apr 26, 2011 1:57 pm
Profile
What's a life?
User avatar

Joined: Thu Apr 23, 2009 6:27 pm
Posts: 12251
Reply with quote
Think I’ve got it using Graphic Converter,

1 - In Aperture, select your images and go to File>Relocate Master. This will put the Master images somewhere outside of the Aperture library where you can get to them

2 - Using Graphic COnverter’s browser, select the images and use the Action drop-down to edit/add the EXIF data.

3 - In Aperture, with the images still selected, go to File>Consolidate Master… - this will bring the photos back into the Aperture LIbrary

4 - With the images still selected, right click on one of the thumbnails and select Update from Master from the contextual menu

The new EXIF data you added will now be in the Aperture meta data window. I used this method to record the make and model of camera I was using.

_________________
All the best,
Paul
brataccas wrote:
your posts are just combo chains of funny win

I’m on Twitter, tweeting away... My Photos Random Avatar Explanation


Tue Apr 26, 2011 3:58 pm
Profile
Occasionally has a life
User avatar

Joined: Thu Apr 07, 2011 1:34 pm
Posts: 108
Location: Belgium
Reply with quote
Fantastic tip Paul, thanks.

_________________
I’m on the internet — blog | flickr | facebook | twitter


Wed Apr 27, 2011 6:34 am
Profile WWW
What's a life?
User avatar

Joined: Thu Apr 23, 2009 6:27 pm
Posts: 12251
Reply with quote
smithsocksimon wrote:
Fantastic tip Paul, thanks.


:-)

Blogged it.

http://hairydalek.posterous.com/changin ... n-aperture

_________________
All the best,
Paul
brataccas wrote:
your posts are just combo chains of funny win

I’m on Twitter, tweeting away... My Photos Random Avatar Explanation


Wed Apr 27, 2011 1:33 pm
Profile
Occasionally has a life
User avatar

Joined: Thu Apr 07, 2011 1:34 pm
Posts: 108
Location: Belgium
Reply with quote
Reblogged it: http://smithsocksimon.net/2011/04/28/changing-exif/

_________________
I’m on the internet — blog | flickr | facebook | twitter


Thu Apr 28, 2011 6:41 am
Profile WWW
What's a life?
User avatar

Joined: Thu Apr 23, 2009 6:27 pm
Posts: 12251
Reply with quote
Try this - I’ve removed Graphic Converter from the mix and come up with this AppleScript. You will need a command line tool called ExifTool. Download it from here:
http://www.sno.phy.queensu.ca/~phil/exiftool/

You will get a Mac installer - run that and let it use the default install settings.

Copy & paste the following AppleScript into your AppleScript editor:

Code:
(*
   Paul Dunning May 2011

   Requires ExifTool from http://www.sno.phy.queensu.ca/~phil/exiftool/
   Download & install using default settings
   
   Save this AplleScript file as an application
   Drag and drop files into it

   We want to change the following EXIF tags:
   Make
   Model
   
*)

on open droppedFiles
   
   set myCount to 0
   set cameraMake to text returned of (display dialog "Enter the camera make: " default answer "Olympus")
   set cameraModel to text returned of (display dialog "Enter the camera model: " default answer "Olympus Trip 35")
   
   repeat with thisFile in droppedFiles
      set thisFilePath to POSIX path of thisFile
      set myCommands to "exiftool -make=" & (quoted form of cameraMake) & " -model=" & (quoted form of cameraModel) & " " & (quoted form of thisFilePath)
      do shell script myCommands
      set myCount to myCount + 1
   end repeat
   
   display dialog (myCount as string) & " files changed."
   
end open


Save it as an Application. You will now have a droplet icon. Drag and drop the photos you want to change the camera make & model onto it. You will be asked for this information. After this, the script will run through the images and add/change the information you entered to the EXIF data in the image.

If you want, you can edit the script to add other EXIF data, such as lens type etc.. You can obviously change the default answers for camera make & model to best suit your needs.

Notes:
• ExifTool creates backups for the original files - EXIF re-writing can go wrong, so this seems a sensible precaution to take. The original images will have _original appended to the file name. If you are reconciling your library with Aperture after running this script, then the _original files won’t be added. If you are doing this before importing to Aperture, it may help to move those _original elsewhere first.

• This is supplied “as is” - you use at your own risk. This was tested on Mac OSX 10.6.7.

• ExifTool works on most image file types - so you should be OK with TIFF, JPEG, PNG, PSD. As this is for images taken on film, I don’t think that RAW will be an issue here.

Hope this is useful.

_________________
All the best,
Paul
brataccas wrote:
your posts are just combo chains of funny win

I’m on Twitter, tweeting away... My Photos Random Avatar Explanation


Mon May 02, 2011 6:53 pm
Profile
What's a life?
User avatar

Joined: Thu Apr 23, 2009 7:56 pm
Posts: 12030
Reply with quote
You can also try:
[url="http://codingbythesea.com/?page_id=11"]Filmtagger[/url]

Still struggling to recall the app Mark put me onto though.

_________________
www.alexsmall.co.uk

Charlie Brooker wrote:
Windows works for me. But I'd never recommend it to anybody else, ever.


Last edited by ProfessorF on Mon May 02, 2011 8:49 pm, edited 1 time in total.



Mon May 02, 2011 7:00 pm
Profile
What's a life?
User avatar

Joined: Thu Apr 23, 2009 6:27 pm
Posts: 12251
Reply with quote
ProfessorF wrote:
You can also try:
[url="http://codingbythesea.com/?page_id=11]Filmtagger[/url]

Still struggling to recall the app Mark put me onto though.


That uses the same command line tool that my script uses :-)

_________________
All the best,
Paul
brataccas wrote:
your posts are just combo chains of funny win

I’m on Twitter, tweeting away... My Photos Random Avatar Explanation


Mon May 02, 2011 8:45 pm
Profile
I haven't seen my friends in so long
User avatar

Joined: Thu Apr 23, 2009 6:36 pm
Posts: 5150
Location: /dev/tty0
Reply with quote
I'm positive there should be a way to do this using sips, a command line tool already built into OS X. But seeing as it hardly gets used (because people will download other tools, presumably from the Classic days), there is hardly any info out there and it's quite trial and error...


Tue May 03, 2011 5:57 am
Profile WWW
Doesn't have much of a life
User avatar

Joined: Fri Apr 24, 2009 12:43 pm
Posts: 1798
Location: Manchester
Reply with quote
I've used the freeware Reveal to edit EXIF data successfully - my sister never sets the date on her camera so iPhoto thought all her photos were taken in 2005!
:x

_________________
* Steve *

* Witty statement goes here *


Tue May 03, 2011 8:30 am
Profile
Moderator
User avatar

Joined: Thu Apr 23, 2009 6:11 pm
Posts: 12143
Location: Belfast
Reply with quote
ProfessorF wrote:
Still struggling to recall the app Mark put me onto though.
I had a look but I couldn't find what it was either.
I'll look again later on today.

Mark

_________________
okenobi wrote:
All I know so far is that Mark, Jimmy Olsen and Peter Parker use Nikon and everybody else seems to use Canon.
ShockWaffle wrote:
Well you obviously. You're a one man vortex of despair.


Tue May 03, 2011 9:30 am
Profile WWW
Display posts from previous:  Sort by  
Reply to topic   [ 13 posts ] 

Who is online

Users browsing this forum: No registered users and 14 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group
Designed by ST Software.