com.qcloud.cos.demo.ci.SmartCoverDemo Maven / Gradle / Ivy
package com.qcloud.cos.demo.ci;
import com.qcloud.cos.COSClient;
import com.qcloud.cos.model.ciModel.job.MediaJobResponse;
import com.qcloud.cos.model.ciModel.job.MediaJobsRequest;
import com.qcloud.cos.model.ciModel.template.MediaSmartCoverObject;
import java.io.UnsupportedEncodingException;
/**
* 媒体处理 SmartCover job接口相关demo 详情见https://cloud.tencent.com/document/product/460/48237
*/
public class SmartCoverDemo {
public static void main(String[] args) throws Exception {
// 1 初始化用户身份信息(secretId, secretKey)。
COSClient client = ClientUtils.getTestClient();
// 2 调用要使用的方法。
createMediaJobs(client);
}
/**
* createMediaJobs 接口用于创建媒体任务。
* demo 使用模板创建任务,如需自定义模板请先使用创建模板接口
*
* @param client
*/
public static void createMediaJobs(COSClient client) throws UnsupportedEncodingException {
//1.创建任务请求对象
MediaJobsRequest request = new MediaJobsRequest();
//2.添加请求参数 参数详情请见api接口文档
request.setBucketName("markjrzhang-1251704708");
request.setTag("SmartCover");
request.getInput().setObject("1.mp4");
MediaSmartCoverObject smartCover = request.getOperation().getSmartCover();
smartCover.setFormat("jpg");
smartCover.setHeight("1920");
smartCover.setWidth("1080");
request.getOperation().getOutput().setBucket("markjrzhang-1251704708");
request.getOperation().getOutput().setRegion("ap-chongqing");
request.getOperation().getOutput().setObject("SmartCover-${Number}.jpg");
//3.调用接口,获取任务响应对象
MediaJobResponse response = client.createMediaJobs(request);
System.out.println(response);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy