AppleScriptで動画ファイルをテレビ番組名を指定してテレビ番組に追加したいのですが、調べてもあまり文献がありませんでした。
どう記述すればいいのでしょうか?
こちらで紹介されているような書き方で可能だと思います。
r r - AppleScript to Set iTunes Video File as Type TV Show
AppleScriptエディタで新規スクリプトを作成し、次のように記述します。
set showName to text returned of (display dialog "番組名を入力して下さい" default answer "") as string tell application "iTunes" if selection is not {} then set sel to a reference to selection repeat with aTrack in sel set show of aTrack to showName end repeat repeat with aTrack in sel set video kind of aTrack to TV show end repeat end if end tell
スクリプトに適当に名前を付けて、~/Library/iTunes/Scripts に保存します。
(~/Library/iTunes にScriptフォルダがまだない場合は自分で作成する)
追加したい動画をiTunesのムービーライブラリで選択しておいて、iTunesのスクリプトメニューからこのスクリプトを実行、ダイアログに番組名を入力、という手順になります。
できました!
2014/02/11 20:06:18ありがとうございます。これからも精進していきたいです。
(教えていただいたサイト、写真も素敵ですね。)