日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

剪輯合成

更新時(shí)間:

通過閱讀本文,您可以了解通過服務(wù)端SDK調(diào)用OpenAPI創(chuàng)建智能媒體服務(wù)剪輯合成任務(wù)的示例代碼。

示例代碼

您可以通過阿里云OpenAPI開發(fā)者門戶在線調(diào)試。

import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
import Credential, { Config } from '@alicloud/credentials';
const Client = require('@alicloud/ice20201109').default;

// 阿里云賬號(hào)AccessKey擁有所有API的訪問權(quán)限,建議您使用RAM用戶進(jìn)行API訪問或日常運(yùn)維。
// 本示例以將AccessKey ID和 AccessKey Secret保存在環(huán)境變量為例說明。配置方法請(qǐng)參見:http://bestwisewords.com/document_detail/378664.html

const cred = new Credential();
const iceClient = new Client(new $OpenApi.Config({
  credential: cred,
  endpoint: 'ice.cn-shanghai.aliyuncs.com'
}));

// 如需硬編碼AccessKey ID和AccessKey Secret,代碼如下,但強(qiáng)烈建議不要把AccessKey ID和AccessKey Secret保存到工程代碼里,否則可能導(dǎo)致AccessKey泄露,威脅您賬號(hào)下所有資源的安全。
// const iceClient = new Client(new $OpenApi.Config({
//   accessKeyId: '<yourAccessKeyId>',
//   accessKeySecret: '<yourAccessKeySecret>',
//   endpoint: 'ice.cn-shanghai.aliyuncs.com'
// }));

// 通過timeline創(chuàng)建合成任務(wù)
iceClient.submitMediaProducingJob({
    Timeline: "{\"VideoTracks\":[{\"VideoTrackClips\":[{\"MediaId\":\"9b4d7cf14dc7b83b0e801cbe****\"},{\"MediaId\":\"b4d7cf14dc7b83b0e801cbe****\"}]}]}",
    ProduceTarget: "{\"mediaURL\":\"http://ice-editing.oss-cn-hangzhou.aliyuncs.com/ice/\"}",
    ProjectMetadata: "{\"coverURL\":\"http://test.testvod123.com/media/cover/mediaid.jpg\",\"description\":\"description\",\"title\":\"title\",\"tags\":\"Tag1,Tag2,Test\"}"
}).then(function (data) {
  console.log(data.body);
}, function (err) {
  console.log('Error:' + err);
});

// 通過模板創(chuàng)建合成任務(wù)
iceClient.submitMediaProducingJob({
  TemplateId : "IceSys_VideoMerge",
  ClipsParam : "{\"VideoArray\":[\"s05512043f49f697f7425as****\",\"s2788e810116a45109f2efd****\",\"sd67f44f4964e6c998dee8df****\",]}",
  ProduceTarget : "{\"mediaURL\":\"http://ice-editing.oss-cn-hangzhou.aliyuncs.com/ice/\"}"
}).then(function (data) {
  console.log(data.body);
}, function (err) {
  console.log('Error:' + err);
});

// 通過project創(chuàng)建合成任務(wù)
iceClient.submitMediaProducingJob({
    ProjectId : "****9b4d7cf14dc7b83b0e801cbe****",
    ProduceTarget : "{\"mediaURL\":\"http://ice-editing.oss-cn-hangzhou.aliyuncs.com/ice/\"}",
}).then(function (data) {
  console.log(data.body);
}, function (err) {
  console.log('Error:' + err);
});

// 查詢剪輯合成作業(yè)
iceClient.getMediaProducingJob({
    JobId: "9b4d7cf14dc7b83b0e801cbe****"
}).then(function (data) {
  console.log(data.body);
}, function (err) {
  console.log('Error:' + err);
});

相關(guān)接口