Created
December 9, 2014 11:08
-
-
Save shiwork/099d015ac64151d90a99 to your computer and use it in GitHub Desktop.
iTunesのArtworkを何とかする奴
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!env bash | |
| find ~/Music/iTunes/Album\ Artwork -name '*.itc' | while read i | |
| do | |
| dd if="$i" of=$(basename "$i" .itc).png bs=1 skip=492 | |
| done | |
| # byte 492 or 500 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment