Created
January 15, 2011 15:23
-
-
Save eidantoei/780980 to your computer and use it in GitHub Desktop.
iTunes auto cutting
This file contains 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
tell application "iTunes" | |
play | |
repeat | |
next track | |
set l to duration of current track | |
repeat 16 times | |
set p to random number from (l - 1) | |
set r to random number from 1 to 4 | |
set d to 2 ^ (4 - r) / 10 | |
repeat 2 ^ r times | |
set player position to p | |
delay d | |
end repeat | |
end repeat | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment