You need to enable JavaScript to run this app.
导航
媒体处理
最近更新时间:2025.01.02 15:39:20首次发布时间:2022.01.19 14:41:25

本文为您提供了服务端 Node.js SDK 的媒体处理模块相关的 API 调用示例。主要包含:触发工作流等。

初始化

设置 AK/SK 和地域,具体可参考初始化

触发工作流

接口请求参数和返回参数详见 OpenAPI:触发工作流

const startWorkflow = async () => {
  try {
    const options = {
      Vid: "your vid", // 视频 ID
      TemplateId: "your template id", // 工作流 Id
      Priority: 0, // 任务优先级。范围[-5,5],默认值 0
      CallbackArgs: "your callback args", // 回调参数。最大长度 512字节。
    };
    const res = await vodOpenapiService.StartWorkflow(options);
    // do your work
    // ...
  } catch (err) {
    console.log(err);
  }
};