1

我正在尝试开发响应 final cut pro 自定义共享的 osx 应用程序。

final cut pro 自定义共享到我的应用程序

两周来我一直在寻找参考资料。我做了以下事情。

<key>NSAppleScriptEnabled</key>
<true/>
<key>OSAScriptingDefinition</key>
<string>pairs.sdef</string>
<key>NSAppleEventsUsageDescription</key>
<string>hello</string>
<key>com.apple.proapps.MediaAssetProtocol</key>
<dict>
</dict>
  • 实现了所有需要并通过编辑器的测试苹果脚本代码
tell application "My Application"
    make new asset with properties ¬
        {name:"MyNewAsset", |metadata|:{|com.apple.proapps.share.episodeID|:"MyNewEpisode"}, dataoptions:{|availableMetadataSets|:{"Camera View", "General View"}}}
    set newAsset to result
    set theLocation to location info of newAsset
end tell

Result : 
{folder:file "Macintosh HD:Users:handsome:Documents:gemiso"}

然后,我在 final cut pro 中添加了自定义共享目标并指向我的应用程序 在此处输入图像描述

我使用 xcode 调试模式执行了我的应用程序。

我单击 Final Cut Pro > 文件 > 共享 > '我的应用程序'

但我的申请没有回应。

我迷路了。请帮我

4

1 回答 1

0

我找到了方法。

我的申请没有响应的原因是两个条件。

  1. 打包和配置至少应高于开发人员 ID(直接分发给客户)

  2. 它应该在应用程序文件夹中

于 2020-08-14T02:23:51.507 回答