我想知道如何根据清单知道我的 SVF2 翻译何时完成。
- SVF 翻译与 SVF2 翻译的清单之间是否存在任何显着差异??
- 对于 SVF2 翻译,当清单显示:SVF2 清单示例
- 在 SVF2 转换过程中是否存在任何中间阶段,此时清单将显示 outputType: SVF, status:成功,进度:完成?
I would like to know how I can know when my SVF2 translation is complete based on the manifest.
- Is there any significant difference between the manifest for an SVF translation versus an SVF2 translation?
- For an SVF2 translation, is it sufficient to say the translation is complete when the manifest shows: SVF2 manifest sample
- Is there any intermediate stage during an SVF2 translation when the manifest will show outputType: SVF, status: success, progress: complete?
发布评论
评论(1)
如此博文中所述
我们还有这次闪电演讲提供更多详细信息。
了解翻译何时准备就绪的最佳方法是通过 extraction.finished 事件。翻译完成后,您将收到通知。
在这种情况下,您需要遵循 这些步骤并将您的工作流程 ID 传递到 发布作业。
在翻译过程中,您还可以通过清单检查进度,一旦达到
progress: "complete"
您应该能够检索您的衍生产品。As described on this blog post
We have also this lightning talk with more details.
The best way to know when your translation is ready is through extraction.finished event. Once the translation is complete, you'll receive a notification.
In this case, you need to follow these steps and pass your workflow id to POST Job.
During the translation, you'll also be able to check the progress through the manifest, and once it reaches
progress: "complete"
you should be able to retrieve your derivatives.