• Stars
    star
    2,659
  • Rank 16,489 (Top 0.4 %)
  • Language
    Dart
  • License
    Apache License 2.0
  • Created about 4 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

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 those zips, extract everything from 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 in 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

    Unzip image tutorial
  3. Download the executable for your system from releases tab πŸ›’

    • 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 πŸ₯°
  4. 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 '*' at the end means "run on all files")
      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 coping (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 😘 πŸŽ‰ πŸ’ƒ