I could really use some help here...
My wife is trying to migrate from the Apple Photos app to Adobe Lightroom. Here are the issues:
I am not an AppleScript guy, can someone here help me out? I really don't want to do this manually for over 4000+ albums and 50,000+ photos.
Many thanks in advance.
My wife is trying to migrate from the Apple Photos app to Adobe Lightroom. Here are the issues:
- She wants to be able to maintain her existing albums in Photos
- She wants keep the unmodified originals for the photos that have not been edited and the edited JPG for the photos that she has edited.
Code:
set dest to "/Users/me/Desktop/photos-Albums/" as POSIX file as text -- the destination folder (use a valid path)
tell application "Photos"
repeat with i in albums
set tFolder to dest & (get name of i)
my makeFolder(tFolder) -- create a folder named (the name of this album) in dest
export (get media items of i) to (tFolder as alias) without using originals
end repeat
end tell
on makeFolder(tPath)
do shell script "mkdir -p " & quoted form of POSIX path of tPath
end makeFolder
I am not an AppleScript guy, can someone here help me out? I really don't want to do this manually for over 4000+ albums and 50,000+ photos.
Many thanks in advance.
Last edited: