Questo script funziona bene per me e la maggior parte dei miei clienti, ma per alcuni clienti va in time-out con error -1712; Non ho idea del perché. Ho provato ad aumentare il timeout, ma non fa differenza.
Il file /tmp/itunes_model.txt
non viene creato, quindi sembra che non stia facendo nulla.
Come posso eseguire il debug / risolvere questo problema?
with timeout of 1200 seconds
tell application "iTunes"
if (count of every file track of library playlist 1) is equal to 0 then
set thePath to (POSIX file "/tmp/itunes_model.txt")
set fileref to open for access (thePath) with write permission
set eof fileref to 0
close access fileref
return
end if
tell every file track of library playlist 1
script performancekludge
property tracknames : its name
property locs : its location
property persistids : its persistent ID
end script
end tell
end tell
set thePath to (POSIX file "/tmp/itunes_model.txt")
set fileref to open for access (thePath) with write permission
set eof fileref to 0
tell performancekludge
repeat with i from 1 to length of its tracknames
try
set nextline to item i of its tracknames ¬
& "::" & POSIX path of item i of its locs ¬
& "::" & item i of its persistids
write nextline & linefeed as «class utf8» to fileref
end try
end repeat
end tell
close access fileref
end timeout
Aggiunto un try-catch attorno all'errore come richiesto e reran; la prima volta che è stato eseguito, ha funzionato, il che è interessante, ma la seconda volta ha fallito di nuovo, non aggiungendo ulteriori informazioni utili.