Skip to content

srea/GooglePhotosTakeoutHelper

 
 

Repository files navigation

AUR total Github Releases downloads latest version downloads resolved Github issues commit activity

Google Photos Takeout Helper 📸🆘

What is this for 🧐

If you ever want to move from Google Photos to other platform/solution, your fastest choice to export all photos is Google Takeout 🥡

But when you download it, you will find yourself with zips with hundreds of little folders with weird .json files inside 🍝. What if you want to just have one folder with all photos, in chronological order? Good luck copying all of that 🙃

This script does just that - it organizes and cleans up your Takeout for you 🧹😌

It will take all of those folders, find all photos in them, set their and file last modified correctly, and put it in one big folder (or folders divided by a month) 🗄

How to use:

Since v3.2.0, gpth is interactive 🎉 - you don't need to type any complicated arguments - just get your takeout, run gpth, and follow prompted instructions 💃

If you want to run it on Synology, have problems with interactive, or just love cmd, look at "Running manually with cmd". Otherwise, just:

1. Get all your photos from Google Takeout 📥

"deselect all" and then select only Google Photos

gpth usage image tutorial

2. Unzip them all and merge into one, so that all "Takeout" folders become one

NOTE: Keep those original zips, you may need them if anything goes wrong

Unzip image tutorial

3. Download the executable for your system from releases tab 🛒 (also available on AUR 😏)

4. Run gpth

  • On Windoza: just double-click the downloaded .exe 🎉 - tell windoza defender that it's safe, and follow prompted instructions 🧾
  • On Mac/Linux: open terminal, cd to the folder with downloaded executable and run it:
    # if you have Mac with M1/M2 chip, you need to enable x86 emulation
    # otherwise, just skip it
    softwareupdate --install-rosetta
    
    cd Downloads # probably
    # add execute permission for file
    chmod +x gpth-macos # or gpth-linux
    # tell MacOS Gatekeeper to not worry
    xattr -r -d com.apple.quarantine gpth-macos
    # run it 🏃
    ./gpth-macos # or ./gpth-linux
    # follow prompted instructions 🥰

Fun fact: gpth moves files around by default - so if anything goes wrong mid-way, re-export the zips again 🙏

5. Most of your photos should have correct original EXIFs (metadata), but if you want, you can insert them everywhere with exiftool, so you won't lose their creation time

  • Download Phil Harvey's exiftool: https://exiftool.sourceforge.net/
  • Open the cmd/terminal, and run
    # cd to folder where you downloaded exiftool
    cd Downloads
    # run it on your output folder:
    # (the '-r' means "run on all files/in sub-folders" aka recursively)
    exiftool -overwrite_original -r -P "-AllDates<FileModifyDate" "your/output/folder/ALL_PHOTOS/"

Done! Enjoy your photos!!!

Running manually with cmd

You may still need this mode if:

  • You want to run on Synology where there are no ui programs required for interactive
    • You can read/discuss in #157 for any help
  • Interactive unzipping crashes for you (known issue in windoza 😢 #178) - disabled for now
  • Want to use this in other script/automation

In that case:

  1. Manually unzip all your takeout zips and merge them into one folder
  2. Open cmd and:
    • For windoza:
      # psst: in windoza cmd, you can just drag and drop files/folders to type them in
      # 1. change working directory to where gpth.exe is:
      cd Downloads  # Most probably
      # run it, selecting input and output folders with options like this:
      # (you can try to drag and drop them)
      gpth.exe --input "Downloads\you\input\folder" --output "C:\some\other\location" --albums "shortcuts"
      # select which album solution you like - see --help for all of them
      # remember to use "" !
    • For Linux/macOS:
      # ssh/whatever to where you're running it
      cd Downloads  # folder with gpth
      chmod +x gpth  # add execute permission
      # tell MacOS Gatekeeper to not worry
      xattr -r -d com.apple.quarantine gpth-macos
      ./gpth --input "/some/input/folder" --output "other/output/folder" --albums "shortcuts"
      # select which album solution you like - see --help for all of them

You can check all cmd flags by running gpth --help - for example, the --divide-to-dates flag

If I helped you, you can consider donating me ☕

I spent a lot of time fixing bugs and making this work stable 💖 - would be super thankful for any donations 🥰

Donate Donate using ko-fi Donate using Liberapay

After exporting 🤔

Be aware if you move your photos on your Android phone... ☝

(99% of the times), if you move some files in Android, their creation and modification time is reset to current.

"Simple Gallery" app usually keeps original file creation time when moving and copying (but I don't guarantee it). It's also pretty cool - check it out: https://github.com/SimpleMobileTools/Simple-Gallery

What to do when you got rid of Google Photos? What are the alternatives? 🗺

  • I really recommend you using Syncthing for syncing your photos and files across devices. It does so through your local Wi-Fi, so you're not dependent on any service or internet connection. It will also keep original file creation date and metadata, so it resolves Android issue that I mentioned before.

  • Immich aims to be full blown GPhotos replacement - it's still under development, but already looks great!

  • Same with Photoprism, tho this one is in development longer (may be more mature)

  • If you want something more centralized but also self-hosted, Nextcloud is a nice choice, but its approach to photos is still not perfect. (And you need to set up your own server)

Other Takeout projects

I used this tool to export my notes to markdown - you can then edit them with any markdown editor you like :)

https://github.com/vHanda/google-keep-exporter

Where is the Python script 🐍 ??

Yeah, the whole thing got re-written in Dart, and now it's way more stable and faster. If you still want Python for some reason, check out v2.x - in releases/tags

TODO (Pull Requests welcome):

  • GPS data: from JSON to Exif - Thank you @DalenW 💖 still thank you, but it is now missing in the Dart version
  • Writing data from .jsons back to EXIF data
  • Some way to handle albums - THANK YOU @bitsondatadev 😘 🎉 💃

About

Script that organizes the Google Takeout archive into one big chronological folder

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 98.0%
  • Other 2.0%