Max icon indicating copy to clipboard operation
Max copied to clipboard

when using with Itunes there are file "read errors"

Open Hardcore-fs opened this issue 6 years ago • 0 comments

Seems to be a bug related to the apple script

Add to iTunes Library.scpt

you need to add a "delay" `tell application "iTunes"

	set library_source to first source whose kind is library
	set audio_item to (add audio_file to library_source)
	if playlist_name is not equal to "" then

`

tell application "iTunes"

	set library_source to first source whose kind is library
	set audio_item to (add audio_file to library_source)
	delay 10
	if playlist_name is not equal to "" then

10 seems to fix everything I have come across so far, less than this still throws errors on large number of file imports..

Hardcore-fs avatar Sep 26 '19 12:09 Hardcore-fs