この AppleScript には、私が購入したビデオ変換プログラムが付属しています。ダウンロードしたビデオのフォルダーを監視し、そのビデオをアプリケーションにインポートします。問題は、受け入れられない MP3 もインポートすることです。import
ファイルが MP3 でない場合にのみ、このスクリプトを編集する方法を誰か教えてもらえますか?
on adding folder items to thisFolder after receiving addedItems
repeat with movieFile in addedItems
tell application "iFlicks"
import movieFile without gui
end tell
end repeat
end adding folder items to