I guess there's an accompanying "account data" .zip with a bunch of .json files with ID numbers corresponding to part of all the filenames - so maybe I could apply modification times from those and sort things into folders if I can get them all to match up
Hey, you wanna see an ugly-ass shell script to munge Flickr JSON data into Flickr-exported image EXIF tags?
#!/bin/bash
for jsonfn in ./lmorchard-2022-flickr-backup-metadata/photo_*.json; do
photonum=$(echo $jsonfn | cut -d_ -f2 | cut -d. -f1);
photofn=$(ls -1 ./lmorchard-2022-flickr-backup-orig/*${photonum}* | head -1);
exiftool -m \
-o lmorchard-2022-flickr-backup-tagged \
-tagsfromfile $jsonfn \
"-DateTimeDigitized<Date_imported" "-DateTimeOriginal<Date_taken" "-ImageDescription<Description" "-DocumentName<Name" \
$photofn;
done
@lmorchard that's what i ended up using. it was a pain, but i made a batch script to rename them with the date time from the exif
@scruss @lmorchard turns out at times I choose exiv2 instead...
@lmorchard I absolutely do wanna see such things!
Ohhh there's exif data on all the images, though. So that's handy at least!