{ "name": "jimeng-oh-generate", "displayName": "数字人v1.5-视频生成", "description": "OmniHuman1.5数字人模型,根据单张图片+音频生成高质量数字人视频。", "category": "jimeng", "version": "1.0.0", "endpoint": { "method": "POST", "url": "https://server.fmode.cn/api/volcengine/jimeng/getOmniHuman", "headers": { "Content-Type": "application/json" } }, "parameters": { "type": "object", "required": [ "audio_url", "token" ], "properties": { "workId": { "type": "string", "description": "步骤1的workId,与taskId二选一" }, "taskId": { "type": "string", "description": "任务ID,与workId二选一" }, "audio_url": { "type": "string", "description": "音频URL" }, "prompt": { "type": "string", "description": "提示词,调整画面/动作/运镜" }, "pe_fast_mode": { "type": "boolean", "description": "快速模式,默认false", "default": false }, "mask_url": { "type": "array", "items": { "type": "string" }, "description": "掩码图URL列表,指定讲话主体" }, "token": { "type": "string", "description": "认证token" } } }, "response": { "type": "object", "properties": { "code": { "type": "integer" }, "data": { "type": "object", "properties": { "tip": { "type": "string" }, "isContinue": { "type": "boolean" }, "isFinish": { "type": "boolean" } } } } }, "usageExamples": [ { "name": "数字人朗读", "input": { "workId": "qH58sm1wMr", "audio_url": "https://example.com/speech.mp3", "prompt": "数字人朗读测试", "pe_fast_mode": false, "mask_url": [], "token": "Bearer r:xxx" }, "description": "驱动图片中的人物按音频朗读" } ], "relatedSkills": [ "jimeng-oh-identify", "jimeng-oh-detect", "jimeng-oh-query" ], "pricing": { "unit": "秒", "price": 1, "currency": "CNY", "reference": "https://www.volcengine.com/docs/85621/1834143" }, "timeout": 30000, "tokenConfig": { "type": "bearer", "configFile": "~/.openclaw/voc-credentials.json", "tokenField": "vocToken", "resolutionOrder": [ "configFile" ], "apigId": "Vo3ROWEvDy", "paymentUrlResolution": { "description": "动态构建充值URL:在已存在 session token 时查出用户 objectId,拼接到专属充值页面", "steps": [ "1. 从 voc-credentials.json 获取当前 session token", "2. 调用 GET https://server.fmode.cn/parse/users/me (Header: X-Parse-Application-Id: ncloudmaster, X-Parse-Session-Token: {token})获取用户 objectId", "3. 拼接充值URL: https://app.fmode.cn/dev/apig-pay/?user={objectId}&apigid=Vo3ROWEvDy&fun_id=HOkkX72PMF", "4. 将该URL展示给用户,引导扫码支付" ], "userResolveEndpoint": "https://server.fmode.cn/parse/users/me", "userResolveHeaders": { "X-Parse-Application-Id": "ncloudmaster", "X-Parse-Session-Token": "{vocToken}" }, "paymentBaseUrl": "https://app.fmode.cn/dev/apig-pay/", "paymentParams": { "user": "{resolvedUserId}", "apigid": "Vo3ROWEvDy", "fun_id": "HOkkX72PMF" }, "balanceCheckEndpoint": "https://server.fmode.cn/api/apig/getApig" }, "onMissing": { "action": "showPaymentQR", "qrCodeUrl": "https://app.fmode.cn/dev/apig-pay/?apigid=Vo3ROWEvDy&fun_id=HOkkX72PMF", "title": "扫码开通 VOC-AI 数据服务", "message": "此 Skill 需要有效的 API Token。请先打开充值页面完成登录和充值;当用户提供 session token 后,请由 OpenClaw 运行 node scripts/tools/set-voc-token.js 写入 ~/.openclaw/voc-credentials.json 的 vocToken 字段,再重试当前 Skill。", "tokenSetupCommandTemplate": "node scripts/tools/set-voc-token.js {sessionToken}", "tokenSetupInstructions": "当用户完成登录和充值后,如果用户把 session token 发给你,请直接运行 node scripts/tools/set-voc-token.js 写入 ~/.openclaw/voc-credentials.json,然后重试当前 Skill。" }, "onBalanceInsufficient": { "action": "resolveUserThenShowPayment", "title": "VOC-AI Token 余额不足,请扫码充值", "message": "当前 Token 余额不足,我将为你生成专属充值链接,扫码支付后即可继续使用。" } }, "errorHandling": { "balanceInsufficient": { "conditions": [ { "responseField": "code", "operator": "in", "value": [ -2, -3, -10, 402, 429 ] }, { "responseField": "msg", "operator": "contains", "value": [ "余额不足", "insufficient", "balance", "quota", "没有开通", "权限或余额" ] }, { "responseField": "mess", "operator": "contains", "value": [ "余额不足", "insufficient", "balance", "quota", "没有开通", "权限或余额" ] }, { "responseField": "message", "operator": "contains", "value": [ "余额不足", "insufficient", "balance", "没有开通", "权限或余额" ] } ], "matchMode": "any", "trigger": "tokenConfig.onBalanceInsufficient" }, "unauthorized": { "conditions": [ { "responseField": "code", "operator": "in", "value": [ 401, 403 ] }, { "responseField": "msg", "operator": "contains", "value": [ "unauthorized", "token", "invalid", "auth" ] } ], "matchMode": "any", "trigger": "tokenConfig.onMissing" } } }