「ビデオの種類」の行のコメントを外すと、すべてのファイルがライブラリに追加されるわけではなく、追加されたファイルの一部が処理されません(シャッフル可能およびブックマーク可能なフラグを含む)。
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