云服务器内容精选
-
响应参数 状态码: 200 表4 响应Body参数 参数 参数类型 描述 id String 图片id。 name String 图片名称。 url String 访问地址。 状态码: 400 表5 响应Body参数 参数 参数类型 描述 error_code String 错误码 CBS.XXXX。 error_msg String 错误详情。 状态码: 500 表6 响应Body参数 参数 参数类型 描述 error_code String 错误码 CBS.XXXX。 error_msg String 错误详情。
-
URI POST https://{endpoint}/v1/{project_id}/digital-human/video/{video_id}/upload/image 表1 路径参数 参数 是否必选 参数类型 描述 endpoint 是 String 终端节点,即调用API的请求地址。 不同服务不同区域的endpoint不同,您可以从终端节点中获取。 例如,CBS服务在“华北-北京四”区域的“endpoint”为“cbs-ext.cn-north-4.myhuaweicloud.com”。 project_id 是 String 项目ID,用于资源隔离。请参见获取项目ID。 video_id 是 String 视频id。可以通过调用获取视频列表接口获取。 表2 Query参数 参数 是否必选 参数类型 描述 name 是 String 图片名。
-
响应示例 状态码: 200 OK { "id" : "c4f1d8a5-36b4-4076-xxx", "url" : "https://cbs-digital-human-cn-north-5.obs.cn-north-5.myhuaweicloud.com", "name" : "12345" } 状态码: 400 Bad Request { "error_code" : "CBS.0003", "error_msg" : "This resource Id:[33dbe0e2-bb9b-4efc-xxx] does not exist." } 状态码: 500 Internal Server Error { "error_code" : "CBS.0004", "error_msg" : "Internal Server Error" }
-
CURL命令示例 curl -k -i -X POST -H 'X-Access-Token: cnrfzn5OLRjwoaOf2F7PfMwVjJ6zScFogbDE' -d '0["aa325ddb930f4fbe91c3d5a2e345bbb4","b232a0ffa40443a1a8ff15808ab69bas"]' https://api.meeting.huaweicloud.com/v1/usg/sss/materials/batch-delete
-
请求消息示例 POST /v1/usg/sss/materials/batch-delete Connection: keep-alive X-Access-Token: cnrfzn5OLRjwoaOf2F7PfMwVjJ6zScFogbDE Host: api.meeting.huaweicloud.com User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_191) [ "aa325ddb930f4fbe91c3d5a2e345bbb4", "b232a0ffa40443a1a8ff15808ab69bas" ]
-
请求参数 表2 参数说明 参数 是否必须 类型 位置 描述 X-Access-Token 是 String Header 授权令牌。获取“执行App ID鉴权”响应的accessToken。 X-Request-Id 否 String Header 请求requestId,用来标识一路请求,用于问题跟踪定位,建议使用UUID,若不携带,则后台自动生成。 Accept-Language 否 String Header 语言参数,默认为中文zh-CN,英文为en-US。 [数组元素] 是 Array of strings Body 素材ID列表。
-
响应参数 状态码: 200 表2 响应Body参数 参数 参数类型 描述 total Integer 播报框总数。 offset Integer 起始位置。 count Integer 本次查询数量。 image_frames Array of ImageFrame objects 播报框。 表3 ImageFrame 参数 参数类型 描述 create_time String 创建时间。 update_time String 更新时间 frame_resolution_type Integer 框的长宽比。 0: 16/9 1: 4/3 2: 3/4 id String 框架。 image_frame_position LeftRightPosition object 框的默认地址。 image_position LeftRightPosition object 插图的默认地址。 resolution_type Integer 横竖屏模式。 0:横版 1:竖版 url String 框的存储地址。 表4 LeftRightPosition 参数 参数类型 描述 left Position object 框在左边的坐标。 right Position object 框在右边的坐标 表5 Position 参数 参数类型 描述 x Integer 像素坐标x。 y Integer 像素坐标x。 状态码: 400 表6 响应Body参数 参数 参数类型 描述 error_code String 错误码 CBS.XXXX。 error_msg String 错误详情。 状态码: 500 表7 响应Body参数 参数 参数类型 描述 error_code String 错误码 CBS.XXXX。 error_msg String 错误详情。
-
响应示例 状态码: 200 OK { "total" : 3, "offset" : 0, "count" : 3, "image_frames" : [ { "id" : "gov_16vs9", "url" : "https://cbs-digital-human-cn-north-4.obs.cn-north-4.myhuaweicloud.com", "image_frame_position" : { "left" : { "x" : 60, "y" : 135 }, "right" : { "x" : 638, "y" : 135 } }, "image_position" : { "left" : { "x" : 120, "y" : 202 }, "right" : { "x" : 698, "y" : 202 } }, "frame_resolution_type" : 0, "resolution_type" : 0 }, { "id" : "gov_3vs4", "url" : "https://cbs-digital-human-cn-north-4.obs.cn-north-4.myhuaweicloud.com", "image_frame_position" : { "left" : { "x" : 265, "y" : 0 }, "right" : { "x" : 745, "y" : 0 } }, "image_position" : { "left" : { "x" : 420, "y" : 84 }, "right" : { "x" : 900, "y" : 84 } }, "frame_resolution_type" : 2, "resolution_type" : 0 }, { "id" : "gov_4vs3", "url" : "https://cbs-digital-human-cn-north-4.obs.cn-north-4.myhuaweicloud.com", "image_frame_position" : { "left" : { "x" : 143, "y" : 135 }, "right" : { "x" : 638, "y" : 135 } }, "image_position" : { "left" : { "x" : 300, "y" : 202 }, "right" : { "x" : 795, "y" : 202 } }, "frame_resolution_type" : 1, "resolution_type" : 0 } ]} 状态码: 400 Bad Request { "error_code" : "CBS.0003", "error_msg" : "This resource Id:[33dbe0e2-bb9b-4efc-xxx] does not exist."} 状态码: 500 Internal Server Error { "error_code" : "CBS.0004", "error_msg" : "Internal Server Error"}
-
URI GET https://{endpoint}/v1/{project_id}/digital-human/image-frames?image_id={image_id} 表1 路径参数 参数 是否必选 参数类型 描述 endpoint 是 String 终端节点,即调用API的请求地址。 不同服务不同区域的endpoint不同,您可以从终端节点中获取。 例如,CBS服务在“华北-北京四”区域的“endpoint”为“cbs-ext.cn-north-4.myhuaweicloud.com”。 project_id 是 String 项目ID,用于资源隔离。请参见获取项目ID。 image_id 是 String 图片ID。可以通过调用获取图片列表获取。 offset 否 Integer 偏移量。默认为0。 limit 否 Integer 分页限制数。
更多精彩内容
CDN加速
GaussDB
文字转换成语音
免费的服务器
如何创建网站
域名网站购买
私有云桌面
云主机哪个好
域名怎么备案
手机云电脑
SSL证书申请
云点播服务器
免费OCR是什么
电脑云桌面
域名备案怎么弄
语音转文字
文字图片识别
云桌面是什么
网址安全检测
网站建设搭建
国外CDN加速
SSL免费证书申请
短信批量发送
图片OCR识别
云数据库MySQL
个人域名购买
录音转文字
扫描图片识别文字
OCR图片识别
行驶证识别
虚拟电话号码
电话呼叫中心软件
怎么制作一个网站
Email注册网站
华为VNC
图像文字识别
企业网站制作
个人网站搭建
华为云计算
免费租用云托管
云桌面云服务器
ocr文字识别免费版
HTTPS证书申请
图片文字识别转换
国外域名注册商
使用免费虚拟主机
云电脑主机多少钱
鲲鹏云手机
短信验证码平台
OCR图片文字识别
SSL证书是什么
申请企业邮箱步骤
免费的企业用邮箱
云免流搭建教程
域名价格