Live data from Hacker News

iCloud Photos Downloader

github.com

161–170 of 257 posts

Re: iCloud Photos Downloader

#162

Why did Apple invent this abomination of a system for storing photos? We have had file systems for decades. They work well. They sync trivially.

If I'm not mistaken, the Photos app stores originals on disk and then uses a sqlite database to track metadata (and maybe edits to photos as well, given that it has the originals). Seems reasonable to me.

Re: iCloud Photos Downloader

#163

Earlier quoted context omitted.

You're arguing with a lot of people who have personally seen this work. You can listen to other people. You can also go to an Apple Store and let them show you what's going wrong here.

Perhaps no one here has tried to download an entire iCloud library at once, or perhaps size is an issue, but that doesn't change the fact that there is no download button for iCloud Photos and iCloud Photos Downloader simply solves this. That's what this post is about.

Let me be one more voice telling you that you are wrong. I just did this morning.

In settings, "download originals to this mac", select all photos, file -> "export unmodified originals" will trigger the Photos app to download every file from iCloud into your local library (as well as exporting them to wherever you want)

I guess "there is no download button" but dude...I don't need iCloud Photos Downloader.

Re: iCloud Photos Downloader

#164
post #21

Earlier quoted context omitted.

Technically, there is: users of the European Union can get a full export of all data that Apple has about them, including all the stored photos. It can be requested from here: https://privacy.apple.com/

How does the archive they provide look like? Many zip files? I would like to retrieve them and offload to another storage service but I don’t have local storage enough to hold all of it at the same time, unpack and then reupload. I would need to do it in stages.

You can request a chunk size and then it prepares them. I specified max chunk size and it took almost a week to give me a list of file downloads from 45-60GB each. 31 zip files to download.

Re: iCloud Photos Downloader

#165
Incredible. I have such a hacked-together system to get my iCloud Photos backed up to an external drive while not filling my main laptop drive. This would be even better.

Re: iCloud Photos Downloader

#166
Related: does anyone know of a way to delete the original videos on trimmed ones? Apparently all edits to videos are non-destructive, so the 10-minute video that I trimmed to 2 seconds still takes up 8gb.

Re: iCloud Photos Downloader

#167
post #166

Related: does anyone know of a way to delete the original videos on trimmed ones? Apparently all edits to videos are non-destructive, so the 10-minute video that I trimmed to 2 seconds still takes up 8gb.

Yeah, choose "Save Video as New Clip" and then delete the original.

Re: iCloud Photos Downloader

#168
post #147

HN disclosure: I’m the author of Photos Backup Anywhere, but this thread mirrors the exact issues that pushed me to write it. One thing that surprised me when digging into Apple Photos is how much state isn’t represented by just files-on-disk. Albums, Live Photos (paired assets), bursts, slo-mo, edits, and even “simple” things like adjusted capture dates are all tracked separately, and most export/backup tools end up…

My current process for offloading photos off the iPhone is to copy them in subsequent batches of '0-9999' from the 'Image Capture' app. This is because I usually have far more than 10K photos and apple starts renaming the files after 9999 as 00001(1) for the rest. This is pretty undesirable. Is there a way for me to export unmodified raw/jpeg/live/videos off the iphone to an external drive without a macbook with a la…

I use libimobiledevice on linux

plug iphone into usb. lsusb should show it.

I backup my photos with:

  sudo ifuse -o allow_other /mnt
  rsync -a /mnt/DCIM 
  sudo umount /mnt
Actually, I backup all of /mnt not just DCIM, but that answer is for you. I also backup the entire phone with:

  sudo idevicebackup2 backup 
but in this form it either does the photos as data files, or doesn't back them up. I think it is a complete backup.

Re: iCloud Photos Downloader

#169
post #147

Earlier quoted context omitted.

My current process for offloading photos off the iPhone is to copy them in subsequent batches of '0-9999' from the 'Image Capture' app. This is because I usually have far more than 10K photos and apple starts renaming the files after 9999 as 00001(1) for the rest. This is pretty undesirable. Is there a way for me to export unmodified raw/jpeg/live/videos off the iphone to an external drive without a macbook with a la…

Does the PhotoSync app permit that? I use it to copy files to my NAS but it has some USB-related options I never explored. I used to use Image Capture but heard of PhotoSync and have never looked back.

That looks like it might do the trick. I feel like this should be something possible only using first party apps but I'll take it! Thanks.

Re: iCloud Photos Downloader

#170
post #147

Earlier quoted context omitted.

My current process for offloading photos off the iPhone is to copy them in subsequent batches of '0-9999' from the 'Image Capture' app. This is because I usually have far more than 10K photos and apple starts renaming the files after 9999 as 00001(1) for the rest. This is pretty undesirable. Is there a way for me to export unmodified raw/jpeg/live/videos off the iphone to an external drive without a macbook with a la…

I did it on Linux once I extracted them all as-is in the strange storage way that iOS stores them but I dont recall steps to make it mount the drive.

That would be perfect, I might chase down this path again. It's been a while since I've tried to directly mount the iphone as a drive on linux.
Post reply on HN