Talk:AppleTV OS 2.4
From AwkwardTV
Here's an AppleScript that will change the language of the AAC audio track (track 1) created by AppleTV Fooler to French. Open your .mov files in QuickTime Player Pro then run the script:
tell application "QuickTime Player"
activate
stop every document
repeat until not (exists document 1)
tell document 1
set the language of track 1 to "French"
save
close
end tell
end repeat
end tell
tell application "Finder"
activate
display dialog "All done!" buttons {"OK"} default button 1 with icon 1
end tell
