1、设置一级分类下或用户账号下所有视频的水印,设置成功后对新上传的视频生效
2、接口URL中的{userid}为点播账号userid,具体参考菜单【使用须知】->【获取密钥】
3、接口支持https协议
http://api.polyv.net/v2/video/{userid}/watermarkSetting
http://api.polyv.net/v2/video/1b448be323/watermarkSetting
sign=BE988CCF37B7A32B137241D8134AA57071553006&cataid=1602300731843&userId=1b448be323&ptime=1618279224027&watermarkLocation=3
强烈建议您使用点播Java SDK完成API的功能对接,点播Java SDK 对API调用逻辑、异常处理、数据签名、HTTP请求线程池进行了统一封装和优化。
private static final Logger log = LoggerFactory.getLogger(VodVideoUploadTest.class);
/**
*上传水印
* @throws Exception
* @throws NoSuchAlgorithmException
*/
@Test
public void testUploadWatermark() throws Exception, NoSuchAlgorithmException {
//公共参数,填写自己的实际参数
String secretKey = super.secretKey;
String userId = super.userId;
String ptime = String.valueOf(System.currentTimeMillis());
//业务参数
String url = "http://api.polyv.net/v2/video/"+userId+"/watermarkSetting";
String path1 = getClass().getResource("/file/").getPath() + "cat.jpg";
File image = new File(path1);
String watermarkLocation = "3";
String cataid = "1602300731843";
//调用逻辑
Map<String, String> requestMap = new HashMap<>();
requestMap.put("userId", userId);
requestMap.put("ptime", ptime);
requestMap.put("watermarkLocation", watermarkLocation);
requestMap.put("cataid", cataid);
Map<String,File> fileMap = new HashMap<>();
fileMap.put("image",image);
requestMap.put("sign", VodSignUtil.getSign(requestMap, secretKey));
String response = HttpUtil.postFile(url,requestMap,fileMap,"utf-8");
log.debug("测试上传水印,{}", response);
//do somethings
}
{
"code":200,
"status":"success",
"message":"success",
"data":true
}
{
"code":400,
"status":"error",
"message":"sign can not be empty.",
"data":""
}