iTunesでファイルを変換

取り込んであるファイルを変換し直して、元ファイルを捨てます。
AACをHE-AACなどに変換して容量を落としたい時に使います。
※保護されたファイルは変換できません。
※元ファイルはゴミ箱に移動します。
スクリプトエディタで開く

tell application “iTunes”
set a1 to selection
repeat with a2 in a1
set a3 to location of a2
convert a2
ignoring application responses
delete a2
end ignoring
d1(a3) of me
end repeat
end tell
on d1(a3)
ignoring application responses
tell application “Finder” to delete a3
end ignoring
end d1