← Blog

Is there a Spotify Wrapped for your photos?

WrappedMe ·

Every December the same question comes back: music gets a Wrapped, so where’s the one for photos? It’s a fair question, and the answer explains something interesting about why the two are not the same problem.

Why Spotify can do it easily

Streaming is already a list of events. Every time you press play, a row gets written somewhere: what you played, when, for how long, whether you skipped it. By December there’s a year of clean, structured records sitting in a database, and building a recap is mostly a matter of running queries over it and designing the cards.

The data was never the hard part. It was a side effect of how the product works.

Why photos are different

A photo library is not a log. It’s a pile of files. Nothing recorded that you were happy that Tuesday, that the person in eleven of those frames matters to you, or that the forty screenshots from March were you apartment hunting. The meaning has to be derived after the fact, from the pixels and the metadata.

That means a photo recap has to actually analyze the images: recognize what’s in them, group faces, read text in screenshots, cluster by place and date. It’s genuinely more work than querying a table of plays.

It also creates a privacy question that music never had. Your listening history is a list of song IDs. Your photo library is your home, your family, your medical documents, and whatever you screenshotted at 2am. Running analysis over that is not the same as running analysis over what you listened to on your commute.

Where that analysis happens matters

There are two ways to build it. Upload the library to a server and analyze it there, which is how most cloud photo services work — see our comparison of WrappedMe and the Google Photos recap. Or analyze it on the phone itself, using the machine learning frameworks Apple ships with iOS.

The second approach is slower to build and more constrained. It also means no copy of your library exists on anyone’s servers, which is the entire reason we chose it. Apple’s Vision framework and Apple Intelligence do the recognition work directly on the device, so the photos never move.

What a photo recap can actually tell you

Once the analysis exists, the output looks less like a playlist and more like a set of statistics you never had access to:

  • Active days — how many days of the year you took at least one photo, and your longest streak.
  • Your most intense day — the single date with the most photos, which is usually a story in itself.
  • Categories — whether your year was mostly people, food, landscapes, pets, or screenshots.
  • Places — how many distinct locations showed up in your photos’ metadata.
  • Faces — who recurred, without naming anyone or sending anything anywhere.

None of that is in your camera roll in a readable form. It’s all technically there, spread across thousands of files, and the point of a recap is to collapse it into something you can look at in two minutes.

The honest limitation

A photo recap is only as good as your library. If you barely take photos, the numbers are thin. If you take three hundred photos of the same dog, the recap will be about the dog. It reflects what you actually did, which is the point, but it’s not a personality test.

If you want to try building your own year in review, we wrote a practical guide to photo recaps on iPhone. If you’re more interested in the privacy side, what on-device analysis really means covers the technical difference in detail.