我有下面显示的AppleScript代码,告诉iTunes从选择中转换曲目。我想知道如何限制将要转换的曲目的长度?
tell application "iTunes"
set theFiles to the selection
repeat with theTrack in theFiles
with timeout of 120 seconds
set theSecondTrack to first item of (convert theTrack)
答案 0 :(得分:0)
如果您想通过iTunes GUI限制转换曲目的长度,您可以在获取信息>选项中设置原始曲目的“停止时间”。对应的AppleScript属性是finish
(track
类)。
因此,重复循环中的步骤应为:
示例60秒限制:
repeat with theTrack in theFiles
tell theTrack
set originalFin to finish
set finish to 60
-- Track conversion code goes here
set finish to originalFin
end tell
end repeat