2

我正在尝试使用 Quicktime 导出电影的快照。这是执行快照的代码:

export document 1 to file target_file as image sequence using settings "JPEG, 10 fps"

这会将图像保存为 PNG 而不是 JPEG 文件。

当我使用以下代码时:

export document 1 to file target_file as image sequence using settings preset "JPEG, 25 fps"

它适用于预设设置。但是使用我的自定义设置,它无法创建 JPEG,而是创建了一个 PNG。

我正在尝试阅读支持文档,但找不到任何东西。

提前感谢您的帮助!

4

1 回答 1

2

根据 QuickTime Player 字典的设置需要一个包含设置的文件(特别是 a.qtes.set文件)。

您可以使用以下 AppleScript保存最近使用的图像序列设置的 .qtes 文件:

set file2save to (choose file name default location (path to desktop) default name "setting.qtes")

tell application "QuickTime Player"
    tell first document
        save export settings for image sequence to file2save
    end tell
end tell

原始来源:MacScripter

之后将代码更改为:

tell application "QuickTime Player"
    #Change this path to wherever the .qtes file is
    set settings_file to "Macintosh HD:setting.qtes" 
    export document 1 to file "prefix" as image sequence using settings alias settings_file
end tell

请记住将脚本中的“Macintosh HD”更改为 .qtes 文件所在卷的名称 - 如果不是,您将获得 .png 文件。

于 2009-07-05T19:51:57.320 回答