Do MP3's encoded by iTunes contain my email address, and how can I remove it?

I heard that when you rip an Audio CD to MP3 with iTunes it hides your email address (or some other identifying information) in the MP3. Is this true?

Is there any way to remove this identifying information?


Solution 1:

I've seen reference to various iTunes Data Anonymizer applications. This should be a reasonably comprehensive list of where you should and shouldn't be worried.

  • DRM Encumbered Files (protected AAC media) do not carry direct personal information such as your name. They do of course have personal information to the extent necessary to examine and validate your license, but this is information that should only be able to be understood by Apple.

  • So called "iTunes Plus" unprotected MP3 files do contain your personal information. A cursory search led me to Privatunes. Note that I am not vouching for this software. Your mileage may vary. Make a backup of any files you have before running them through this, or any other modification software.

  • Files encoded via the CD Ripper does not tag data into the encoded files, no matter what format or quality you choose. Nor will arbitrary media files you choose to import into iTunes.

Did I miss a means in which data may become "available" into iTunes?

Solution 2:

Two separate questions. For the first, "Is my name encoded in the file", you shouldn't trust the ID3 tag, as perhaps it is encoded elsewhere.

In the Terminal, if you run the strings command on a file, it will give all the ASCII strings contained therein. I've done this on an iTunes-purchased MP4, and my name and email is there. I did it on an MP3 that I ripped, and my name is not there. However, I ripped this MP3 using iTunes about 5 years ago, and perhaps this has changed and information is now encoded in the file.

If you are not Terminal-savvy

  • open it (it is in /Applications/Utilities)
  • type strings (with a space at the end)
  • go to the mp3 in iTunes
  • select "Reveal in Finder" in the context menu
  • in Finder, drag the file to the Terminal
  • the Unix path to the file should appear
  • press enter

A lot will scroll by. Perhaps after the path to the file appears, but before pressing enter, add commands to make the output easier to scan like |grep -i YourName or |less.