如果我取消注释“视频类型”行,则并非所有文件都将添加到库中,并且部分添加的文件将不会被处理(包括可洗牌和可收藏的标志)。
on adding folder items to my_folder after receiving the_files
repeat with i in the_files
tell application "iTunes"
set newAddition to add i
tell newAddition
(* set video kind to music video *)
set shufflable to true
set bookmarkable to false
end tell
end tell
end repeat
end adding folder items to