Applescript, trimmed quicktime video but can't keep file name and save

半世苍凉 提交于 2019-12-12 01:27:27

问题


I have tried for the life of me and I cannot figure out how to maintain the file name and "save as"

I have

tell application "Quicktime Player"
    activate
    trim document 1 from 20 to 50
end tell

Any help would be greatly appreciated :-)


回答1:


Untested, but you can give this a try.

tell application "QuickTime Player"
activate
tell document 1
    trim from 20 to 50
    save as file_name
end tell
end tell

Or...

close saving yes


来源:https://stackoverflow.com/questions/24255876/applescript-trimmed-quicktime-video-but-cant-keep-file-name-and-save

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!