The long story short, here's the answer:
while read line; do ln -s "$line" $(echo "$line" | awk -F'\/' '{print $8"_"$9}')_${line##*/}; done < <(find /Users/lookfwd/Pictures/Photos\ Library.photoslibrary/Masters/2015/1*)
If one looks a bit better, he will notice that the photos are under /Users/lookfwd/Pictures/Photos\ Library.photoslibrary/Masters/ ... whatever and you can choose the months you're interested in with a wildcard. Then what this script does is to compile a soft link in the form of month_date_image-name. And that's more or less it. After this hack one can create his photo time-lapse.
No comments:
Post a Comment