Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


dukester

477 posts

Ultimate Geek
+1 received by user: 48

ID Verified
Lifetime subscriber

#312105 18-Mar-2024 05:43
Send private message

I have downloaded about 3000 phots from Icloud from my wifes and my account. Unfortunately, Icloud has dated all the photos by the date I downloaded them so cant organise them in chronological order. Is there any software that will let me arrange the photos in the order I want and keep that order so I can put the phots onto a usb memory stick?

 

 


Create new topic
Goosey
3016 posts

Uber Geek
+1 received by user: 870

Subscriber

  #3207363 18-Mar-2024 06:25
Send private message

Sort by file name? 


 

topical, I’ve been meaning to do this also.

 

various “googling” suggests you have to use the orignal device the photos are stored on to export the photos into xx software, then manage them there before you save to USB.

 

see this…  if it works, let us know !

 

https://support.apple.com/en-us/HT201302




SirHumphreyAppleby
2939 posts

Uber Geek
+1 received by user: 1860


  #3207364 18-Mar-2024 06:26
Send private message

The images almost certainly have Exif data indicating when they were taken. In that case, ExifTool can be used to rename them.

 

Here's a script I used a few weeks ago to do something similar.

 

setlocal enabledelayedexpansion

 

    for /f "delims=" %%b in ('dir /b *.jpg') do (
        for /f "tokens=2" %%u in ('exiftool -T -FileName -DateTimeOriginal %%b') do (
            set DATE=%%u
            set DATE=!DATE::=!
            set FNAME=!DATE!_%%~nb.jpg
            rename %%b !FNAME::=!
        )
    )

 

EDIT: removed pushd/popd as my images were all in subdirectories.


ANglEAUT
altered-ego
2436 posts

Uber Geek
+1 received by user: 842

Trusted
Lifetime subscriber

  #3207368 18-Mar-2024 07:11
Send private message

+1 for SirHumphreyAppleby. You'll want a tool that can read the EXIF data & modify the file attributes for you based on that.

 

Be aware that the script from SirHumphreyAppleby is for running on Windows, not OSX or Linux. It also requires the 3rd party ExifTool which is available for all platforms.





Please keep this GZ community vibrant by contributing in a constructive & respectful manner.


Create new topic








Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.