【发布时间】:2021-10-15 03:13:05
【问题描述】:
我正在使用 Autodesk Forge .Net 库将 .nwd 文件转换为 .obj,并且我正在使用以下有效负载来执行此操作。
List<JobPayloadItem> outputs = new List<JobPayloadItem>()
{
new JobPayloadItem(
JobPayloadItem.TypeEnum.Obj,
null,
new JobObjOutputPayloadAdvanced()
{
ModelGuid = viewGUID,
ObjectIds = new List<int>() {-1}
})
};
JobPayload job = new JobPayload(new JobPayloadInput(ForgeFileURN), new JobPayloadOutput(outputs), new JobPayloadMisc(workflow));
但我收到此错误
{
"name": "LMV Bubble",
"progress": "0% complete",
"messages": [
{
"type": "error",
"message": "Unrecoverable exit code from extractor: -777",
"code": "TranslationWorker-InternalFailure"
}
],
"outputType": "obj",
"status": "inprogress"
}
有关如何解决此问题的任何帮助。翻译此文件后,我想获取该文件的元数据属性。
【问题讨论】:
标签: c# autodesk-forge autodesk-viewer autodesk autodesk-model-derivative