Skip to content

Instantly share code, notes, and snippets.

@shiwork
Created December 9, 2014 11:08
Show Gist options
  • Select an option

  • Save shiwork/099d015ac64151d90a99 to your computer and use it in GitHub Desktop.

Select an option

Save shiwork/099d015ac64151d90a99 to your computer and use it in GitHub Desktop.
iTunesのArtworkを何とかする奴
#!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