Skip to content

Instantly share code, notes, and snippets.

@umjammer
Last active February 10, 2020 23:20
Show Gist options
  • Save umjammer/9b620bbd6eab3a050335 to your computer and use it in GitHub Desktop.
Save umjammer/9b620bbd6eab3a050335 to your computer and use it in GitHub Desktop.
Find pirated m4a

Find Pirated m4a

$ find ~/Music/iTunes/iTunes\ Music -name \*.m4a -print | while read i; do AtomicParsley "$i" -t | awk '/apID/{printf "%s\t%s\n", "'"$i"'", $4}' ; done | grep -v "your apple id"

Strip iTunes Account Informations

https://gist.github.com/torque/4361328

AtomicParsley

http://atomicparsley.sourceforge.net/

you need to compile from sources, the binary (version 0.9.0) is outdated

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment