# frozen_string_literal: true
# Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
module TencentCloud
module Mps
module V20190612
# AI 智能分析模板详情
class AIAnalysisTemplateItem < TencentCloud::Common::AbstractModel
# @param Definition: 智能分析模板唯一标识。
# @type Definition: Integer
# @param Name: 智能分析模板名称。
# @type Name: String
# @param Comment: 智能分析模板描述信息。
# @type Comment: String
# @param ClassificationConfigure: 智能分类任务控制参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ClassificationConfigure: :class:`Tencentcloud::Mps.v20190612.models.ClassificationConfigureInfo`
# @param TagConfigure: 智能标签任务控制参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TagConfigure: :class:`Tencentcloud::Mps.v20190612.models.TagConfigureInfo`
# @param CoverConfigure: 智能封面任务控制参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type CoverConfigure: :class:`Tencentcloud::Mps.v20190612.models.CoverConfigureInfo`
# @param FrameTagConfigure: 智能按帧标签任务控制参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FrameTagConfigure: :class:`Tencentcloud::Mps.v20190612.models.FrameTagConfigureInfo`
# @param CreateTime: 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type UpdateTime: String
# @param Type: 模板类型,取值范围:
# * Preset:系统预置模板;
# * Custom:用户自定义模板。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Type: String
attr_accessor :Definition, :Name, :Comment, :ClassificationConfigure, :TagConfigure, :CoverConfigure, :FrameTagConfigure, :CreateTime, :UpdateTime, :Type
def initialize(definition=nil, name=nil, comment=nil, classificationconfigure=nil, tagconfigure=nil, coverconfigure=nil, frametagconfigure=nil, createtime=nil, updatetime=nil, type=nil)
@Definition = definition
@Name = name
@Comment = comment
@ClassificationConfigure = classificationconfigure
@TagConfigure = tagconfigure
@CoverConfigure = coverconfigure
@FrameTagConfigure = frametagconfigure
@CreateTime = createtime
@UpdateTime = updatetime
@Type = type
end
def deserialize(params)
@Definition = params['Definition']
@Name = params['Name']
@Comment = params['Comment']
unless params['ClassificationConfigure'].nil?
@ClassificationConfigure = ClassificationConfigureInfo.new
@ClassificationConfigure.deserialize(params['ClassificationConfigure'])
end
unless params['TagConfigure'].nil?
@TagConfigure = TagConfigureInfo.new
@TagConfigure.deserialize(params['TagConfigure'])
end
unless params['CoverConfigure'].nil?
@CoverConfigure = CoverConfigureInfo.new
@CoverConfigure.deserialize(params['CoverConfigure'])
end
unless params['FrameTagConfigure'].nil?
@FrameTagConfigure = FrameTagConfigureInfo.new
@FrameTagConfigure.deserialize(params['FrameTagConfigure'])
end
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
@Type = params['Type']
end
end
# 视频内容识别模板详情
class AIRecognitionTemplateItem < TencentCloud::Common::AbstractModel
# @param Definition: 视频内容识别模板唯一标识。
# @type Definition: Integer
# @param Name: 视频内容识别模板名称。
# @type Name: String
# @param Comment: 视频内容识别模板描述信息。
# @type Comment: String
# @param FaceConfigure: 人脸识别控制参数。
# @type FaceConfigure: :class:`Tencentcloud::Mps.v20190612.models.FaceConfigureInfo`
# @param OcrFullTextConfigure: 文本全文识别控制参数。
# @type OcrFullTextConfigure: :class:`Tencentcloud::Mps.v20190612.models.OcrFullTextConfigureInfo`
# @param OcrWordsConfigure: 文本关键词识别控制参数。
# @type OcrWordsConfigure: :class:`Tencentcloud::Mps.v20190612.models.OcrWordsConfigureInfo`
# @param AsrFullTextConfigure: 语音全文识别控制参数。
# @type AsrFullTextConfigure: :class:`Tencentcloud::Mps.v20190612.models.AsrFullTextConfigureInfo`
# @param AsrWordsConfigure: 语音关键词识别控制参数。
# @type AsrWordsConfigure: :class:`Tencentcloud::Mps.v20190612.models.AsrWordsConfigureInfo`
# @param CreateTime: 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type UpdateTime: String
# @param Type: 模板类型,取值范围:
# * Preset:系统预置模板;
# * Custom:用户自定义模板。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Type: String
attr_accessor :Definition, :Name, :Comment, :FaceConfigure, :OcrFullTextConfigure, :OcrWordsConfigure, :AsrFullTextConfigure, :AsrWordsConfigure, :CreateTime, :UpdateTime, :Type
def initialize(definition=nil, name=nil, comment=nil, faceconfigure=nil, ocrfulltextconfigure=nil, ocrwordsconfigure=nil, asrfulltextconfigure=nil, asrwordsconfigure=nil, createtime=nil, updatetime=nil, type=nil)
@Definition = definition
@Name = name
@Comment = comment
@FaceConfigure = faceconfigure
@OcrFullTextConfigure = ocrfulltextconfigure
@OcrWordsConfigure = ocrwordsconfigure
@AsrFullTextConfigure = asrfulltextconfigure
@AsrWordsConfigure = asrwordsconfigure
@CreateTime = createtime
@UpdateTime = updatetime
@Type = type
end
def deserialize(params)
@Definition = params['Definition']
@Name = params['Name']
@Comment = params['Comment']
unless params['FaceConfigure'].nil?
@FaceConfigure = FaceConfigureInfo.new
@FaceConfigure.deserialize(params['FaceConfigure'])
end
unless params['OcrFullTextConfigure'].nil?
@OcrFullTextConfigure = OcrFullTextConfigureInfo.new
@OcrFullTextConfigure.deserialize(params['OcrFullTextConfigure'])
end
unless params['OcrWordsConfigure'].nil?
@OcrWordsConfigure = OcrWordsConfigureInfo.new
@OcrWordsConfigure.deserialize(params['OcrWordsConfigure'])
end
unless params['AsrFullTextConfigure'].nil?
@AsrFullTextConfigure = AsrFullTextConfigureInfo.new
@AsrFullTextConfigure.deserialize(params['AsrFullTextConfigure'])
end
unless params['AsrWordsConfigure'].nil?
@AsrWordsConfigure = AsrWordsConfigureInfo.new
@AsrWordsConfigure.deserialize(params['AsrWordsConfigure'])
end
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
@Type = params['Type']
end
end
# 动作识别参数配置
class ActionConfigInfo < TencentCloud::Common::AbstractModel
# @param Switch: 动作识别任务开关,可选值:
#
ON:开启;
# OFF:关闭。
# @type Switch: String
attr_accessor :Switch
def initialize(switch=nil)
@Switch = switch
end
def deserialize(params)
@Switch = params['Switch']
end
end
# 编排原子任务
class Activity < TencentCloud::Common::AbstractModel
# @param ActivityType: 原子任务类型:
# input: 起始节点
# output:终止节点
# action-trans:转码
# action-samplesnapshot:采样截图
# action-AIAnalysis: 分析
# action-AIRecognition:识别
# action-aiReview:审核
# action-animated-graphics:转动图
# action-image-sprite:雪碧图
# action-snapshotByTimeOffset: 时间点截图
# action-adaptive-substream:自适应码流
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ActivityType: String
# @param ReardriveIndex: 后驱节点索引数组
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ReardriveIndex: Array
# @param ActivityPara: 原子任务参数
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ActivityPara: :class:`Tencentcloud::Mps.v20190612.models.ActivityPara`
attr_accessor :ActivityType, :ReardriveIndex, :ActivityPara
def initialize(activitytype=nil, reardriveindex=nil, activitypara=nil)
@ActivityType = activitytype
@ReardriveIndex = reardriveindex
@ActivityPara = activitypara
end
def deserialize(params)
@ActivityType = params['ActivityType']
@ReardriveIndex = params['ReardriveIndex']
unless params['ActivityPara'].nil?
@ActivityPara = ActivityPara.new
@ActivityPara.deserialize(params['ActivityPara'])
end
end
end
# 编排原子任务
class ActivityPara < TencentCloud::Common::AbstractModel
# @param TranscodeTask: 视频转码任务
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TranscodeTask: :class:`Tencentcloud::Mps.v20190612.models.TranscodeTaskInput`
# @param AnimatedGraphicTask: 视频转动图任务
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AnimatedGraphicTask: :class:`Tencentcloud::Mps.v20190612.models.AnimatedGraphicTaskInput`
# @param SnapshotByTimeOffsetTask: 视频按时间点截图任务
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SnapshotByTimeOffsetTask: :class:`Tencentcloud::Mps.v20190612.models.SnapshotByTimeOffsetTaskInput`
# @param SampleSnapshotTask: 视频采样截图任务
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SampleSnapshotTask: :class:`Tencentcloud::Mps.v20190612.models.SampleSnapshotTaskInput`
# @param ImageSpriteTask: 视频截雪碧图任务
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ImageSpriteTask: :class:`Tencentcloud::Mps.v20190612.models.ImageSpriteTaskInput`
# @param AdaptiveDynamicStreamingTask: 转自适应码流任务
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AdaptiveDynamicStreamingTask: :class:`Tencentcloud::Mps.v20190612.models.AdaptiveDynamicStreamingTaskInput`
# @param AiContentReviewTask: 视频内容审核类型任务
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AiContentReviewTask: :class:`Tencentcloud::Mps.v20190612.models.AiContentReviewTaskInput`
# @param AiAnalysisTask: 视频内容分析类型任务
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AiAnalysisTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskInput`
# @param AiRecognitionTask: 视频内容识别类型任务
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AiRecognitionTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskInput`
attr_accessor :TranscodeTask, :AnimatedGraphicTask, :SnapshotByTimeOffsetTask, :SampleSnapshotTask, :ImageSpriteTask, :AdaptiveDynamicStreamingTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTask
def initialize(transcodetask=nil, animatedgraphictask=nil, snapshotbytimeoffsettask=nil, samplesnapshottask=nil, imagespritetask=nil, adaptivedynamicstreamingtask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontask=nil)
@TranscodeTask = transcodetask
@AnimatedGraphicTask = animatedgraphictask
@SnapshotByTimeOffsetTask = snapshotbytimeoffsettask
@SampleSnapshotTask = samplesnapshottask
@ImageSpriteTask = imagespritetask
@AdaptiveDynamicStreamingTask = adaptivedynamicstreamingtask
@AiContentReviewTask = aicontentreviewtask
@AiAnalysisTask = aianalysistask
@AiRecognitionTask = airecognitiontask
end
def deserialize(params)
unless params['TranscodeTask'].nil?
@TranscodeTask = TranscodeTaskInput.new
@TranscodeTask.deserialize(params['TranscodeTask'])
end
unless params['AnimatedGraphicTask'].nil?
@AnimatedGraphicTask = AnimatedGraphicTaskInput.new
@AnimatedGraphicTask.deserialize(params['AnimatedGraphicTask'])
end
unless params['SnapshotByTimeOffsetTask'].nil?
@SnapshotByTimeOffsetTask = SnapshotByTimeOffsetTaskInput.new
@SnapshotByTimeOffsetTask.deserialize(params['SnapshotByTimeOffsetTask'])
end
unless params['SampleSnapshotTask'].nil?
@SampleSnapshotTask = SampleSnapshotTaskInput.new
@SampleSnapshotTask.deserialize(params['SampleSnapshotTask'])
end
unless params['ImageSpriteTask'].nil?
@ImageSpriteTask = ImageSpriteTaskInput.new
@ImageSpriteTask.deserialize(params['ImageSpriteTask'])
end
unless params['AdaptiveDynamicStreamingTask'].nil?
@AdaptiveDynamicStreamingTask = AdaptiveDynamicStreamingTaskInput.new
@AdaptiveDynamicStreamingTask.deserialize(params['AdaptiveDynamicStreamingTask'])
end
unless params['AiContentReviewTask'].nil?
@AiContentReviewTask = AiContentReviewTaskInput.new
@AiContentReviewTask.deserialize(params['AiContentReviewTask'])
end
unless params['AiAnalysisTask'].nil?
@AiAnalysisTask = AiAnalysisTaskInput.new
@AiAnalysisTask.deserialize(params['AiAnalysisTask'])
end
unless params['AiRecognitionTask'].nil?
@AiRecognitionTask = AiRecognitionTaskInput.new
@AiRecognitionTask.deserialize(params['AiRecognitionTask'])
end
end
end
# 编排子任务输出
class ActivityResItem < TencentCloud::Common::AbstractModel
# @param TranscodeTask: 转码任务输出
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TranscodeTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskTranscodeResult`
# @param AnimatedGraphicTask: 转动图任务输出
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AnimatedGraphicTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskAnimatedGraphicResult`
# @param SnapshotByTimeOffsetTask: 时间点截图任务输出
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SnapshotByTimeOffsetTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskSampleSnapshotResult`
# @param SampleSnapshotTask: 采样截图任务输出
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SampleSnapshotTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskSampleSnapshotResult`
# @param ImageSpriteTask: 雪碧图任务输出
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ImageSpriteTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskImageSpriteResult`
# @param AdaptiveDynamicStreamingTask: 自适应码流任务输出
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AdaptiveDynamicStreamingTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskAdaptiveDynamicStreamingResult`
# @param RecognitionTask: 识别任务输出
# 注意:此字段可能返回 null,表示取不到有效值。
# @type RecognitionTask: :class:`Tencentcloud::Mps.v20190612.models.ScheduleRecognitionTaskResult`
# @param ReviewTask: 审核任务输出
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ReviewTask: :class:`Tencentcloud::Mps.v20190612.models.ScheduleReviewTaskResult`
# @param AnalysisTask: 分析任务输出
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AnalysisTask: :class:`Tencentcloud::Mps.v20190612.models.ScheduleAnalysisTaskResult`
attr_accessor :TranscodeTask, :AnimatedGraphicTask, :SnapshotByTimeOffsetTask, :SampleSnapshotTask, :ImageSpriteTask, :AdaptiveDynamicStreamingTask, :RecognitionTask, :ReviewTask, :AnalysisTask
def initialize(transcodetask=nil, animatedgraphictask=nil, snapshotbytimeoffsettask=nil, samplesnapshottask=nil, imagespritetask=nil, adaptivedynamicstreamingtask=nil, recognitiontask=nil, reviewtask=nil, analysistask=nil)
@TranscodeTask = transcodetask
@AnimatedGraphicTask = animatedgraphictask
@SnapshotByTimeOffsetTask = snapshotbytimeoffsettask
@SampleSnapshotTask = samplesnapshottask
@ImageSpriteTask = imagespritetask
@AdaptiveDynamicStreamingTask = adaptivedynamicstreamingtask
@RecognitionTask = recognitiontask
@ReviewTask = reviewtask
@AnalysisTask = analysistask
end
def deserialize(params)
unless params['TranscodeTask'].nil?
@TranscodeTask = MediaProcessTaskTranscodeResult.new
@TranscodeTask.deserialize(params['TranscodeTask'])
end
unless params['AnimatedGraphicTask'].nil?
@AnimatedGraphicTask = MediaProcessTaskAnimatedGraphicResult.new
@AnimatedGraphicTask.deserialize(params['AnimatedGraphicTask'])
end
unless params['SnapshotByTimeOffsetTask'].nil?
@SnapshotByTimeOffsetTask = MediaProcessTaskSampleSnapshotResult.new
@SnapshotByTimeOffsetTask.deserialize(params['SnapshotByTimeOffsetTask'])
end
unless params['SampleSnapshotTask'].nil?
@SampleSnapshotTask = MediaProcessTaskSampleSnapshotResult.new
@SampleSnapshotTask.deserialize(params['SampleSnapshotTask'])
end
unless params['ImageSpriteTask'].nil?
@ImageSpriteTask = MediaProcessTaskImageSpriteResult.new
@ImageSpriteTask.deserialize(params['ImageSpriteTask'])
end
unless params['AdaptiveDynamicStreamingTask'].nil?
@AdaptiveDynamicStreamingTask = MediaProcessTaskAdaptiveDynamicStreamingResult.new
@AdaptiveDynamicStreamingTask.deserialize(params['AdaptiveDynamicStreamingTask'])
end
unless params['RecognitionTask'].nil?
@RecognitionTask = ScheduleRecognitionTaskResult.new
@RecognitionTask.deserialize(params['RecognitionTask'])
end
unless params['ReviewTask'].nil?
@ReviewTask = ScheduleReviewTaskResult.new
@ReviewTask.deserialize(params['ReviewTask'])
end
unless params['AnalysisTask'].nil?
@AnalysisTask = ScheduleAnalysisTaskResult.new
@AnalysisTask.deserialize(params['AnalysisTask'])
end
end
end
# 编排任务输出
class ActivityResult < TencentCloud::Common::AbstractModel
# @param ActivityType: 原子任务类型。
# Transcode:转码。
# SampleSnapshot:采样截图。
# AnimatedGraphics:转动图。
# SnapshotByTimeOffset:时间点截图。
# ImageSprites:雪碧图。
# AdaptiveDynamicStreaming:自适应码流。
# AiContentReview:内容审核。
# AIRecognition:智能识别。
# AIAnalysis:智能分析。
# @type ActivityType: String
# @param ActivityResItem: 原子任务输出。
# @type ActivityResItem: :class:`Tencentcloud::Mps.v20190612.models.ActivityResItem`
attr_accessor :ActivityType, :ActivityResItem
def initialize(activitytype=nil, activityresitem=nil)
@ActivityType = activitytype
@ActivityResItem = activityresitem
end
def deserialize(params)
@ActivityType = params['ActivityType']
unless params['ActivityResItem'].nil?
@ActivityResItem = ActivityResItem.new
@ActivityResItem.deserialize(params['ActivityResItem'])
end
end
end
# 转自适应码流信息
class AdaptiveDynamicStreamingInfoItem < TencentCloud::Common::AbstractModel
# @param Definition: 转自适应码流规格。
# @type Definition: Integer
# @param Package: 打包格式,可能为 HLS和 MPEG-DASH 两种。
# @type Package: String
# @param Path: 播放路径。
# @type Path: String
# @param Storage: 自适应码流文件的存储位置。
# @type Storage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
attr_accessor :Definition, :Package, :Path, :Storage
def initialize(definition=nil, package=nil, path=nil, storage=nil)
@Definition = definition
@Package = package
@Path = path
@Storage = storage
end
def deserialize(params)
@Definition = params['Definition']
@Package = params['Package']
@Path = params['Path']
unless params['Storage'].nil?
@Storage = TaskOutputStorage.new
@Storage.deserialize(params['Storage'])
end
end
end
# 对视频转自适应码流的输入参数类型
class AdaptiveDynamicStreamingTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 转自适应码流模板 ID。
# @type Definition: Integer
# @param WatermarkSet: 水印列表,支持多张图片或文字水印,最大可支持 10 张。
# @type WatermarkSet: Array
# @param OutputStorage: 转自适应码流后文件的目标存储,不填则继承上层的 OutputStorage 值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputObjectPath: 转自适应码流后,manifest 文件的输出路径,可以为相对路径或者绝对路径。如果不填,则默认为相对路径:`{inputName}_adaptiveDynamicStreaming_{definition}.{format}`。
# @type OutputObjectPath: String
# @param SubStreamObjectName: 转自适应码流后,子流文件的输出路径,只能为相对路径。如果不填,则默认为相对路径:`{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}.{format}`。
# @type SubStreamObjectName: String
# @param SegmentObjectName: 转自适应码流(仅 HLS)后,分片文件的输出路径,只能为相对路径。如果不填,则默认为相对路径:`{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}_{segmentNumber}.{format}`。
# @type SegmentObjectName: String
attr_accessor :Definition, :WatermarkSet, :OutputStorage, :OutputObjectPath, :SubStreamObjectName, :SegmentObjectName
def initialize(definition=nil, watermarkset=nil, outputstorage=nil, outputobjectpath=nil, substreamobjectname=nil, segmentobjectname=nil)
@Definition = definition
@WatermarkSet = watermarkset
@OutputStorage = outputstorage
@OutputObjectPath = outputobjectpath
@SubStreamObjectName = substreamobjectname
@SegmentObjectName = segmentobjectname
end
def deserialize(params)
@Definition = params['Definition']
unless params['WatermarkSet'].nil?
@WatermarkSet = []
params['WatermarkSet'].each do |i|
watermarkinput_tmp = WatermarkInput.new
watermarkinput_tmp.deserialize(i)
@WatermarkSet << watermarkinput_tmp
end
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputObjectPath = params['OutputObjectPath']
@SubStreamObjectName = params['SubStreamObjectName']
@SegmentObjectName = params['SegmentObjectName']
end
end
# 转自适应码流模板详情
class AdaptiveDynamicStreamingTemplate < TencentCloud::Common::AbstractModel
# @param Definition: 转自适应码流模板唯一标识。
# @type Definition: Integer
# @param Type: 模板类型,取值范围:
# Preset:系统预置模板;
# Custom:用户自定义模板。
# @type Type: String
# @param Name: 转自适应码流模板名称。
# @type Name: String
# @param Comment: 转自适应码流模板描述信息。
# @type Comment: String
# @param Format: 转自适应码流格式,取值范围:
# HLS,
# MPEG-DASH。
# @type Format: String
# @param StreamInfos: 转自适应码流输入流参数信息,最多输入10路流。
# @type StreamInfos: Array
# @param DisableHigherVideoBitrate: 是否禁止视频低码率转高码率,取值范围:
# 0:否,
# 1:是。
# @type DisableHigherVideoBitrate: Integer
# @param DisableHigherVideoResolution: 是否禁止视频分辨率转高分辨率,取值范围:
# 0:否,
# 1:是。
# @type DisableHigherVideoResolution: Integer
# @param CreateTime: 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
# @type CreateTime: String
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
# @type UpdateTime: String
attr_accessor :Definition, :Type, :Name, :Comment, :Format, :StreamInfos, :DisableHigherVideoBitrate, :DisableHigherVideoResolution, :CreateTime, :UpdateTime
def initialize(definition=nil, type=nil, name=nil, comment=nil, format=nil, streaminfos=nil, disablehighervideobitrate=nil, disablehighervideoresolution=nil, createtime=nil, updatetime=nil)
@Definition = definition
@Type = type
@Name = name
@Comment = comment
@Format = format
@StreamInfos = streaminfos
@DisableHigherVideoBitrate = disablehighervideobitrate
@DisableHigherVideoResolution = disablehighervideoresolution
@CreateTime = createtime
@UpdateTime = updatetime
end
def deserialize(params)
@Definition = params['Definition']
@Type = params['Type']
@Name = params['Name']
@Comment = params['Comment']
@Format = params['Format']
unless params['StreamInfos'].nil?
@StreamInfos = []
params['StreamInfos'].each do |i|
adaptivestreamtemplate_tmp = AdaptiveStreamTemplate.new
adaptivestreamtemplate_tmp.deserialize(i)
@StreamInfos << adaptivestreamtemplate_tmp
end
end
@DisableHigherVideoBitrate = params['DisableHigherVideoBitrate']
@DisableHigherVideoResolution = params['DisableHigherVideoResolution']
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
end
end
# 自适应转码流参数模板
class AdaptiveStreamTemplate < TencentCloud::Common::AbstractModel
# @param Video: 视频参数信息。
# @type Video: :class:`Tencentcloud::Mps.v20190612.models.VideoTemplateInfo`
# @param Audio: 音频参数信息。
# @type Audio: :class:`Tencentcloud::Mps.v20190612.models.AudioTemplateInfo`
# @param RemoveAudio: 是否移除音频流,取值范围:
# 0:否,
# 1:是。
# @type RemoveAudio: Integer
# @param RemoveVideo: 是否移除视频流,取值范围:
# 0:否,
# 1:是。
# @type RemoveVideo: Integer
attr_accessor :Video, :Audio, :RemoveAudio, :RemoveVideo
def initialize(video=nil, audio=nil, removeaudio=nil, removevideo=nil)
@Video = video
@Audio = audio
@RemoveAudio = removeaudio
@RemoveVideo = removevideo
end
def deserialize(params)
unless params['Video'].nil?
@Video = VideoTemplateInfo.new
@Video.deserialize(params['Video'])
end
unless params['Audio'].nil?
@Audio = AudioTemplateInfo.new
@Audio.deserialize(params['Audio'])
end
@RemoveAudio = params['RemoveAudio']
@RemoveVideo = params['RemoveVideo']
end
end
# 智能分析结果
class AiAnalysisResult < TencentCloud::Common::AbstractModel
# @param Type: 任务的类型,可以取的值有:
# Classification:智能分类
# Cover:智能封面
# Tag:智能标签
# FrameTag:智能按帧标签
# Highlight:智能精彩集锦
# @type Type: String
# @param ClassificationTask: 视频内容分析智能分类任务的查询结果,当任务类型为 Classification 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ClassificationTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskClassificationResult`
# @param CoverTask: 视频内容分析智能封面任务的查询结果,当任务类型为 Cover 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type CoverTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskCoverResult`
# @param TagTask: 视频内容分析智能标签任务的查询结果,当任务类型为 Tag 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TagTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskTagResult`
# @param FrameTagTask: 视频内容分析智能按帧标签任务的查询结果,当任务类型为 FrameTag 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FrameTagTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskFrameTagResult`
# @param HighlightTask: 视频内容分析集锦任务的查询结果,当任务类型为 Highlight时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type HighlightTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskHighlightResult`
attr_accessor :Type, :ClassificationTask, :CoverTask, :TagTask, :FrameTagTask, :HighlightTask
def initialize(type=nil, classificationtask=nil, covertask=nil, tagtask=nil, frametagtask=nil, highlighttask=nil)
@Type = type
@ClassificationTask = classificationtask
@CoverTask = covertask
@TagTask = tagtask
@FrameTagTask = frametagtask
@HighlightTask = highlighttask
end
def deserialize(params)
@Type = params['Type']
unless params['ClassificationTask'].nil?
@ClassificationTask = AiAnalysisTaskClassificationResult.new
@ClassificationTask.deserialize(params['ClassificationTask'])
end
unless params['CoverTask'].nil?
@CoverTask = AiAnalysisTaskCoverResult.new
@CoverTask.deserialize(params['CoverTask'])
end
unless params['TagTask'].nil?
@TagTask = AiAnalysisTaskTagResult.new
@TagTask.deserialize(params['TagTask'])
end
unless params['FrameTagTask'].nil?
@FrameTagTask = AiAnalysisTaskFrameTagResult.new
@FrameTagTask.deserialize(params['FrameTagTask'])
end
unless params['HighlightTask'].nil?
@HighlightTask = AiAnalysisTaskHighlightResult.new
@HighlightTask.deserialize(params['HighlightTask'])
end
end
end
# 智能分类任务输入类型
class AiAnalysisTaskClassificationInput < TencentCloud::Common::AbstractModel
# @param Definition: 视频智能分类模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 智能分类结果信息
class AiAnalysisTaskClassificationOutput < TencentCloud::Common::AbstractModel
# @param ClassificationSet: 视频智能分类列表。
# @type ClassificationSet: Array
attr_accessor :ClassificationSet
def initialize(classificationset=nil)
@ClassificationSet = classificationset
end
def deserialize(params)
unless params['ClassificationSet'].nil?
@ClassificationSet = []
params['ClassificationSet'].each do |i|
mediaaianalysisclassificationitem_tmp = MediaAiAnalysisClassificationItem.new
mediaaianalysisclassificationitem_tmp.deserialize(i)
@ClassificationSet << mediaaianalysisclassificationitem_tmp
end
end
end
end
# 智能分类任务结果类型
class AiAnalysisTaskClassificationResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 智能分类任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskClassificationInput`
# @param Output: 智能分类任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskClassificationOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiAnalysisTaskClassificationInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiAnalysisTaskClassificationOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 智能分类任务输入类型
class AiAnalysisTaskCoverInput < TencentCloud::Common::AbstractModel
# @param Definition: 视频智能封面模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 智能封面结果信息
class AiAnalysisTaskCoverOutput < TencentCloud::Common::AbstractModel
# @param CoverSet: 智能封面列表。
# @type CoverSet: Array
# @param OutputStorage: 智能封面的存储位置。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
attr_accessor :CoverSet, :OutputStorage
def initialize(coverset=nil, outputstorage=nil)
@CoverSet = coverset
@OutputStorage = outputstorage
end
def deserialize(params)
unless params['CoverSet'].nil?
@CoverSet = []
params['CoverSet'].each do |i|
mediaaianalysiscoveritem_tmp = MediaAiAnalysisCoverItem.new
mediaaianalysiscoveritem_tmp.deserialize(i)
@CoverSet << mediaaianalysiscoveritem_tmp
end
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
end
end
# 智能封面结果类型
class AiAnalysisTaskCoverResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 智能封面任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskCoverInput`
# @param Output: 智能封面任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskCoverOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiAnalysisTaskCoverInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiAnalysisTaskCoverOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 智能按帧标签任务输入类型
class AiAnalysisTaskFrameTagInput < TencentCloud::Common::AbstractModel
# @param Definition: 视频智能按帧标签模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 智能按帧标签结果信息
class AiAnalysisTaskFrameTagOutput < TencentCloud::Common::AbstractModel
# @param SegmentSet: 视频按帧标签列表。
# @type SegmentSet: Array
attr_accessor :SegmentSet
def initialize(segmentset=nil)
@SegmentSet = segmentset
end
def deserialize(params)
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
mediaaianalysisframetagsegmentitem_tmp = MediaAiAnalysisFrameTagSegmentItem.new
mediaaianalysisframetagsegmentitem_tmp.deserialize(i)
@SegmentSet << mediaaianalysisframetagsegmentitem_tmp
end
end
end
end
# 智能按帧标签结果类型
class AiAnalysisTaskFrameTagResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 智能按帧标签任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskFrameTagInput`
# @param Output: 智能按帧标签任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskFrameTagOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiAnalysisTaskFrameTagInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiAnalysisTaskFrameTagOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 智能精彩片段任务输入类型
class AiAnalysisTaskHighlightInput < TencentCloud::Common::AbstractModel
# @param Definition: 视频智能精彩片段模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 智能精彩片段结果信息
class AiAnalysisTaskHighlightOutput < TencentCloud::Common::AbstractModel
# @param HighlightSet: 视频智能精彩片段列表。
# @type HighlightSet: Array
# @param OutputStorage: 精彩片段的存储位置。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
attr_accessor :HighlightSet, :OutputStorage
def initialize(highlightset=nil, outputstorage=nil)
@HighlightSet = highlightset
@OutputStorage = outputstorage
end
def deserialize(params)
unless params['HighlightSet'].nil?
@HighlightSet = []
params['HighlightSet'].each do |i|
mediaaianalysishighlightitem_tmp = MediaAiAnalysisHighlightItem.new
mediaaianalysishighlightitem_tmp.deserialize(i)
@HighlightSet << mediaaianalysishighlightitem_tmp
end
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
end
end
# 智能精彩片段结果类型
class AiAnalysisTaskHighlightResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCode: 错误码,0:成功,其他值:失败。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 智能精彩片段任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskHighlightInput`
# @param Output: 智能精彩片段任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskHighlightOutput`
attr_accessor :Status, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiAnalysisTaskHighlightInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiAnalysisTaskHighlightOutput.new
@Output.deserialize(params['Output'])
end
end
end
# AI 视频智能分析输入参数类型
class AiAnalysisTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 视频内容分析模板 ID。
# @type Definition: Integer
# @param ExtendedParameter: 扩展参数,其值为序列化的 json字符串。
# 注意:此参数为定制需求参数,需要线下对接。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ExtendedParameter: String
attr_accessor :Definition, :ExtendedParameter
def initialize(definition=nil, extendedparameter=nil)
@Definition = definition
@ExtendedParameter = extendedparameter
end
def deserialize(params)
@Definition = params['Definition']
@ExtendedParameter = params['ExtendedParameter']
end
end
# 智能标签任务输入类型
class AiAnalysisTaskTagInput < TencentCloud::Common::AbstractModel
# @param Definition: 视频智能标签模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 智能标签结果信息
class AiAnalysisTaskTagOutput < TencentCloud::Common::AbstractModel
# @param TagSet: 视频智能标签列表。
# @type TagSet: Array
attr_accessor :TagSet
def initialize(tagset=nil)
@TagSet = tagset
end
def deserialize(params)
unless params['TagSet'].nil?
@TagSet = []
params['TagSet'].each do |i|
mediaaianalysistagitem_tmp = MediaAiAnalysisTagItem.new
mediaaianalysistagitem_tmp.deserialize(i)
@TagSet << mediaaianalysistagitem_tmp
end
end
end
end
# 智能标签结果类型
class AiAnalysisTaskTagResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 智能标签任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskTagInput`
# @param Output: 智能标签任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskTagOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiAnalysisTaskTagInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiAnalysisTaskTagOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 内容审核结果
class AiContentReviewResult < TencentCloud::Common::AbstractModel
# @param Type: 任务的类型,可以取的值有:
# Porn:图片鉴黄
# Terrorism:图片敏感
# Political:图片敏感
# Porn.Asr:Asr 文字鉴黄
# Porn.Ocr:Ocr 文字鉴黄
# Political.Asr:Asr 文字敏感
# Political.Ocr:Ocr 文字敏感
# Terrorism.Ocr:Ocr 文字敏感
# Prohibited.Asr:Asr 文字鉴违禁
# Prohibited.Ocr:Ocr 文字鉴违禁
# @type Type: String
# @param SampleRate: 采样频率,即对视频每秒截取进行审核的帧数。
# @type SampleRate: Float
# @param Duration: 审核的视频时长,单位:秒。
# @type Duration: Float
# @param PornTask: 视频内容审核智能画面鉴黄任务的查询结果,当任务类型为 Porn 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PornTask: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTaskPornResult`
# @param TerrorismTask: 视频内容审核智能画面敏感任务的查询结果,当任务类型为 Terrorism 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TerrorismTask: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTaskTerrorismResult`
# @param PoliticalTask: 视频内容审核智能画面敏感任务的查询结果,当任务类型为 Political 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PoliticalTask: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTaskPoliticalResult`
# @param PornAsrTask: 视频内容审核 Asr 文字鉴黄任务的查询结果,当任务类型为 Porn.Asr 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PornAsrTask: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTaskPornAsrResult`
# @param PornOcrTask: 视频内容审核 Ocr 文字鉴黄任务的查询结果,当任务类型为 Porn.Ocr 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PornOcrTask: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTaskPornOcrResult`
# @param PoliticalAsrTask: 视频内容审核 Asr 文字敏感任务的查询结果,当任务类型为 Political.Asr 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PoliticalAsrTask: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTaskPoliticalAsrResult`
# @param PoliticalOcrTask: 视频内容审核 Ocr 文字敏感任务的查询结果,当任务类型为 Political.Ocr 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PoliticalOcrTask: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTaskPoliticalOcrResult`
# @param TerrorismOcrTask: 视频内容审核 Ocr 文字敏感任务的查询结果,当任务类型为 Terrorism.Ocr 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TerrorismOcrTask: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTaskTerrorismOcrResult`
# @param ProhibitedAsrTask: 视频内容审核 Asr 文字鉴违禁任务的查询结果,当任务类型为 Prohibited.Asr 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ProhibitedAsrTask: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTaskProhibitedAsrResult`
# @param ProhibitedOcrTask: 视频内容审核 Ocr 文字鉴违禁任务的查询结果,当任务类型为 Prohibited.Ocr 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ProhibitedOcrTask: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTaskProhibitedOcrResult`
attr_accessor :Type, :SampleRate, :Duration, :PornTask, :TerrorismTask, :PoliticalTask, :PornAsrTask, :PornOcrTask, :PoliticalAsrTask, :PoliticalOcrTask, :TerrorismOcrTask, :ProhibitedAsrTask, :ProhibitedOcrTask
def initialize(type=nil, samplerate=nil, duration=nil, porntask=nil, terrorismtask=nil, politicaltask=nil, pornasrtask=nil, pornocrtask=nil, politicalasrtask=nil, politicalocrtask=nil, terrorismocrtask=nil, prohibitedasrtask=nil, prohibitedocrtask=nil)
@Type = type
@SampleRate = samplerate
@Duration = duration
@PornTask = porntask
@TerrorismTask = terrorismtask
@PoliticalTask = politicaltask
@PornAsrTask = pornasrtask
@PornOcrTask = pornocrtask
@PoliticalAsrTask = politicalasrtask
@PoliticalOcrTask = politicalocrtask
@TerrorismOcrTask = terrorismocrtask
@ProhibitedAsrTask = prohibitedasrtask
@ProhibitedOcrTask = prohibitedocrtask
end
def deserialize(params)
@Type = params['Type']
@SampleRate = params['SampleRate']
@Duration = params['Duration']
unless params['PornTask'].nil?
@PornTask = AiReviewTaskPornResult.new
@PornTask.deserialize(params['PornTask'])
end
unless params['TerrorismTask'].nil?
@TerrorismTask = AiReviewTaskTerrorismResult.new
@TerrorismTask.deserialize(params['TerrorismTask'])
end
unless params['PoliticalTask'].nil?
@PoliticalTask = AiReviewTaskPoliticalResult.new
@PoliticalTask.deserialize(params['PoliticalTask'])
end
unless params['PornAsrTask'].nil?
@PornAsrTask = AiReviewTaskPornAsrResult.new
@PornAsrTask.deserialize(params['PornAsrTask'])
end
unless params['PornOcrTask'].nil?
@PornOcrTask = AiReviewTaskPornOcrResult.new
@PornOcrTask.deserialize(params['PornOcrTask'])
end
unless params['PoliticalAsrTask'].nil?
@PoliticalAsrTask = AiReviewTaskPoliticalAsrResult.new
@PoliticalAsrTask.deserialize(params['PoliticalAsrTask'])
end
unless params['PoliticalOcrTask'].nil?
@PoliticalOcrTask = AiReviewTaskPoliticalOcrResult.new
@PoliticalOcrTask.deserialize(params['PoliticalOcrTask'])
end
unless params['TerrorismOcrTask'].nil?
@TerrorismOcrTask = AiReviewTaskTerrorismOcrResult.new
@TerrorismOcrTask.deserialize(params['TerrorismOcrTask'])
end
unless params['ProhibitedAsrTask'].nil?
@ProhibitedAsrTask = AiReviewTaskProhibitedAsrResult.new
@ProhibitedAsrTask.deserialize(params['ProhibitedAsrTask'])
end
unless params['ProhibitedOcrTask'].nil?
@ProhibitedOcrTask = AiReviewTaskProhibitedOcrResult.new
@ProhibitedOcrTask.deserialize(params['ProhibitedOcrTask'])
end
end
end
# 智能内容审核任务类型
class AiContentReviewTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 视频内容审核模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 视频质检输入参数类型
class AiQualityControlTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 视频质检模板 ID 。暂时可以直接使用 预设模板ID 10,后面控制台支持用户配置自定义模板。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Definition: Integer
# @param ChannelExtPara: 渠道扩展参数json序列化字符串。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ChannelExtPara: String
attr_accessor :Definition, :ChannelExtPara
def initialize(definition=nil, channelextpara=nil)
@Definition = definition
@ChannelExtPara = channelextpara
end
def deserialize(params)
@Definition = params['Definition']
@ChannelExtPara = params['ChannelExtPara']
end
end
# 智能识别结果。
class AiRecognitionResult < TencentCloud::Common::AbstractModel
# @param Type: 任务的类型,取值范围:
# FaceRecognition:人脸识别,
# AsrWordsRecognition:语音关键词识别,
# OcrWordsRecognition:文本关键词识别,
# AsrFullTextRecognition:语音全文识别,
# OcrFullTextRecognition:文本全文识别。
# TransTextRecognition:语音翻译。
# @type Type: String
# @param FaceTask: 人脸识别结果,当 Type 为
# FaceRecognition 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FaceTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskFaceResult`
# @param AsrWordsTask: 语音关键词识别结果,当 Type 为
# AsrWordsRecognition 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AsrWordsTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskAsrWordsResult`
# @param AsrFullTextTask: 语音全文识别结果,当 Type 为
# AsrFullTextRecognition 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AsrFullTextTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskAsrFullTextResult`
# @param OcrWordsTask: 文本关键词识别结果,当 Type 为
# OcrWordsRecognition 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OcrWordsTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskOcrWordsResult`
# @param OcrFullTextTask: 文本全文识别结果,当 Type 为
# OcrFullTextRecognition 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OcrFullTextTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskOcrFullTextResult`
# @param TransTextTask: 翻译结果,当 Type 为
# TransTextRecognition 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TransTextTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskTransTextResult`
attr_accessor :Type, :FaceTask, :AsrWordsTask, :AsrFullTextTask, :OcrWordsTask, :OcrFullTextTask, :TransTextTask
def initialize(type=nil, facetask=nil, asrwordstask=nil, asrfulltexttask=nil, ocrwordstask=nil, ocrfulltexttask=nil, transtexttask=nil)
@Type = type
@FaceTask = facetask
@AsrWordsTask = asrwordstask
@AsrFullTextTask = asrfulltexttask
@OcrWordsTask = ocrwordstask
@OcrFullTextTask = ocrfulltexttask
@TransTextTask = transtexttask
end
def deserialize(params)
@Type = params['Type']
unless params['FaceTask'].nil?
@FaceTask = AiRecognitionTaskFaceResult.new
@FaceTask.deserialize(params['FaceTask'])
end
unless params['AsrWordsTask'].nil?
@AsrWordsTask = AiRecognitionTaskAsrWordsResult.new
@AsrWordsTask.deserialize(params['AsrWordsTask'])
end
unless params['AsrFullTextTask'].nil?
@AsrFullTextTask = AiRecognitionTaskAsrFullTextResult.new
@AsrFullTextTask.deserialize(params['AsrFullTextTask'])
end
unless params['OcrWordsTask'].nil?
@OcrWordsTask = AiRecognitionTaskOcrWordsResult.new
@OcrWordsTask.deserialize(params['OcrWordsTask'])
end
unless params['OcrFullTextTask'].nil?
@OcrFullTextTask = AiRecognitionTaskOcrFullTextResult.new
@OcrFullTextTask.deserialize(params['OcrFullTextTask'])
end
unless params['TransTextTask'].nil?
@TransTextTask = AiRecognitionTaskTransTextResult.new
@TransTextTask.deserialize(params['TransTextTask'])
end
end
end
# 语音全文识别结果。
class AiRecognitionTaskAsrFullTextResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 语音全文识别任务输入信息。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskAsrFullTextResultInput`
# @param Output: 语音全文识别任务输出信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskAsrFullTextResultOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiRecognitionTaskAsrFullTextResultInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiRecognitionTaskAsrFullTextResultOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 语音全文识别的输入。
class AiRecognitionTaskAsrFullTextResultInput < TencentCloud::Common::AbstractModel
# @param Definition: 语音全文识别模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 语音全文识别结果。
class AiRecognitionTaskAsrFullTextResultOutput < TencentCloud::Common::AbstractModel
# @param SegmentSet: 语音全文识别片段列表。
# @type SegmentSet: Array
# @param SubtitlePath: 字幕文件地址。
# @type SubtitlePath: String
# @param OutputStorage: 字幕文件存储位置。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
attr_accessor :SegmentSet, :SubtitlePath, :OutputStorage
def initialize(segmentset=nil, subtitlepath=nil, outputstorage=nil)
@SegmentSet = segmentset
@SubtitlePath = subtitlepath
@OutputStorage = outputstorage
end
def deserialize(params)
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
airecognitiontaskasrfulltextsegmentitem_tmp = AiRecognitionTaskAsrFullTextSegmentItem.new
airecognitiontaskasrfulltextsegmentitem_tmp.deserialize(i)
@SegmentSet << airecognitiontaskasrfulltextsegmentitem_tmp
end
end
@SubtitlePath = params['SubtitlePath']
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
end
end
# 语音全文识别片段。
class AiRecognitionTaskAsrFullTextSegmentItem < TencentCloud::Common::AbstractModel
# @param Confidence: 识别片段置信度。取值:0~100。
# @type Confidence: Float
# @param StartTimeOffset: 识别片段起始的偏移时间,单位:秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 识别片段终止的偏移时间,单位:秒。
# @type EndTimeOffset: Float
# @param Text: 识别文本。
# @type Text: String
attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset, :Text
def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil, text=nil)
@Confidence = confidence
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@Text = text
end
def deserialize(params)
@Confidence = params['Confidence']
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
@Text = params['Text']
end
end
# 语音关键词识别结果。
class AiRecognitionTaskAsrWordsResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 语音关键词识别任务输入信息。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskAsrWordsResultInput`
# @param Output: 语音关键词识别任务输出信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskAsrWordsResultOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiRecognitionTaskAsrWordsResultInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiRecognitionTaskAsrWordsResultOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 语音关键词识别输入。
class AiRecognitionTaskAsrWordsResultInput < TencentCloud::Common::AbstractModel
# @param Definition: 语音关键词识别模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 语音关键词识别结果。
class AiRecognitionTaskAsrWordsResultItem < TencentCloud::Common::AbstractModel
# @param Word: 语音关键词。
# @type Word: String
# @param SegmentSet: 语音关键词出现的时间片段列表。
# @type SegmentSet: Array
attr_accessor :Word, :SegmentSet
def initialize(word=nil, segmentset=nil)
@Word = word
@SegmentSet = segmentset
end
def deserialize(params)
@Word = params['Word']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
airecognitiontaskasrwordssegmentitem_tmp = AiRecognitionTaskAsrWordsSegmentItem.new
airecognitiontaskasrwordssegmentitem_tmp.deserialize(i)
@SegmentSet << airecognitiontaskasrwordssegmentitem_tmp
end
end
end
end
# 语音关键词识别输出。
class AiRecognitionTaskAsrWordsResultOutput < TencentCloud::Common::AbstractModel
# @param ResultSet: 语音关键词识别结果集。
# @type ResultSet: Array
attr_accessor :ResultSet
def initialize(resultset=nil)
@ResultSet = resultset
end
def deserialize(params)
unless params['ResultSet'].nil?
@ResultSet = []
params['ResultSet'].each do |i|
airecognitiontaskasrwordsresultitem_tmp = AiRecognitionTaskAsrWordsResultItem.new
airecognitiontaskasrwordsresultitem_tmp.deserialize(i)
@ResultSet << airecognitiontaskasrwordsresultitem_tmp
end
end
end
end
# 语音识别片段。
class AiRecognitionTaskAsrWordsSegmentItem < TencentCloud::Common::AbstractModel
# @param StartTimeOffset: 识别片段起始的偏移时间,单位:秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 识别片段终止的偏移时间,单位:秒。
# @type EndTimeOffset: Float
# @param Confidence: 识别片段置信度。取值:0~100。
# @type Confidence: Float
attr_accessor :StartTimeOffset, :EndTimeOffset, :Confidence
def initialize(starttimeoffset=nil, endtimeoffset=nil, confidence=nil)
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@Confidence = confidence
end
def deserialize(params)
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
@Confidence = params['Confidence']
end
end
# 人脸识别结果。
class AiRecognitionTaskFaceResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 人脸识别任务输入信息。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskFaceResultInput`
# @param Output: 人脸识别任务输出信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskFaceResultOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiRecognitionTaskFaceResultInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiRecognitionTaskFaceResultOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 人脸识别输入。
class AiRecognitionTaskFaceResultInput < TencentCloud::Common::AbstractModel
# @param Definition: 人脸识别模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 人脸识别结果
class AiRecognitionTaskFaceResultItem < TencentCloud::Common::AbstractModel
# @param Id: 人物唯一标识 ID。
# @type Id: String
# @param Type: 人物库类型,表示识别出的人物来自哪个人物库:
# Default:默认人物库;
# UserDefine:用户自定义人物库。
# @type Type: String
# @param Name: 人物名称。
# @type Name: String
# @param SegmentSet: 人物出现的片段结果集。
# @type SegmentSet: Array
# @param Gender: 人物性别:
# Male:男性;
# Female:女性。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Gender: String
# @param Birthday: 人物出生日期。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Birthday: String
# @param Profession: 人物职业或者职务。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Profession: String
# @param SchoolOfGraduation: 人物毕业院校。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SchoolOfGraduation: String
# @param Abstract: 人物简介。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Abstract: String
# @param PlaceOfBirth: 人物出生地或者籍贯。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PlaceOfBirth: String
# @param PersonType: 人物类型:
# Politician:官员;
# Artist:艺人。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PersonType: String
# @param Remark: 敏感度标注:
# Normal:正常;
# Sensitive:敏感。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Remark: String
# @param Url: 截图链接
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Url: String
attr_accessor :Id, :Type, :Name, :SegmentSet, :Gender, :Birthday, :Profession, :SchoolOfGraduation, :Abstract, :PlaceOfBirth, :PersonType, :Remark, :Url
def initialize(id=nil, type=nil, name=nil, segmentset=nil, gender=nil, birthday=nil, profession=nil, schoolofgraduation=nil, abstract=nil, placeofbirth=nil, persontype=nil, remark=nil, url=nil)
@Id = id
@Type = type
@Name = name
@SegmentSet = segmentset
@Gender = gender
@Birthday = birthday
@Profession = profession
@SchoolOfGraduation = schoolofgraduation
@Abstract = abstract
@PlaceOfBirth = placeofbirth
@PersonType = persontype
@Remark = remark
@Url = url
end
def deserialize(params)
@Id = params['Id']
@Type = params['Type']
@Name = params['Name']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
airecognitiontaskfacesegmentitem_tmp = AiRecognitionTaskFaceSegmentItem.new
airecognitiontaskfacesegmentitem_tmp.deserialize(i)
@SegmentSet << airecognitiontaskfacesegmentitem_tmp
end
end
@Gender = params['Gender']
@Birthday = params['Birthday']
@Profession = params['Profession']
@SchoolOfGraduation = params['SchoolOfGraduation']
@Abstract = params['Abstract']
@PlaceOfBirth = params['PlaceOfBirth']
@PersonType = params['PersonType']
@Remark = params['Remark']
@Url = params['Url']
end
end
# 智能人脸识别输出。
class AiRecognitionTaskFaceResultOutput < TencentCloud::Common::AbstractModel
# @param ResultSet: 智能人脸识别结果集。
# @type ResultSet: Array
attr_accessor :ResultSet
def initialize(resultset=nil)
@ResultSet = resultset
end
def deserialize(params)
unless params['ResultSet'].nil?
@ResultSet = []
params['ResultSet'].each do |i|
airecognitiontaskfaceresultitem_tmp = AiRecognitionTaskFaceResultItem.new
airecognitiontaskfaceresultitem_tmp.deserialize(i)
@ResultSet << airecognitiontaskfaceresultitem_tmp
end
end
end
end
# 人脸识别结果片段
class AiRecognitionTaskFaceSegmentItem < TencentCloud::Common::AbstractModel
# @param StartTimeOffset: 识别片段起始的偏移时间,单位:秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 识别片段终止的偏移时间,单位:秒。
# @type EndTimeOffset: Float
# @param Confidence: 识别片段置信度。取值:0~100。
# @type Confidence: Float
# @param AreaCoordSet: 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
# @type AreaCoordSet: Array
attr_accessor :StartTimeOffset, :EndTimeOffset, :Confidence, :AreaCoordSet
def initialize(starttimeoffset=nil, endtimeoffset=nil, confidence=nil, areacoordset=nil)
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@Confidence = confidence
@AreaCoordSet = areacoordset
end
def deserialize(params)
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
@Confidence = params['Confidence']
@AreaCoordSet = params['AreaCoordSet']
end
end
# 视频内容识别输入参数类型
class AiRecognitionTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 视频智能识别模板 ID 。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 文本全文识别结果。
class AiRecognitionTaskOcrFullTextResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 文本全文识别任务输入信息。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskOcrFullTextResultInput`
# @param Output: 文本全文识别任务输出信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskOcrFullTextResultOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiRecognitionTaskOcrFullTextResultInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiRecognitionTaskOcrFullTextResultOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 文本全文识别输入。
class AiRecognitionTaskOcrFullTextResultInput < TencentCloud::Common::AbstractModel
# @param Definition: 文本全文识别模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 文本全文识别输出。
class AiRecognitionTaskOcrFullTextResultOutput < TencentCloud::Common::AbstractModel
# @param SegmentSet: 文本全文识别结果集。
# @type SegmentSet: Array
attr_accessor :SegmentSet
def initialize(segmentset=nil)
@SegmentSet = segmentset
end
def deserialize(params)
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
airecognitiontaskocrfulltextsegmentitem_tmp = AiRecognitionTaskOcrFullTextSegmentItem.new
airecognitiontaskocrfulltextsegmentitem_tmp.deserialize(i)
@SegmentSet << airecognitiontaskocrfulltextsegmentitem_tmp
end
end
end
end
# 文本全文识别片段。
class AiRecognitionTaskOcrFullTextSegmentItem < TencentCloud::Common::AbstractModel
# @param StartTimeOffset: 识别片段起始的偏移时间,单位:秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 识别片段终止的偏移时间,单位:秒。
# @type EndTimeOffset: Float
# @param TextSet: 识别片段结果集。
# @type TextSet: Array
attr_accessor :StartTimeOffset, :EndTimeOffset, :TextSet
def initialize(starttimeoffset=nil, endtimeoffset=nil, textset=nil)
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@TextSet = textset
end
def deserialize(params)
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
unless params['TextSet'].nil?
@TextSet = []
params['TextSet'].each do |i|
airecognitiontaskocrfulltextsegmenttextitem_tmp = AiRecognitionTaskOcrFullTextSegmentTextItem.new
airecognitiontaskocrfulltextsegmenttextitem_tmp.deserialize(i)
@TextSet << airecognitiontaskocrfulltextsegmenttextitem_tmp
end
end
end
end
# 文本全文识别片段。
class AiRecognitionTaskOcrFullTextSegmentTextItem < TencentCloud::Common::AbstractModel
# @param Confidence: 识别片段置信度。取值:0~100。
# @type Confidence: Float
# @param AreaCoordSet: 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
# @type AreaCoordSet: Array
# @param Text: 识别文本。
# @type Text: String
attr_accessor :Confidence, :AreaCoordSet, :Text
def initialize(confidence=nil, areacoordset=nil, text=nil)
@Confidence = confidence
@AreaCoordSet = areacoordset
@Text = text
end
def deserialize(params)
@Confidence = params['Confidence']
@AreaCoordSet = params['AreaCoordSet']
@Text = params['Text']
end
end
# 文本关键识别结果。
class AiRecognitionTaskOcrWordsResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 文本关键词识别任务输入信息。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskOcrWordsResultInput`
# @param Output: 文本关键词识别任务输出信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskOcrWordsResultOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiRecognitionTaskOcrWordsResultInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiRecognitionTaskOcrWordsResultOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 文本关键词识别输入。
class AiRecognitionTaskOcrWordsResultInput < TencentCloud::Common::AbstractModel
# @param Definition: 文本关键词识别模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 文本关键词识别结果。
class AiRecognitionTaskOcrWordsResultItem < TencentCloud::Common::AbstractModel
# @param Word: 文本关键词。
# @type Word: String
# @param SegmentSet: 文本关键出现的片段列表。
# @type SegmentSet: Array
attr_accessor :Word, :SegmentSet
def initialize(word=nil, segmentset=nil)
@Word = word
@SegmentSet = segmentset
end
def deserialize(params)
@Word = params['Word']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
airecognitiontaskocrwordssegmentitem_tmp = AiRecognitionTaskOcrWordsSegmentItem.new
airecognitiontaskocrwordssegmentitem_tmp.deserialize(i)
@SegmentSet << airecognitiontaskocrwordssegmentitem_tmp
end
end
end
end
# 文本关键词识别输出。
class AiRecognitionTaskOcrWordsResultOutput < TencentCloud::Common::AbstractModel
# @param ResultSet: 文本关键词识别结果集。
# @type ResultSet: Array
attr_accessor :ResultSet
def initialize(resultset=nil)
@ResultSet = resultset
end
def deserialize(params)
unless params['ResultSet'].nil?
@ResultSet = []
params['ResultSet'].each do |i|
airecognitiontaskocrwordsresultitem_tmp = AiRecognitionTaskOcrWordsResultItem.new
airecognitiontaskocrwordsresultitem_tmp.deserialize(i)
@ResultSet << airecognitiontaskocrwordsresultitem_tmp
end
end
end
end
# 文本识别片段。
class AiRecognitionTaskOcrWordsSegmentItem < TencentCloud::Common::AbstractModel
# @param StartTimeOffset: 识别片段起始的偏移时间,单位:秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 识别片段终止的偏移时间,单位:秒。
# @type EndTimeOffset: Float
# @param Confidence: 识别片段置信度。取值:0~100。
# @type Confidence: Float
# @param AreaCoordSet: 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
# @type AreaCoordSet: Array
attr_accessor :StartTimeOffset, :EndTimeOffset, :Confidence, :AreaCoordSet
def initialize(starttimeoffset=nil, endtimeoffset=nil, confidence=nil, areacoordset=nil)
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@Confidence = confidence
@AreaCoordSet = areacoordset
end
def deserialize(params)
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
@Confidence = params['Confidence']
@AreaCoordSet = params['AreaCoordSet']
end
end
# 翻译结果。
class AiRecognitionTaskTransTextResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 翻译任务输入信息。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskTransTextResultInput`
# @param Output: 翻译任务输出信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskTransTextResultOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiRecognitionTaskTransTextResultInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiRecognitionTaskTransTextResultOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 翻译的输入。
class AiRecognitionTaskTransTextResultInput < TencentCloud::Common::AbstractModel
# @param Definition: 翻译模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 翻译结果。
class AiRecognitionTaskTransTextResultOutput < TencentCloud::Common::AbstractModel
# @param SegmentSet: 翻译片段列表。
# @type SegmentSet: Array
# @param SubtitlePath: 字幕文件地址。
# @type SubtitlePath: String
# @param OutputStorage: 字幕文件存储位置。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
attr_accessor :SegmentSet, :SubtitlePath, :OutputStorage
def initialize(segmentset=nil, subtitlepath=nil, outputstorage=nil)
@SegmentSet = segmentset
@SubtitlePath = subtitlepath
@OutputStorage = outputstorage
end
def deserialize(params)
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
airecognitiontasktranstextsegmentitem_tmp = AiRecognitionTaskTransTextSegmentItem.new
airecognitiontasktranstextsegmentitem_tmp.deserialize(i)
@SegmentSet << airecognitiontasktranstextsegmentitem_tmp
end
end
@SubtitlePath = params['SubtitlePath']
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
end
end
# 翻译片段。
class AiRecognitionTaskTransTextSegmentItem < TencentCloud::Common::AbstractModel
# @param Confidence: 识别片段置信度。取值:0~100。
# @type Confidence: Float
# @param StartTimeOffset: 识别片段起始的偏移时间,单位:秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 识别片段终止的偏移时间,单位:秒。
# @type EndTimeOffset: Float
# @param Text: 识别文本。
# @type Text: String
# @param Trans: 翻译文本。
# @type Trans: String
attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset, :Text, :Trans
def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil, text=nil, trans=nil)
@Confidence = confidence
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@Text = text
@Trans = trans
end
def deserialize(params)
@Confidence = params['Confidence']
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
@Text = params['Text']
@Trans = params['Trans']
end
end
# 内容审核 Asr 文字敏感任务输入参数类型
class AiReviewPoliticalAsrTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# Asr 文字敏感信息
class AiReviewPoliticalAsrTaskOutput < TencentCloud::Common::AbstractModel
# @param Confidence: Asr 文字敏感评分,分值为0到100。
# @type Confidence: Float
# @param Suggestion: Asr 文字敏感结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param SegmentSet: Asr 文字敏感嫌疑的视频片段列表。
# @type SegmentSet: Array
attr_accessor :Confidence, :Suggestion, :SegmentSet
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
@Confidence = confidence
@Suggestion = suggestion
@SegmentSet = segmentset
end
def deserialize(params)
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
mediacontentreviewasrtextsegmentitem_tmp = MediaContentReviewAsrTextSegmentItem.new
mediacontentreviewasrtextsegmentitem_tmp.deserialize(i)
@SegmentSet << mediacontentreviewasrtextsegmentitem_tmp
end
end
end
end
# 内容审核 Ocr 文字敏感任务输入参数类型
class AiReviewPoliticalOcrTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# Ocr 文字敏感信息
class AiReviewPoliticalOcrTaskOutput < TencentCloud::Common::AbstractModel
# @param Confidence: Ocr 文字敏感评分,分值为0到100。
# @type Confidence: Float
# @param Suggestion: Ocr 文字敏感结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param SegmentSet: Ocr 文字有敏感嫌疑的视频片段列表。
# @type SegmentSet: Array
attr_accessor :Confidence, :Suggestion, :SegmentSet
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
@Confidence = confidence
@Suggestion = suggestion
@SegmentSet = segmentset
end
def deserialize(params)
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
mediacontentreviewocrtextsegmentitem_tmp = MediaContentReviewOcrTextSegmentItem.new
mediacontentreviewocrtextsegmentitem_tmp.deserialize(i)
@SegmentSet << mediacontentreviewocrtextsegmentitem_tmp
end
end
end
end
# 内容审核敏感任务输入参数类型
class AiReviewPoliticalTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 涉敏信息
class AiReviewPoliticalTaskOutput < TencentCloud::Common::AbstractModel
# @param Confidence: 视频涉敏评分,分值为0到100。
# @type Confidence: Float
# @param Suggestion: 涉敏结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param Label: 视频涉敏结果标签。内容审核模板[画面涉敏任务控制参数](https://cloud.tencent.com/document/api/862/37615#AiReviewPoliticalTaskOutput)里 LabelSet 参数与此参数取值范围的对应关系:
# violation_photo:
# violation_photo:违规图标。
# 其他(即 politician/entertainment/sport/entrepreneur/scholar/celebrity/military):
# politician:涉敏人物。
# @type Label: String
# @param SegmentSet: 有涉敏嫌疑的视频片段列表。
# @type SegmentSet: Array
attr_accessor :Confidence, :Suggestion, :Label, :SegmentSet
def initialize(confidence=nil, suggestion=nil, label=nil, segmentset=nil)
@Confidence = confidence
@Suggestion = suggestion
@Label = label
@SegmentSet = segmentset
end
def deserialize(params)
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
@Label = params['Label']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
mediacontentreviewpoliticalsegmentitem_tmp = MediaContentReviewPoliticalSegmentItem.new
mediacontentreviewpoliticalsegmentitem_tmp.deserialize(i)
@SegmentSet << mediacontentreviewpoliticalsegmentitem_tmp
end
end
end
end
# 内容审核 Asr 文字鉴黄任务输入参数类型
class AiReviewPornAsrTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 鉴黄模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# Asr 文字涉黄信息
class AiReviewPornAsrTaskOutput < TencentCloud::Common::AbstractModel
# @param Confidence: Asr 文字涉黄评分,分值为0到100。
# @type Confidence: Float
# @param Suggestion: Asr 文字涉黄结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param SegmentSet: Asr 文字有涉黄嫌疑的视频片段列表。
# @type SegmentSet: Array
attr_accessor :Confidence, :Suggestion, :SegmentSet
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
@Confidence = confidence
@Suggestion = suggestion
@SegmentSet = segmentset
end
def deserialize(params)
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
mediacontentreviewasrtextsegmentitem_tmp = MediaContentReviewAsrTextSegmentItem.new
mediacontentreviewasrtextsegmentitem_tmp.deserialize(i)
@SegmentSet << mediacontentreviewasrtextsegmentitem_tmp
end
end
end
end
# 内容审核 Ocr 文字鉴黄任务输入参数类型
class AiReviewPornOcrTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 鉴黄模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# Ocr 文字涉黄信息
class AiReviewPornOcrTaskOutput < TencentCloud::Common::AbstractModel
# @param Confidence: Ocr 文字涉黄评分,分值为0到100。
# @type Confidence: Float
# @param Suggestion: Ocr 文字涉黄结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param SegmentSet: Ocr 文字有涉黄嫌疑的视频片段列表。
# @type SegmentSet: Array
attr_accessor :Confidence, :Suggestion, :SegmentSet
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
@Confidence = confidence
@Suggestion = suggestion
@SegmentSet = segmentset
end
def deserialize(params)
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
mediacontentreviewocrtextsegmentitem_tmp = MediaContentReviewOcrTextSegmentItem.new
mediacontentreviewocrtextsegmentitem_tmp.deserialize(i)
@SegmentSet << mediacontentreviewocrtextsegmentitem_tmp
end
end
end
end
# 内容审核鉴黄任务输入参数类型
class AiReviewPornTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 鉴黄模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 鉴黄结果信息
class AiReviewPornTaskOutput < TencentCloud::Common::AbstractModel
# @param Confidence: 视频鉴黄评分,分值为0到100。
# @type Confidence: Float
# @param Suggestion: 鉴黄结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param Label: 视频鉴黄结果标签,取值范围:
# porn:色情。
# sexy:性感。
# vulgar:低俗。
# intimacy:亲密行为。
# @type Label: String
# @param SegmentSet: 有涉黄嫌疑的视频片段列表。
# @type SegmentSet: Array
attr_accessor :Confidence, :Suggestion, :Label, :SegmentSet
def initialize(confidence=nil, suggestion=nil, label=nil, segmentset=nil)
@Confidence = confidence
@Suggestion = suggestion
@Label = label
@SegmentSet = segmentset
end
def deserialize(params)
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
@Label = params['Label']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
mediacontentreviewsegmentitem_tmp = MediaContentReviewSegmentItem.new
mediacontentreviewsegmentitem_tmp.deserialize(i)
@SegmentSet << mediacontentreviewsegmentitem_tmp
end
end
end
end
# 内容审核 Asr 文字鉴违禁任务输入参数类型
class AiReviewProhibitedAsrTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 鉴违禁模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# Asr 文字涉违禁信息
class AiReviewProhibitedAsrTaskOutput < TencentCloud::Common::AbstractModel
# @param Confidence: Asr 文字涉违禁评分,分值为0到100。
# @type Confidence: Float
# @param Suggestion: Asr 文字涉违禁结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param SegmentSet: Asr 文字有涉违禁嫌疑的视频片段列表。
# @type SegmentSet: Array
attr_accessor :Confidence, :Suggestion, :SegmentSet
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
@Confidence = confidence
@Suggestion = suggestion
@SegmentSet = segmentset
end
def deserialize(params)
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
mediacontentreviewasrtextsegmentitem_tmp = MediaContentReviewAsrTextSegmentItem.new
mediacontentreviewasrtextsegmentitem_tmp.deserialize(i)
@SegmentSet << mediacontentreviewasrtextsegmentitem_tmp
end
end
end
end
# 内容审核 Ocr 文字鉴违禁任务输入参数类型
class AiReviewProhibitedOcrTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 鉴违禁模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# Ocr 文字涉违禁信息
class AiReviewProhibitedOcrTaskOutput < TencentCloud::Common::AbstractModel
# @param Confidence: Ocr 文字涉违禁评分,分值为0到100。
# @type Confidence: Float
# @param Suggestion: Ocr 文字涉违禁结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param SegmentSet: Ocr 文字有涉违禁嫌疑的视频片段列表。
# @type SegmentSet: Array
attr_accessor :Confidence, :Suggestion, :SegmentSet
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
@Confidence = confidence
@Suggestion = suggestion
@SegmentSet = segmentset
end
def deserialize(params)
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
mediacontentreviewocrtextsegmentitem_tmp = MediaContentReviewOcrTextSegmentItem.new
mediacontentreviewocrtextsegmentitem_tmp.deserialize(i)
@SegmentSet << mediacontentreviewocrtextsegmentitem_tmp
end
end
end
end
# 内容审核 Asr 文字敏感任务结果类型
class AiReviewTaskPoliticalAsrResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 内容审核 Asr 文字敏感任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiReviewPoliticalAsrTaskInput`
# @param Output: 内容审核 Asr 文字敏感任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiReviewPoliticalAsrTaskOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiReviewPoliticalAsrTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiReviewPoliticalAsrTaskOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 内容审核 Ocr 文字敏感任务结果类型
class AiReviewTaskPoliticalOcrResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS,FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 内容审核 Ocr 文字敏感任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiReviewPoliticalOcrTaskInput`
# @param Output: 内容审核 Ocr 文字敏感任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiReviewPoliticalOcrTaskOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiReviewPoliticalOcrTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiReviewPoliticalOcrTaskOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 内容审核涉敏任务结果类型
class AiReviewTaskPoliticalResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 内容审核涉敏任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiReviewPoliticalTaskInput`
# @param Output: 内容审核涉敏任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiReviewPoliticalTaskOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiReviewPoliticalTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiReviewPoliticalTaskOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 内容审核 Asr 文字鉴黄任务结果类型
class AiReviewTaskPornAsrResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 内容审核 Asr 文字鉴黄任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiReviewPornAsrTaskInput`
# @param Output: 内容审核 Asr 文字鉴黄任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiReviewPornAsrTaskOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiReviewPornAsrTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiReviewPornAsrTaskOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 内容审核 Ocr 文字鉴黄任务结果类型
class AiReviewTaskPornOcrResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 内容审核 Ocr 文字鉴黄任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiReviewPornOcrTaskInput`
# @param Output: 内容审核 Ocr 文字鉴黄任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiReviewPornOcrTaskOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiReviewPornOcrTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiReviewPornOcrTaskOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 内容审核鉴黄任务结果类型
class AiReviewTaskPornResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 内容审核鉴黄任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiReviewPornTaskInput`
# @param Output: 内容审核鉴黄任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiReviewPornTaskOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiReviewPornTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiReviewPornTaskOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 内容审核 Asr 文字鉴任违禁务结果类型
class AiReviewTaskProhibitedAsrResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 内容审核 Asr 文字鉴违禁任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiReviewProhibitedAsrTaskInput`
# @param Output: 内容审核 Asr 文字鉴违禁任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiReviewProhibitedAsrTaskOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiReviewProhibitedAsrTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiReviewProhibitedAsrTaskOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 内容审核 Ocr 文字鉴任违禁务结果类型
class AiReviewTaskProhibitedOcrResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 内容审核 Ocr 文字鉴违禁任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiReviewProhibitedOcrTaskInput`
# @param Output: 内容审核 Ocr 文字鉴违禁任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiReviewProhibitedOcrTaskOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiReviewProhibitedOcrTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiReviewProhibitedOcrTaskOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 内容审核 Ocr 文字敏感任务结果类型
class AiReviewTaskTerrorismOcrResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 内容审核 Ocr 文字敏感任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTerrorismOcrTaskInput`
# @param Output: 内容审核 Ocr 文字敏感任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTerrorismOcrTaskOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiReviewTerrorismOcrTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiReviewTerrorismOcrTaskOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 内容审核涉敏任务结果类型
class AiReviewTaskTerrorismResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 内容审核涉敏任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTerrorismTaskInput`
# @param Output: 内容审核涉敏任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiReviewTerrorismTaskOutput`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiReviewTerrorismTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AiReviewTerrorismTaskOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 内容审核 Ocr 文字敏感任务输入参数类型
class AiReviewTerrorismOcrTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# Ocr 文字涉敏信息
class AiReviewTerrorismOcrTaskOutput < TencentCloud::Common::AbstractModel
# @param Confidence: Ocr 文字涉敏评分,分值为0到100。
# @type Confidence: Float
# @param Suggestion: Ocr 文字涉敏结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param SegmentSet: Ocr 文字有涉敏嫌疑的视频片段列表。
# @type SegmentSet: Array
attr_accessor :Confidence, :Suggestion, :SegmentSet
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
@Confidence = confidence
@Suggestion = suggestion
@SegmentSet = segmentset
end
def deserialize(params)
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
mediacontentreviewocrtextsegmentitem_tmp = MediaContentReviewOcrTextSegmentItem.new
mediacontentreviewocrtextsegmentitem_tmp.deserialize(i)
@SegmentSet << mediacontentreviewocrtextsegmentitem_tmp
end
end
end
end
# 内容审核涉敏任务输入参数类型
class AiReviewTerrorismTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 模板 ID。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# 涉敏信息
class AiReviewTerrorismTaskOutput < TencentCloud::Common::AbstractModel
# @param Confidence: 视频涉敏评分,分值为0到100。
# @type Confidence: Float
# @param Suggestion: 涉敏结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param Label: 视频涉敏结果标签,取值范围:
# guns:武器枪支。
# crowd:人群聚集。
# police:警察部队。
# bloody:血腥画面。
# banners:涉敏旗帜。
# militant:武装分子。
# explosion:爆炸火灾。
# terrorists:涉敏人物。
# scenario:涉敏画面。
# @type Label: String
# @param SegmentSet: 有涉敏嫌疑的视频片段列表。
# @type SegmentSet: Array
attr_accessor :Confidence, :Suggestion, :Label, :SegmentSet
def initialize(confidence=nil, suggestion=nil, label=nil, segmentset=nil)
@Confidence = confidence
@Suggestion = suggestion
@Label = label
@SegmentSet = segmentset
end
def deserialize(params)
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
@Label = params['Label']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
mediacontentreviewsegmentitem_tmp = MediaContentReviewSegmentItem.new
mediacontentreviewsegmentitem_tmp.deserialize(i)
@SegmentSet << mediacontentreviewsegmentitem_tmp
end
end
end
end
# AI 样本管理,人脸信息。
class AiSampleFaceInfo < TencentCloud::Common::AbstractModel
# @param FaceId: 人脸图片 ID。
# @type FaceId: String
# @param Url: 人脸图片地址。
# @type Url: String
attr_accessor :FaceId, :Url
def initialize(faceid=nil, url=nil)
@FaceId = faceid
@Url = url
end
def deserialize(params)
@FaceId = params['FaceId']
@Url = params['Url']
end
end
# AI 样本管理,人脸数据操作。
class AiSampleFaceOperation < TencentCloud::Common::AbstractModel
# @param Type: 操作类型,可选值:add(添加)、delete(删除)、reset(重置)。重置操作将清空该人物已有人脸数据,并添加 FaceContents 指定人脸数据。
# @type Type: String
# @param FaceIds: 人脸 ID 集合,当 Type为delete 时,该字段必填。
# @type FaceIds: Array
# @param FaceContents: 人脸图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串集合。
# 当 Type为add 或 reset 时,该字段必填;
# 数组长度限制:5 张图片。
# 注意:图片必须是单人像正面人脸较清晰的照片,像素不低于 200*200。
# @type FaceContents: Array
attr_accessor :Type, :FaceIds, :FaceContents
def initialize(type=nil, faceids=nil, facecontents=nil)
@Type = type
@FaceIds = faceids
@FaceContents = facecontents
end
def deserialize(params)
@Type = params['Type']
@FaceIds = params['FaceIds']
@FaceContents = params['FaceContents']
end
end
# AI 样本管理,处理失败的人脸信息
class AiSampleFailFaceInfo < TencentCloud::Common::AbstractModel
# @param Index: 对应入参 FaceContents 中错误图片下标,从 0 开始。
# @type Index: Integer
# @param ErrCode: 错误码,取值:
# 0:成功;
# 其他:失败。
# @type ErrCode: Integer
# @param Message: 错误描述。
# @type Message: String
attr_accessor :Index, :ErrCode, :Message
def initialize(index=nil, errcode=nil, message=nil)
@Index = index
@ErrCode = errcode
@Message = message
end
def deserialize(params)
@Index = params['Index']
@ErrCode = params['ErrCode']
@Message = params['Message']
end
end
# AI 样本管理,人物信息。
class AiSamplePerson < TencentCloud::Common::AbstractModel
# @param PersonId: 人物 ID。
# @type PersonId: String
# @param Name: 人物名称。
# @type Name: String
# @param Description: 人物描述。
# @type Description: String
# @param FaceInfoSet: 人脸信息。
# @type FaceInfoSet: Array
# @param TagSet: 人物标签。
# @type TagSet: Array
# @param UsageSet: 应用场景。
# @type UsageSet: Array
# @param CreateTime: 创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param UpdateTime: 最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type UpdateTime: String
attr_accessor :PersonId, :Name, :Description, :FaceInfoSet, :TagSet, :UsageSet, :CreateTime, :UpdateTime
def initialize(personid=nil, name=nil, description=nil, faceinfoset=nil, tagset=nil, usageset=nil, createtime=nil, updatetime=nil)
@PersonId = personid
@Name = name
@Description = description
@FaceInfoSet = faceinfoset
@TagSet = tagset
@UsageSet = usageset
@CreateTime = createtime
@UpdateTime = updatetime
end
def deserialize(params)
@PersonId = params['PersonId']
@Name = params['Name']
@Description = params['Description']
unless params['FaceInfoSet'].nil?
@FaceInfoSet = []
params['FaceInfoSet'].each do |i|
aisamplefaceinfo_tmp = AiSampleFaceInfo.new
aisamplefaceinfo_tmp.deserialize(i)
@FaceInfoSet << aisamplefaceinfo_tmp
end
end
@TagSet = params['TagSet']
@UsageSet = params['UsageSet']
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
end
end
# AI 样本管理,标签操作。
class AiSampleTagOperation < TencentCloud::Common::AbstractModel
# @param Type: 操作类型,可选值:add(添加)、delete(删除)、reset(重置)。
# @type Type: String
# @param Tags: 标签,长度限制:128 个字符。
# @type Tags: Array
attr_accessor :Type, :Tags
def initialize(type=nil, tags=nil)
@Type = type
@Tags = tags
end
def deserialize(params)
@Type = params['Type']
@Tags = params['Tags']
end
end
# AI 样本管理,关键词输出信息。
class AiSampleWord < TencentCloud::Common::AbstractModel
# @param Keyword: 关键词。
# @type Keyword: String
# @param TagSet: 关键词标签。
# @type TagSet: Array
# @param UsageSet: 关键词应用场景。
# @type UsageSet: Array
# @param CreateTime: 创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param UpdateTime: 最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type UpdateTime: String
attr_accessor :Keyword, :TagSet, :UsageSet, :CreateTime, :UpdateTime
def initialize(keyword=nil, tagset=nil, usageset=nil, createtime=nil, updatetime=nil)
@Keyword = keyword
@TagSet = tagset
@UsageSet = usageset
@CreateTime = createtime
@UpdateTime = updatetime
end
def deserialize(params)
@Keyword = params['Keyword']
@TagSet = params['TagSet']
@UsageSet = params['UsageSet']
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
end
end
# AI 样本管理,关键词输入信息。
class AiSampleWordInfo < TencentCloud::Common::AbstractModel
# @param Keyword: 关键词,长度限制:20 个字符。
# @type Keyword: String
# @param Tags: 关键词标签
# 数组长度限制:20 个标签;
# 单个标签长度限制:128 个字符。
# @type Tags: Array
attr_accessor :Keyword, :Tags
def initialize(keyword=nil, tags=nil)
@Keyword = keyword
@Tags = tags
end
def deserialize(params)
@Keyword = params['Keyword']
@Tags = params['Tags']
end
end
# 转动图任务类型。
class AnimatedGraphicTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 视频转动图模板 ID。
# @type Definition: Integer
# @param StartTimeOffset: 动图在视频中的开始时间,单位为秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 动图在视频中的结束时间,单位为秒。
# @type EndTimeOffset: Float
# @param OutputStorage: 转动图后文件的目标存储,不填则继承上层的 OutputStorage 值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputObjectPath: 转动图后文件的输出路径,可以为相对路径或者绝对路径。如果不填,则默认为相对路径:`{inputName}_animatedGraphic_{definition}.{format}`。
# @type OutputObjectPath: String
attr_accessor :Definition, :StartTimeOffset, :EndTimeOffset, :OutputStorage, :OutputObjectPath
def initialize(definition=nil, starttimeoffset=nil, endtimeoffset=nil, outputstorage=nil, outputobjectpath=nil)
@Definition = definition
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@OutputStorage = outputstorage
@OutputObjectPath = outputobjectpath
end
def deserialize(params)
@Definition = params['Definition']
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputObjectPath = params['OutputObjectPath']
end
end
# 转动图模板详情。
class AnimatedGraphicsTemplate < TencentCloud::Common::AbstractModel
# @param Definition: 转动图模板唯一标识。
# @type Definition: Integer
# @param Type: 模板类型,取值范围:
# Preset:系统预置模板;
# Custom:用户自定义模板。
# @type Type: String
# @param Name: 转动图模板名称。
# @type Name: String
# @param Comment: 转动图模板描述。
# @type Comment: String
# @param Width: 动图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 动图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# @type ResolutionAdaptive: String
# @param Format: 动图格式。
# @type Format: String
# @param Fps: 帧率。
# @type Fps: Integer
# @param Quality: 图片质量。
# @type Quality: Float
# @param CreateTime: 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type UpdateTime: String
attr_accessor :Definition, :Type, :Name, :Comment, :Width, :Height, :ResolutionAdaptive, :Format, :Fps, :Quality, :CreateTime, :UpdateTime
def initialize(definition=nil, type=nil, name=nil, comment=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil, fps=nil, quality=nil, createtime=nil, updatetime=nil)
@Definition = definition
@Type = type
@Name = name
@Comment = comment
@Width = width
@Height = height
@ResolutionAdaptive = resolutionadaptive
@Format = format
@Fps = fps
@Quality = quality
@CreateTime = createtime
@UpdateTime = updatetime
end
def deserialize(params)
@Definition = params['Definition']
@Type = params['Type']
@Name = params['Name']
@Comment = params['Comment']
@Width = params['Width']
@Height = params['Height']
@ResolutionAdaptive = params['ResolutionAdaptive']
@Format = params['Format']
@Fps = params['Fps']
@Quality = params['Quality']
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
end
end
# 去伪影(毛刺)配置
class ArtifactRepairConfig < TencentCloud::Common::AbstractModel
# @param Switch: 能力配置开关,可选值:
# ON:开启;
# OFF:关闭。
# 默认值:ON。
# @type Switch: String
# @param Type: 类型,可选值:
# weak
# strong
# 默认值:weak。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Type: String
attr_accessor :Switch, :Type
def initialize(switch=nil, type=nil)
@Switch = switch
@Type = type
end
def deserialize(params)
@Switch = params['Switch']
@Type = params['Type']
end
end
# 语音全文识别任务控制参数
class AsrFullTextConfigureInfo < TencentCloud::Common::AbstractModel
# @param Switch: 语音全文识别任务开关,可选值:
# ON:开启智能语音全文识别任务;
# OFF:关闭智能语音全文识别任务。
# @type Switch: String
# @param SubtitleFormat: 生成的字幕文件格式,不填或者填空字符串表示不生成字幕文件,可选值:
# vtt:生成 WebVTT 字幕文件。
# @type SubtitleFormat: String
# @param SourceLanguage: 视频源语言。
# @type SourceLanguage: String
attr_accessor :Switch, :SubtitleFormat, :SourceLanguage
def initialize(switch=nil, subtitleformat=nil, sourcelanguage=nil)
@Switch = switch
@SubtitleFormat = subtitleformat
@SourceLanguage = sourcelanguage
end
def deserialize(params)
@Switch = params['Switch']
@SubtitleFormat = params['SubtitleFormat']
@SourceLanguage = params['SourceLanguage']
end
end
# 语音全文识别任务控制参数
class AsrFullTextConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 语音全文识别任务开关,可选值:
# ON:开启智能语音全文识别任务;
# OFF:关闭智能语音全文识别任务。
# @type Switch: String
# @param SubtitleFormat: 生成的字幕文件格式,填空字符串表示不生成字幕文件,可选值:
# vtt:生成 WebVTT 字幕文件。
# @type SubtitleFormat: String
# @param SourceLanguage: 视频源语言。
# @type SourceLanguage: String
attr_accessor :Switch, :SubtitleFormat, :SourceLanguage
def initialize(switch=nil, subtitleformat=nil, sourcelanguage=nil)
@Switch = switch
@SubtitleFormat = subtitleformat
@SourceLanguage = sourcelanguage
end
def deserialize(params)
@Switch = params['Switch']
@SubtitleFormat = params['SubtitleFormat']
@SourceLanguage = params['SourceLanguage']
end
end
# 语音关键词识别控制参数。
class AsrWordsConfigureInfo < TencentCloud::Common::AbstractModel
# @param Switch: 语音关键词识别任务开关,可选值:
# ON:开启语音关键词识别任务;
# OFF:关闭语音关键词识别任务。
# @type Switch: String
# @param LabelSet: 关键词过滤标签,指定需要返回的关键词的标签。如果未填或者为空,则全部结果都返回。
# 标签个数最多 10 个,每个标签长度最多 16 个字符。
# @type LabelSet: Array
attr_accessor :Switch, :LabelSet
def initialize(switch=nil, labelset=nil)
@Switch = switch
@LabelSet = labelset
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
end
end
# 语音关键词识别控制参数。
class AsrWordsConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 语音关键词识别任务开关,可选值:
# ON:开启语音关键词识别任务;
# OFF:关闭语音关键词识别任务。
# @type Switch: String
# @param LabelSet: 关键词过滤标签,指定需要返回的关键词的标签。如果未填或者为空,则全部结果都返回。
# 标签个数最多 10 个,每个标签长度最多 16 个字符。
# @type LabelSet: Array
attr_accessor :Switch, :LabelSet
def initialize(switch=nil, labelset=nil)
@Switch = switch
@LabelSet = labelset
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
end
end
# 音频流配置参数
class AudioTemplateInfo < TencentCloud::Common::AbstractModel
# @param Codec: 音频流的编码格式。
# 当外层参数 Container 为 mp3 时,可选值为:
# libmp3lame。
# 当外层参数 Container 为 ogg 或 flac 时,可选值为:
# flac。
# 当外层参数 Container 为 m4a 时,可选值为:
# libfdk_aac;
# libmp3lame;
# ac3。
# 当外层参数 Container 为 mp4 或 flv 时,可选值为:
# libfdk_aac:更适合 mp4;
# libmp3lame:更适合 flv。
# 当外层参数 Container 为 hls 时,可选值为:
# libfdk_aac;
# libmp3lame。
# @type Codec: String
# @param Bitrate: 音频流的码率,取值范围:0 和 [26, 256],单位:kbps。
# 当取值为 0,表示音频码率和原始音频保持一致。
# @type Bitrate: Integer
# @param SampleRate: 音频流的采样率,可选值:
# 32000
# 44100
# 48000
# 单位:Hz。
# @type SampleRate: Integer
# @param AudioChannel: 音频通道方式,可选值:
# 1:单通道
# 2:双通道
# 6:立体声
# 当媒体的封装格式是音频格式时(flac,ogg,mp3,m4a)时,声道数不允许设为立体声。
# 默认值:2。
# @type AudioChannel: Integer
attr_accessor :Codec, :Bitrate, :SampleRate, :AudioChannel
def initialize(codec=nil, bitrate=nil, samplerate=nil, audiochannel=nil)
@Codec = codec
@Bitrate = bitrate
@SampleRate = samplerate
@AudioChannel = audiochannel
end
def deserialize(params)
@Codec = params['Codec']
@Bitrate = params['Bitrate']
@SampleRate = params['SampleRate']
@AudioChannel = params['AudioChannel']
end
end
# 音频流配置参数
class AudioTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Codec: 音频流的编码格式。
# 当外层参数 Container 为 mp3 时,可选值为:
# libmp3lame。
# 当外层参数 Container 为 ogg 或 flac 时,可选值为:
# flac。
# 当外层参数 Container 为 m4a 时,可选值为:
# libfdk_aac;
# libmp3lame;
# ac3。
# 当外层参数 Container 为 mp4 或 flv 时,可选值为:
# libfdk_aac:更适合 mp4;
# libmp3lame:更适合 flv;
# mp2。
# 当外层参数 Container 为 hls 时,可选值为:
# libfdk_aac;
# libmp3lame。
# @type Codec: String
# @param Bitrate: 音频流的码率,取值范围:0 和 [26, 256],单位:kbps。 当取值为 0,表示音频码率和原始音频保持一致。
# @type Bitrate: Integer
# @param SampleRate: 音频流的采样率,可选值:
# 32000
# 44100
# 48000
# 单位:Hz。
# @type SampleRate: Integer
# @param AudioChannel: 音频通道方式,可选值:
# 1:单通道
# 2:双通道
# 6:立体声
# 当媒体的封装格式是音频格式时(flac,ogg,mp3,m4a)时,声道数不允许设为立体声。
# @type AudioChannel: Integer
# @param StreamSelects: 指定输出要保留的音频轨道。默认是全部保留源的。
# @type StreamSelects: Array
attr_accessor :Codec, :Bitrate, :SampleRate, :AudioChannel, :StreamSelects
def initialize(codec=nil, bitrate=nil, samplerate=nil, audiochannel=nil, streamselects=nil)
@Codec = codec
@Bitrate = bitrate
@SampleRate = samplerate
@AudioChannel = audiochannel
@StreamSelects = streamselects
end
def deserialize(params)
@Codec = params['Codec']
@Bitrate = params['Bitrate']
@SampleRate = params['SampleRate']
@AudioChannel = params['AudioChannel']
@StreamSelects = params['StreamSelects']
end
end
# AWS S3 文件是上传触发器。
class AwsS3FileUploadTrigger < TencentCloud::Common::AbstractModel
# @param S3Bucket: 绑定的 AWS S3 存储桶。
# @type S3Bucket: String
# @param S3Region: 绑定的桶所在 AWS 区域,目前支持:
# us-east-1
# eu-west-3
# @type S3Region: String
# @param Dir: 绑定的输入路径目录,必须为绝对路径,即以 `/` 开头和结尾。如`/movie/201907/`,不填代表根目录`/`。
# @type Dir: String
# @param Formats: 允许触发的文件格式列表,如 ["mp4", "flv", "mov"]。不填代表所有格式的文件都可以触发工作流。
# @type Formats: Array
# @param S3SecretId: 绑定的 AWS S3 存储桶的秘钥ID。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type S3SecretId: String
# @param S3SecretKey: 绑定的 AWS S3 存储桶的秘钥Key。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type S3SecretKey: String
# @param AwsSQS: 绑定的 AWS S3 存储桶对应的 SQS事件队列。
# 注意:队列和桶需要在同一区域。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AwsSQS: :class:`Tencentcloud::Mps.v20190612.models.AwsSQS`
attr_accessor :S3Bucket, :S3Region, :Dir, :Formats, :S3SecretId, :S3SecretKey, :AwsSQS
def initialize(s3bucket=nil, s3region=nil, dir=nil, formats=nil, s3secretid=nil, s3secretkey=nil, awssqs=nil)
@S3Bucket = s3bucket
@S3Region = s3region
@Dir = dir
@Formats = formats
@S3SecretId = s3secretid
@S3SecretKey = s3secretkey
@AwsSQS = awssqs
end
def deserialize(params)
@S3Bucket = params['S3Bucket']
@S3Region = params['S3Region']
@Dir = params['Dir']
@Formats = params['Formats']
@S3SecretId = params['S3SecretId']
@S3SecretKey = params['S3SecretKey']
unless params['AwsSQS'].nil?
@AwsSQS = AwsSQS.new
@AwsSQS.deserialize(params['AwsSQS'])
end
end
end
# Aws SQS 队列信息
class AwsSQS < TencentCloud::Common::AbstractModel
# @param SQSRegion: SQS 队列区域。
# @type SQSRegion: String
# @param SQSQueueName: SQS 队列名称。
# @type SQSQueueName: String
# @param S3SecretId: 读写SQS的秘钥id。
# @type S3SecretId: String
# @param S3SecretKey: 读写SQS的秘钥key。
# @type S3SecretKey: String
attr_accessor :SQSRegion, :SQSQueueName, :S3SecretId, :S3SecretKey
def initialize(sqsregion=nil, sqsqueuename=nil, s3secretid=nil, s3secretkey=nil)
@SQSRegion = sqsregion
@SQSQueueName = sqsqueuename
@S3SecretId = s3secretid
@S3SecretKey = s3secretkey
end
def deserialize(params)
@SQSRegion = params['SQSRegion']
@SQSQueueName = params['SQSQueueName']
@S3SecretId = params['S3SecretId']
@S3SecretKey = params['S3SecretKey']
end
end
# BatchDeleteStreamLinkFlow请求参数结构体
class BatchDeleteStreamLinkFlowRequest < TencentCloud::Common::AbstractModel
# @param EventId: EventId。
# @type EventId: String
# @param FlowIds: Event关联的流Id数组,如果不传默认删除Event下面的所有媒体传输流。
# @type FlowIds: Array
attr_accessor :EventId, :FlowIds
def initialize(eventid=nil, flowids=nil)
@EventId = eventid
@FlowIds = flowids
end
def deserialize(params)
@EventId = params['EventId']
@FlowIds = params['FlowIds']
end
end
# BatchDeleteStreamLinkFlow返回参数结构体
class BatchDeleteStreamLinkFlowResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# BatchStartStreamLinkFlow请求参数结构体
class BatchStartStreamLinkFlowRequest < TencentCloud::Common::AbstractModel
# @param EventId: EventId。
# @type EventId: String
# @param FlowIds: Event关联的流Id数组,如果不传默认启动Event下面的所有媒体传输流。
# @type FlowIds: Array
attr_accessor :EventId, :FlowIds
def initialize(eventid=nil, flowids=nil)
@EventId = eventid
@FlowIds = flowids
end
def deserialize(params)
@EventId = params['EventId']
@FlowIds = params['FlowIds']
end
end
# BatchStartStreamLinkFlow返回参数结构体
class BatchStartStreamLinkFlowResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# BatchStopStreamLinkFlow请求参数结构体
class BatchStopStreamLinkFlowRequest < TencentCloud::Common::AbstractModel
# @param EventId: EventId。
# @type EventId: String
# @param FlowIds: 流Id,如果不传默认停止Event下所有的媒体传输流。
# @type FlowIds: Array
attr_accessor :EventId, :FlowIds
def initialize(eventid=nil, flowids=nil)
@EventId = eventid
@FlowIds = flowids
end
def deserialize(params)
@EventId = params['EventId']
@FlowIds = params['FlowIds']
end
end
# BatchStopStreamLinkFlow返回参数结构体
class BatchStopStreamLinkFlowResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# 智能分类任务控制参数
class ClassificationConfigureInfo < TencentCloud::Common::AbstractModel
# @param Switch: 智能分类任务开关,可选值:
# ON:开启智能分类任务;
# OFF:关闭智能分类任务。
# @type Switch: String
attr_accessor :Switch
def initialize(switch=nil)
@Switch = switch
end
def deserialize(params)
@Switch = params['Switch']
end
end
# 智能分类任务控制参数
class ClassificationConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 智能分类任务开关,可选值:
# ON:开启智能分类任务;
# OFF:关闭智能分类任务。
# @type Switch: String
attr_accessor :Switch
def initialize(switch=nil)
@Switch = switch
end
def deserialize(params)
@Switch = params['Switch']
end
end
# 色彩增强配置
class ColorEnhanceConfig < TencentCloud::Common::AbstractModel
# @param Switch: 能力配置开关,可选值:
# ON:开启;
# OFF:关闭。
# 默认值:ON。
# @type Switch: String
# @param Type: 类型,可选值:
# weak
# normal
# strong
# 默认值:weak。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Type: String
attr_accessor :Switch, :Type
def initialize(switch=nil, type=nil)
@Switch = switch
@Type = type
end
def deserialize(params)
@Switch = params['Switch']
@Type = params['Type']
end
end
# 内容审核模板详情
class ContentReviewTemplateItem < TencentCloud::Common::AbstractModel
# @param Definition: 内容审核模板唯一标识。
# @type Definition: Integer
# @param Name: 内容审核模板名称,长度限制:64 个字符。
# @type Name: String
# @param Comment: 内容审核模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param PornConfigure: 鉴黄控制参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PornConfigure: :class:`Tencentcloud::Mps.v20190612.models.PornConfigureInfo`
# @param TerrorismConfigure: 涉敏控制参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TerrorismConfigure: :class:`Tencentcloud::Mps.v20190612.models.TerrorismConfigureInfo`
# @param PoliticalConfigure: 涉敏控制参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PoliticalConfigure: :class:`Tencentcloud::Mps.v20190612.models.PoliticalConfigureInfo`
# @param ProhibitedConfigure: 违禁控制参数。违禁内容包括:
# 谩骂;
# 涉毒违法。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ProhibitedConfigure: :class:`Tencentcloud::Mps.v20190612.models.ProhibitedConfigureInfo`
# @param UserDefineConfigure: 用户自定义内容审核控制参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type UserDefineConfigure: :class:`Tencentcloud::Mps.v20190612.models.UserDefineConfigureInfo`
# @param CreateTime: 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type UpdateTime: String
# @param Type: 模板类型,取值范围:
# * Preset:系统预置模板;
# * Custom:用户自定义模板。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Type: String
attr_accessor :Definition, :Name, :Comment, :PornConfigure, :TerrorismConfigure, :PoliticalConfigure, :ProhibitedConfigure, :UserDefineConfigure, :CreateTime, :UpdateTime, :Type
def initialize(definition=nil, name=nil, comment=nil, pornconfigure=nil, terrorismconfigure=nil, politicalconfigure=nil, prohibitedconfigure=nil, userdefineconfigure=nil, createtime=nil, updatetime=nil, type=nil)
@Definition = definition
@Name = name
@Comment = comment
@PornConfigure = pornconfigure
@TerrorismConfigure = terrorismconfigure
@PoliticalConfigure = politicalconfigure
@ProhibitedConfigure = prohibitedconfigure
@UserDefineConfigure = userdefineconfigure
@CreateTime = createtime
@UpdateTime = updatetime
@Type = type
end
def deserialize(params)
@Definition = params['Definition']
@Name = params['Name']
@Comment = params['Comment']
unless params['PornConfigure'].nil?
@PornConfigure = PornConfigureInfo.new
@PornConfigure.deserialize(params['PornConfigure'])
end
unless params['TerrorismConfigure'].nil?
@TerrorismConfigure = TerrorismConfigureInfo.new
@TerrorismConfigure.deserialize(params['TerrorismConfigure'])
end
unless params['PoliticalConfigure'].nil?
@PoliticalConfigure = PoliticalConfigureInfo.new
@PoliticalConfigure.deserialize(params['PoliticalConfigure'])
end
unless params['ProhibitedConfigure'].nil?
@ProhibitedConfigure = ProhibitedConfigureInfo.new
@ProhibitedConfigure.deserialize(params['ProhibitedConfigure'])
end
unless params['UserDefineConfigure'].nil?
@UserDefineConfigure = UserDefineConfigureInfo.new
@UserDefineConfigure.deserialize(params['UserDefineConfigure'])
end
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
@Type = params['Type']
end
end
# 绑定到 COS 的输入规则。
class CosFileUploadTrigger < TencentCloud::Common::AbstractModel
# @param Bucket: 工作流绑定的 COS Bucket 名,如 TopRankVideo-125xxx88。
# @type Bucket: String
# @param Region: 工作流绑定的 COS Bucket 所属园区,如 ap-chongiqng。
# @type Region: String
# @param Dir: 工作流绑定的输入路径目录,必须为绝对路径,即以 `/` 开头和结尾。如`/movie/201907/`,不填代表根目录`/`。
# @type Dir: String
# @param Formats: 工作流允许触发的文件格式列表,如 ["mp4", "flv", "mov"]。不填代表所有格式的文件都可以触发工作流。
# @type Formats: Array
attr_accessor :Bucket, :Region, :Dir, :Formats
def initialize(bucket=nil, region=nil, dir=nil, formats=nil)
@Bucket = bucket
@Region = region
@Dir = dir
@Formats = formats
end
def deserialize(params)
@Bucket = params['Bucket']
@Region = params['Region']
@Dir = params['Dir']
@Formats = params['Formats']
end
end
# 媒体处理 COS 对象信息。
class CosInputInfo < TencentCloud::Common::AbstractModel
# @param Bucket: 媒体处理对象文件所在的 COS Bucket 名,如 TopRankVideo-125xxx88。
# @type Bucket: String
# @param Region: 媒体处理对象文件所在的 COS Bucket 所属园区,如 ap-chongqing。
# @type Region: String
# @param Object: 媒体处理对象文件的输入路径,如`/movie/201907/WildAnimal.mov`。
# @type Object: String
attr_accessor :Bucket, :Region, :Object
def initialize(bucket=nil, region=nil, object=nil)
@Bucket = bucket
@Region = region
@Object = object
end
def deserialize(params)
@Bucket = params['Bucket']
@Region = params['Region']
@Object = params['Object']
end
end
# 媒体处理 COS 输出对象信息。
class CosOutputStorage < TencentCloud::Common::AbstractModel
# @param Bucket: 媒体处理生成的文件输出的目标 Bucket 名,如 TopRankVideo-125xxx88。如果不填,表示继承上层。
# @type Bucket: String
# @param Region: 媒体处理生成的文件输出的目标 Bucket 的园区,如 ap-chongqing。如果不填,表示继承上层。
# @type Region: String
attr_accessor :Bucket, :Region
def initialize(bucket=nil, region=nil)
@Bucket = bucket
@Region = region
end
def deserialize(params)
@Bucket = params['Bucket']
@Region = params['Region']
end
end
# 智能封面任务控制参数
class CoverConfigureInfo < TencentCloud::Common::AbstractModel
# @param Switch: 智能封面任务开关,可选值:
# ON:开启智能封面任务;
# OFF:关闭智能封面任务。
# @type Switch: String
attr_accessor :Switch
def initialize(switch=nil)
@Switch = switch
end
def deserialize(params)
@Switch = params['Switch']
end
end
# 智能封面任务控制参数
class CoverConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 智能封面任务开关,可选值:
# ON:开启智能封面任务;
# OFF:关闭智能封面任务。
# @type Switch: String
attr_accessor :Switch
def initialize(switch=nil)
@Switch = switch
end
def deserialize(params)
@Switch = params['Switch']
end
end
# CreateAIAnalysisTemplate请求参数结构体
class CreateAIAnalysisTemplateRequest < TencentCloud::Common::AbstractModel
# @param Name: 视频内容分析模板名称,长度限制:64 个字符。
# @type Name: String
# @param Comment: 视频内容分析模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param ClassificationConfigure: 智能分类任务控制参数。
# @type ClassificationConfigure: :class:`Tencentcloud::Mps.v20190612.models.ClassificationConfigureInfo`
# @param TagConfigure: 智能标签任务控制参数。
# @type TagConfigure: :class:`Tencentcloud::Mps.v20190612.models.TagConfigureInfo`
# @param CoverConfigure: 智能封面任务控制参数。
# @type CoverConfigure: :class:`Tencentcloud::Mps.v20190612.models.CoverConfigureInfo`
# @param FrameTagConfigure: 智能按帧标签任务控制参数。
# @type FrameTagConfigure: :class:`Tencentcloud::Mps.v20190612.models.FrameTagConfigureInfo`
attr_accessor :Name, :Comment, :ClassificationConfigure, :TagConfigure, :CoverConfigure, :FrameTagConfigure
def initialize(name=nil, comment=nil, classificationconfigure=nil, tagconfigure=nil, coverconfigure=nil, frametagconfigure=nil)
@Name = name
@Comment = comment
@ClassificationConfigure = classificationconfigure
@TagConfigure = tagconfigure
@CoverConfigure = coverconfigure
@FrameTagConfigure = frametagconfigure
end
def deserialize(params)
@Name = params['Name']
@Comment = params['Comment']
unless params['ClassificationConfigure'].nil?
@ClassificationConfigure = ClassificationConfigureInfo.new
@ClassificationConfigure.deserialize(params['ClassificationConfigure'])
end
unless params['TagConfigure'].nil?
@TagConfigure = TagConfigureInfo.new
@TagConfigure.deserialize(params['TagConfigure'])
end
unless params['CoverConfigure'].nil?
@CoverConfigure = CoverConfigureInfo.new
@CoverConfigure.deserialize(params['CoverConfigure'])
end
unless params['FrameTagConfigure'].nil?
@FrameTagConfigure = FrameTagConfigureInfo.new
@FrameTagConfigure.deserialize(params['FrameTagConfigure'])
end
end
end
# CreateAIAnalysisTemplate返回参数结构体
class CreateAIAnalysisTemplateResponse < TencentCloud::Common::AbstractModel
# @param Definition: 视频内容分析模板唯一标识。
# @type Definition: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Definition, :RequestId
def initialize(definition=nil, requestid=nil)
@Definition = definition
@RequestId = requestid
end
def deserialize(params)
@Definition = params['Definition']
@RequestId = params['RequestId']
end
end
# CreateAIRecognitionTemplate请求参数结构体
class CreateAIRecognitionTemplateRequest < TencentCloud::Common::AbstractModel
# @param Name: 视频内容识别模板名称,长度限制:64 个字符。
# @type Name: String
# @param Comment: 视频内容识别模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param FaceConfigure: 人脸识别控制参数。
# @type FaceConfigure: :class:`Tencentcloud::Mps.v20190612.models.FaceConfigureInfo`
# @param OcrFullTextConfigure: 文本全文识别控制参数。
# @type OcrFullTextConfigure: :class:`Tencentcloud::Mps.v20190612.models.OcrFullTextConfigureInfo`
# @param OcrWordsConfigure: 文本关键词识别控制参数。
# @type OcrWordsConfigure: :class:`Tencentcloud::Mps.v20190612.models.OcrWordsConfigureInfo`
# @param AsrFullTextConfigure: 语音全文识别控制参数。
# @type AsrFullTextConfigure: :class:`Tencentcloud::Mps.v20190612.models.AsrFullTextConfigureInfo`
# @param AsrWordsConfigure: 语音关键词识别控制参数。
# @type AsrWordsConfigure: :class:`Tencentcloud::Mps.v20190612.models.AsrWordsConfigureInfo`
# @param TranslateConfigure: 语音翻译控制参数。
# @type TranslateConfigure: :class:`Tencentcloud::Mps.v20190612.models.TranslateConfigureInfo`
attr_accessor :Name, :Comment, :FaceConfigure, :OcrFullTextConfigure, :OcrWordsConfigure, :AsrFullTextConfigure, :AsrWordsConfigure, :TranslateConfigure
def initialize(name=nil, comment=nil, faceconfigure=nil, ocrfulltextconfigure=nil, ocrwordsconfigure=nil, asrfulltextconfigure=nil, asrwordsconfigure=nil, translateconfigure=nil)
@Name = name
@Comment = comment
@FaceConfigure = faceconfigure
@OcrFullTextConfigure = ocrfulltextconfigure
@OcrWordsConfigure = ocrwordsconfigure
@AsrFullTextConfigure = asrfulltextconfigure
@AsrWordsConfigure = asrwordsconfigure
@TranslateConfigure = translateconfigure
end
def deserialize(params)
@Name = params['Name']
@Comment = params['Comment']
unless params['FaceConfigure'].nil?
@FaceConfigure = FaceConfigureInfo.new
@FaceConfigure.deserialize(params['FaceConfigure'])
end
unless params['OcrFullTextConfigure'].nil?
@OcrFullTextConfigure = OcrFullTextConfigureInfo.new
@OcrFullTextConfigure.deserialize(params['OcrFullTextConfigure'])
end
unless params['OcrWordsConfigure'].nil?
@OcrWordsConfigure = OcrWordsConfigureInfo.new
@OcrWordsConfigure.deserialize(params['OcrWordsConfigure'])
end
unless params['AsrFullTextConfigure'].nil?
@AsrFullTextConfigure = AsrFullTextConfigureInfo.new
@AsrFullTextConfigure.deserialize(params['AsrFullTextConfigure'])
end
unless params['AsrWordsConfigure'].nil?
@AsrWordsConfigure = AsrWordsConfigureInfo.new
@AsrWordsConfigure.deserialize(params['AsrWordsConfigure'])
end
unless params['TranslateConfigure'].nil?
@TranslateConfigure = TranslateConfigureInfo.new
@TranslateConfigure.deserialize(params['TranslateConfigure'])
end
end
end
# CreateAIRecognitionTemplate返回参数结构体
class CreateAIRecognitionTemplateResponse < TencentCloud::Common::AbstractModel
# @param Definition: 视频内容识别模板唯一标识。
# @type Definition: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Definition, :RequestId
def initialize(definition=nil, requestid=nil)
@Definition = definition
@RequestId = requestid
end
def deserialize(params)
@Definition = params['Definition']
@RequestId = params['RequestId']
end
end
# CreateAdaptiveDynamicStreamingTemplate请求参数结构体
class CreateAdaptiveDynamicStreamingTemplateRequest < TencentCloud::Common::AbstractModel
# @param Format: 自适应转码格式,取值范围:
# HLS,
# MPEG-DASH。
# @type Format: String
# @param StreamInfos: 转自适应码流输出子流参数信息,最多输出10路子流。
# 注意:各个子流的帧率必须保持一致;如果不一致,采用第一个子流的帧率作为输出帧率。
# @type StreamInfos: Array
# @param Name: 模板名称,长度限制:64 个字符。
# @type Name: String
# @param DisableHigherVideoBitrate: 是否禁止视频低码率转高码率,取值范围:
# 0:否,
# 1:是。
# 默认为否。
# @type DisableHigherVideoBitrate: Integer
# @param DisableHigherVideoResolution: 是否禁止视频分辨率转高分辨率,取值范围:
# 0:否,
# 1:是。
# 默认为否。
# @type DisableHigherVideoResolution: Integer
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
attr_accessor :Format, :StreamInfos, :Name, :DisableHigherVideoBitrate, :DisableHigherVideoResolution, :Comment
def initialize(format=nil, streaminfos=nil, name=nil, disablehighervideobitrate=nil, disablehighervideoresolution=nil, comment=nil)
@Format = format
@StreamInfos = streaminfos
@Name = name
@DisableHigherVideoBitrate = disablehighervideobitrate
@DisableHigherVideoResolution = disablehighervideoresolution
@Comment = comment
end
def deserialize(params)
@Format = params['Format']
unless params['StreamInfos'].nil?
@StreamInfos = []
params['StreamInfos'].each do |i|
adaptivestreamtemplate_tmp = AdaptiveStreamTemplate.new
adaptivestreamtemplate_tmp.deserialize(i)
@StreamInfos << adaptivestreamtemplate_tmp
end
end
@Name = params['Name']
@DisableHigherVideoBitrate = params['DisableHigherVideoBitrate']
@DisableHigherVideoResolution = params['DisableHigherVideoResolution']
@Comment = params['Comment']
end
end
# CreateAdaptiveDynamicStreamingTemplate返回参数结构体
class CreateAdaptiveDynamicStreamingTemplateResponse < TencentCloud::Common::AbstractModel
# @param Definition: 自适应转码模板唯一标识。
# @type Definition: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Definition, :RequestId
def initialize(definition=nil, requestid=nil)
@Definition = definition
@RequestId = requestid
end
def deserialize(params)
@Definition = params['Definition']
@RequestId = params['RequestId']
end
end
# CreateAnimatedGraphicsTemplate请求参数结构体
class CreateAnimatedGraphicsTemplateRequest < TencentCloud::Common::AbstractModel
# @param Fps: 帧率,取值范围:[1, 30],单位:Hz。
# @type Fps: Integer
# @param Width: 动图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 动图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# @type ResolutionAdaptive: String
# @param Format: 动图格式,取值为 gif 和 webp。默认为 gif。
# @type Format: String
# @param Quality: 图片质量,取值范围:[1, 100],默认值为 75。
# @type Quality: Float
# @param Name: 转动图模板名称,长度限制:64 个字符。
# @type Name: String
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
attr_accessor :Fps, :Width, :Height, :ResolutionAdaptive, :Format, :Quality, :Name, :Comment
def initialize(fps=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil, quality=nil, name=nil, comment=nil)
@Fps = fps
@Width = width
@Height = height
@ResolutionAdaptive = resolutionadaptive
@Format = format
@Quality = quality
@Name = name
@Comment = comment
end
def deserialize(params)
@Fps = params['Fps']
@Width = params['Width']
@Height = params['Height']
@ResolutionAdaptive = params['ResolutionAdaptive']
@Format = params['Format']
@Quality = params['Quality']
@Name = params['Name']
@Comment = params['Comment']
end
end
# CreateAnimatedGraphicsTemplate返回参数结构体
class CreateAnimatedGraphicsTemplateResponse < TencentCloud::Common::AbstractModel
# @param Definition: 转动图模板唯一标识。
# @type Definition: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Definition, :RequestId
def initialize(definition=nil, requestid=nil)
@Definition = definition
@RequestId = requestid
end
def deserialize(params)
@Definition = params['Definition']
@RequestId = params['RequestId']
end
end
# CreateContentReviewTemplate请求参数结构体
class CreateContentReviewTemplateRequest < TencentCloud::Common::AbstractModel
# @param Name: 内容审核模板名称,长度限制:64 个字符。
# @type Name: String
# @param Comment: 内容审核模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param PornConfigure: 令人反感的信息的控制参数。
# @type PornConfigure: :class:`Tencentcloud::Mps.v20190612.models.PornConfigureInfo`
# @param TerrorismConfigure: 令人不安全的信息的控制参数。
# @type TerrorismConfigure: :class:`Tencentcloud::Mps.v20190612.models.TerrorismConfigureInfo`
# @param PoliticalConfigure: 令人不适宜的信息的控制参数。
# @type PoliticalConfigure: :class:`Tencentcloud::Mps.v20190612.models.PoliticalConfigureInfo`
# @param ProhibitedConfigure: 违禁控制参数。违禁内容包括:
# 谩骂;
# 涉毒违法。
# 注意:此参数尚未支持。
# @type ProhibitedConfigure: :class:`Tencentcloud::Mps.v20190612.models.ProhibitedConfigureInfo`
# @param UserDefineConfigure: 用户自定义内容审核控制参数。
# @type UserDefineConfigure: :class:`Tencentcloud::Mps.v20190612.models.UserDefineConfigureInfo`
attr_accessor :Name, :Comment, :PornConfigure, :TerrorismConfigure, :PoliticalConfigure, :ProhibitedConfigure, :UserDefineConfigure
def initialize(name=nil, comment=nil, pornconfigure=nil, terrorismconfigure=nil, politicalconfigure=nil, prohibitedconfigure=nil, userdefineconfigure=nil)
@Name = name
@Comment = comment
@PornConfigure = pornconfigure
@TerrorismConfigure = terrorismconfigure
@PoliticalConfigure = politicalconfigure
@ProhibitedConfigure = prohibitedconfigure
@UserDefineConfigure = userdefineconfigure
end
def deserialize(params)
@Name = params['Name']
@Comment = params['Comment']
unless params['PornConfigure'].nil?
@PornConfigure = PornConfigureInfo.new
@PornConfigure.deserialize(params['PornConfigure'])
end
unless params['TerrorismConfigure'].nil?
@TerrorismConfigure = TerrorismConfigureInfo.new
@TerrorismConfigure.deserialize(params['TerrorismConfigure'])
end
unless params['PoliticalConfigure'].nil?
@PoliticalConfigure = PoliticalConfigureInfo.new
@PoliticalConfigure.deserialize(params['PoliticalConfigure'])
end
unless params['ProhibitedConfigure'].nil?
@ProhibitedConfigure = ProhibitedConfigureInfo.new
@ProhibitedConfigure.deserialize(params['ProhibitedConfigure'])
end
unless params['UserDefineConfigure'].nil?
@UserDefineConfigure = UserDefineConfigureInfo.new
@UserDefineConfigure.deserialize(params['UserDefineConfigure'])
end
end
end
# CreateContentReviewTemplate返回参数结构体
class CreateContentReviewTemplateResponse < TencentCloud::Common::AbstractModel
# @param Definition: 内容审核模板唯一标识。
# @type Definition: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Definition, :RequestId
def initialize(definition=nil, requestid=nil)
@Definition = definition
@RequestId = requestid
end
def deserialize(params)
@Definition = params['Definition']
@RequestId = params['RequestId']
end
end
# CreateImageSpriteTemplate请求参数结构体
class CreateImageSpriteTemplateRequest < TencentCloud::Common::AbstractModel
# @param SampleType: 采样类型,取值:
# Percent:按百分比。
# Time:按时间间隔。
# @type SampleType: String
# @param SampleInterval: 采样间隔。
# 当 SampleType 为 Percent 时,指定采样间隔的百分比。
# 当 SampleType 为 Time 时,指定采样间隔的时间,单位为秒。
# @type SampleInterval: Integer
# @param RowCount: 雪碧图中小图的行数。
# @type RowCount: Integer
# @param ColumnCount: 雪碧图中小图的列数。
# @type ColumnCount: Integer
# @param Name: 雪碧图模板名称,长度限制:64 个字符。
# @type Name: String
# @param Width: 雪碧图中小图的宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 雪碧图中小图的高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# @type ResolutionAdaptive: String
# @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
# stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;
# black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。
# 默认值:black 。
# @type FillType: String
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param Format: 图片格式,取值为 jpg、png、webp。默认为 jpg。
# @type Format: String
attr_accessor :SampleType, :SampleInterval, :RowCount, :ColumnCount, :Name, :Width, :Height, :ResolutionAdaptive, :FillType, :Comment, :Format
def initialize(sampletype=nil, sampleinterval=nil, rowcount=nil, columncount=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, filltype=nil, comment=nil, format=nil)
@SampleType = sampletype
@SampleInterval = sampleinterval
@RowCount = rowcount
@ColumnCount = columncount
@Name = name
@Width = width
@Height = height
@ResolutionAdaptive = resolutionadaptive
@FillType = filltype
@Comment = comment
@Format = format
end
def deserialize(params)
@SampleType = params['SampleType']
@SampleInterval = params['SampleInterval']
@RowCount = params['RowCount']
@ColumnCount = params['ColumnCount']
@Name = params['Name']
@Width = params['Width']
@Height = params['Height']
@ResolutionAdaptive = params['ResolutionAdaptive']
@FillType = params['FillType']
@Comment = params['Comment']
@Format = params['Format']
end
end
# CreateImageSpriteTemplate返回参数结构体
class CreateImageSpriteTemplateResponse < TencentCloud::Common::AbstractModel
# @param Definition: 雪碧图模板唯一标识。
# @type Definition: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Definition, :RequestId
def initialize(definition=nil, requestid=nil)
@Definition = definition
@RequestId = requestid
end
def deserialize(params)
@Definition = params['Definition']
@RequestId = params['RequestId']
end
end
# 创建输入的配置信息。
class CreateInput < TencentCloud::Common::AbstractModel
# @param InputName: 输入名称,可填大小写、数字和下划线,长度为[1, 32]。
# @type InputName: String
# @param Protocol: 输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL]。
# @type Protocol: String
# @param Description: 输入描述,长度为[0, 255]。
# @type Description: String
# @param AllowIpList: 输入的IP白名单,格式为CIDR。
# @type AllowIpList: Array
# @param SRTSettings: 输入的SRT配置信息。
# @type SRTSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputSRTSettings`
# @param RTPSettings: 输入的RTP配置信息。
# @type RTPSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRTPSettings`
# @param FailOver: 输入的主备开关,可选[OPEN|CLOSE],默认为CLOSE。
# @type FailOver: String
# @param RTMPPullSettings: 输入的RTMP_PULL配置信息。
# @type RTMPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRTMPPullSettings`
# @param RTSPPullSettings: 输入的RTSP_PULL配置信息。
# @type RTSPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRTSPPullSettings`
# @param HLSPullSettings: 输入的HLS_PULL配置信息。
# @type HLSPullSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputHLSPullSettings`
# @param ResilientStream: 延播平滑吐流配置信息。
# @type ResilientStream: :class:`Tencentcloud::Mps.v20190612.models.ResilientStreamConf`
attr_accessor :InputName, :Protocol, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream
def initialize(inputname=nil, protocol=nil, description=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil, hlspullsettings=nil, resilientstream=nil)
@InputName = inputname
@Protocol = protocol
@Description = description
@AllowIpList = allowiplist
@SRTSettings = srtsettings
@RTPSettings = rtpsettings
@FailOver = failover
@RTMPPullSettings = rtmppullsettings
@RTSPPullSettings = rtsppullsettings
@HLSPullSettings = hlspullsettings
@ResilientStream = resilientstream
end
def deserialize(params)
@InputName = params['InputName']
@Protocol = params['Protocol']
@Description = params['Description']
@AllowIpList = params['AllowIpList']
unless params['SRTSettings'].nil?
@SRTSettings = CreateInputSRTSettings.new
@SRTSettings.deserialize(params['SRTSettings'])
end
unless params['RTPSettings'].nil?
@RTPSettings = CreateInputRTPSettings.new
@RTPSettings.deserialize(params['RTPSettings'])
end
@FailOver = params['FailOver']
unless params['RTMPPullSettings'].nil?
@RTMPPullSettings = CreateInputRTMPPullSettings.new
@RTMPPullSettings.deserialize(params['RTMPPullSettings'])
end
unless params['RTSPPullSettings'].nil?
@RTSPPullSettings = CreateInputRTSPPullSettings.new
@RTSPPullSettings.deserialize(params['RTSPPullSettings'])
end
unless params['HLSPullSettings'].nil?
@HLSPullSettings = CreateInputHLSPullSettings.new
@HLSPullSettings.deserialize(params['HLSPullSettings'])
end
unless params['ResilientStream'].nil?
@ResilientStream = ResilientStreamConf.new
@ResilientStream.deserialize(params['ResilientStream'])
end
end
end
# 创建的输入HLS拉流的配置信息。
class CreateInputHLSPullSettings < TencentCloud::Common::AbstractModel
# @param SourceAddresses: HLS源站的源站地址,有且只能有一个。
# @type SourceAddresses: Array
attr_accessor :SourceAddresses
def initialize(sourceaddresses=nil)
@SourceAddresses = sourceaddresses
end
def deserialize(params)
unless params['SourceAddresses'].nil?
@SourceAddresses = []
params['SourceAddresses'].each do |i|
hlspullsourceaddress_tmp = HLSPullSourceAddress.new
hlspullsourceaddress_tmp.deserialize(i)
@SourceAddresses << hlspullsourceaddress_tmp
end
end
end
end
# 创建的输入RTMP拉流的配置信息。
class CreateInputRTMPPullSettings < TencentCloud::Common::AbstractModel
# @param SourceAddresses: RTMP源站的源站地址,有且只能有一个。
# @type SourceAddresses: Array
attr_accessor :SourceAddresses
def initialize(sourceaddresses=nil)
@SourceAddresses = sourceaddresses
end
def deserialize(params)
unless params['SourceAddresses'].nil?
@SourceAddresses = []
params['SourceAddresses'].each do |i|
rtmppullsourceaddress_tmp = RTMPPullSourceAddress.new
rtmppullsourceaddress_tmp.deserialize(i)
@SourceAddresses << rtmppullsourceaddress_tmp
end
end
end
end
# 创建输入的RTP配置信息。
class CreateInputRTPSettings < TencentCloud::Common::AbstractModel
# @param FEC: 默认为“none”,可选值['none']。
# @type FEC: String
# @param IdleTimeout: 空闲超时时间,默认5000,单位ms,范围为[1000, 10000]。
# @type IdleTimeout: Integer
attr_accessor :FEC, :IdleTimeout
def initialize(fec=nil, idletimeout=nil)
@FEC = fec
@IdleTimeout = idletimeout
end
def deserialize(params)
@FEC = params['FEC']
@IdleTimeout = params['IdleTimeout']
end
end
# 创建的输入RTSP拉流的配置信息。
class CreateInputRTSPPullSettings < TencentCloud::Common::AbstractModel
# @param SourceAddresses: RTSP源站的源站地址,有且只能有一个。
# @type SourceAddresses: Array
attr_accessor :SourceAddresses
def initialize(sourceaddresses=nil)
@SourceAddresses = sourceaddresses
end
def deserialize(params)
unless params['SourceAddresses'].nil?
@SourceAddresses = []
params['SourceAddresses'].each do |i|
rtsppullsourceaddress_tmp = RTSPPullSourceAddress.new
rtsppullsourceaddress_tmp.deserialize(i)
@SourceAddresses << rtsppullsourceaddress_tmp
end
end
end
end
# 创建的输入SRT的配置信息。
class CreateInputSRTSettings < TencentCloud::Common::AbstractModel
# @param Mode: SRT模式,可选[LISTENER|CALLER],默认为LISTENER。
# @type Mode: String
# @param StreamId: 流Id,可选大小写字母、数字和特殊字符(.#!:&,=_-),长度为0~512。具体格式可以参考:https://github.com/Haivision/srt/blob/master/docs/features/access-control.md#standard-keys。
# @type StreamId: String
# @param Latency: 延迟,默认0,单位ms,范围为[0, 3000]。
# @type Latency: Integer
# @param RecvLatency: 接收延迟,默认120,单位ms,范围为[0, 3000]。
# @type RecvLatency: Integer
# @param PeerLatency: 对端延迟,默认0,单位ms,范围为[0, 3000]。
# @type PeerLatency: Integer
# @param PeerIdleTimeout: 对端超时时间,默认5000,单位ms,范围为[1000, 10000]。
# @type PeerIdleTimeout: Integer
# @param Passphrase: 解密密钥,默认为空,表示不加密。只可填ascii码值,长度为[10, 79]。
# @type Passphrase: String
# @param PbKeyLen: 密钥长度,默认为0,可选[0|16|24|32]。
# @type PbKeyLen: Integer
# @param SourceAddresses: SRT对端地址,当Mode为CALLER时必填,且只能填1组。
# @type SourceAddresses: Array
attr_accessor :Mode, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :SourceAddresses
def initialize(mode=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, sourceaddresses=nil)
@Mode = mode
@StreamId = streamid
@Latency = latency
@RecvLatency = recvlatency
@PeerLatency = peerlatency
@PeerIdleTimeout = peeridletimeout
@Passphrase = passphrase
@PbKeyLen = pbkeylen
@SourceAddresses = sourceaddresses
end
def deserialize(params)
@Mode = params['Mode']
@StreamId = params['StreamId']
@Latency = params['Latency']
@RecvLatency = params['RecvLatency']
@PeerLatency = params['PeerLatency']
@PeerIdleTimeout = params['PeerIdleTimeout']
@Passphrase = params['Passphrase']
@PbKeyLen = params['PbKeyLen']
unless params['SourceAddresses'].nil?
@SourceAddresses = []
params['SourceAddresses'].each do |i|
srtsourceaddressreq_tmp = SRTSourceAddressReq.new
srtsourceaddressreq_tmp.deserialize(i)
@SourceAddresses << srtsourceaddressreq_tmp
end
end
end
end
# 创建输出的配置信息。
class CreateOutputInfo < TencentCloud::Common::AbstractModel
# @param OutputName: 输出的名称。
# @type OutputName: String
# @param Description: 输出描述。
# @type Description: String
# @param Protocol: 输出协议,可选[SRT|RTP|RTMP|RTMP_PULL]。
# @type Protocol: String
# @param OutputRegion: 输出地区。
# @type OutputRegion: String
# @param SRTSettings: 输出的SRT的配置。
# @type SRTSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateOutputSRTSettings`
# @param RTMPSettings: 输出的RTMP的配置。
# @type RTMPSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateOutputRTMPSettings`
# @param RTPSettings: 输出的RTP的配置。
# @type RTPSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateOutputInfoRTPSettings`
# @param AllowIpList: IP白名单列表,格式为CIDR,如0.0.0.0/0。
# 当Protocol为RTMP_PULL有效,为空代表不限制客户端IP。
# @type AllowIpList: Array
# @param MaxConcurrent: 最大拉流并发数,最大4,默认4。
# @type MaxConcurrent: Integer
attr_accessor :OutputName, :Description, :Protocol, :OutputRegion, :SRTSettings, :RTMPSettings, :RTPSettings, :AllowIpList, :MaxConcurrent
def initialize(outputname=nil, description=nil, protocol=nil, outputregion=nil, srtsettings=nil, rtmpsettings=nil, rtpsettings=nil, allowiplist=nil, maxconcurrent=nil)
@OutputName = outputname
@Description = description
@Protocol = protocol
@OutputRegion = outputregion
@SRTSettings = srtsettings
@RTMPSettings = rtmpsettings
@RTPSettings = rtpsettings
@AllowIpList = allowiplist
@MaxConcurrent = maxconcurrent
end
def deserialize(params)
@OutputName = params['OutputName']
@Description = params['Description']
@Protocol = params['Protocol']
@OutputRegion = params['OutputRegion']
unless params['SRTSettings'].nil?
@SRTSettings = CreateOutputSRTSettings.new
@SRTSettings.deserialize(params['SRTSettings'])
end
unless params['RTMPSettings'].nil?
@RTMPSettings = CreateOutputRTMPSettings.new
@RTMPSettings.deserialize(params['RTMPSettings'])
end
unless params['RTPSettings'].nil?
@RTPSettings = CreateOutputInfoRTPSettings.new
@RTPSettings.deserialize(params['RTPSettings'])
end
@AllowIpList = params['AllowIpList']
@MaxConcurrent = params['MaxConcurrent']
end
end
# 创建媒体传输流的输出的RTP配置。
class CreateOutputInfoRTPSettings < TencentCloud::Common::AbstractModel
# @param Destinations: 转推的目标地址,可填1~2个。
# @type Destinations: Array
# @param FEC: 只能填none。
# @type FEC: String
# @param IdleTimeout: 空闲超时时间,单位ms。
# @type IdleTimeout: Integer
attr_accessor :Destinations, :FEC, :IdleTimeout
def initialize(destinations=nil, fec=nil, idletimeout=nil)
@Destinations = destinations
@FEC = fec
@IdleTimeout = idletimeout
end
def deserialize(params)
unless params['Destinations'].nil?
@Destinations = []
params['Destinations'].each do |i|
createoutputrtpsettingsdestinations_tmp = CreateOutputRTPSettingsDestinations.new
createoutputrtpsettingsdestinations_tmp.deserialize(i)
@Destinations << createoutputrtpsettingsdestinations_tmp
end
end
@FEC = params['FEC']
@IdleTimeout = params['IdleTimeout']
end
end
# 创建媒体传输流的输出的RTMP配置。
class CreateOutputRTMPSettings < TencentCloud::Common::AbstractModel
# @param Destinations: 转推的目标地址,可填1~2个。
# @type Destinations: Array
# @param ChunkSize: RTMP的Chunk大小,范围为[4096, 40960]。
# @type ChunkSize: Integer
attr_accessor :Destinations, :ChunkSize
def initialize(destinations=nil, chunksize=nil)
@Destinations = destinations
@ChunkSize = chunksize
end
def deserialize(params)
unless params['Destinations'].nil?
@Destinations = []
params['Destinations'].each do |i|
createoutputrtmpsettingsdestinations_tmp = CreateOutputRtmpSettingsDestinations.new
createoutputrtmpsettingsdestinations_tmp.deserialize(i)
@Destinations << createoutputrtmpsettingsdestinations_tmp
end
end
@ChunkSize = params['ChunkSize']
end
end
# 创建媒体传输流的输出的RTP的目标地址。
class CreateOutputRTPSettingsDestinations < TencentCloud::Common::AbstractModel
# @param Ip: 转推的目标IP。
# @type Ip: String
# @param Port: 转推的目标端口。
# @type Port: Integer
attr_accessor :Ip, :Port
def initialize(ip=nil, port=nil)
@Ip = ip
@Port = port
end
def deserialize(params)
@Ip = params['Ip']
@Port = params['Port']
end
end
# 创建媒体传输流的输出的RTMP的目标地址。
class CreateOutputRtmpSettingsDestinations < TencentCloud::Common::AbstractModel
# @param Url: 转推的URL,格式如:rtmp://domain/live。
# @type Url: String
# @param StreamKey: 转推的StreamKey,格式如:stream?key=value。
# @type StreamKey: String
attr_accessor :Url, :StreamKey
def initialize(url=nil, streamkey=nil)
@Url = url
@StreamKey = streamkey
end
def deserialize(params)
@Url = params['Url']
@StreamKey = params['StreamKey']
end
end
# 创建媒体传输流的输出的SRT配置。
class CreateOutputSRTSettings < TencentCloud::Common::AbstractModel
# @param Destinations: 转推的目标地址,当Mode为CALLER时必填,且只能填1组。
# @type Destinations: Array
# @param StreamId: 转推SRT的流Id,可选大小写字母、数字和特殊字符(.#!:&,=_-),长度为0~512。
# @type StreamId: String
# @param Latency: 转推SRT的总延迟,默认0,单位ms,范围为[0, 3000]。
# @type Latency: Integer
# @param RecvLatency: 转推SRT的接收延迟,默认120,单位ms,范围为[0, 3000]。
# @type RecvLatency: Integer
# @param PeerLatency: 转推SRT的对端延迟,默认0,单位ms,范围为[0, 3000]。
# @type PeerLatency: Integer
# @param PeerIdleTimeout: 转推SRT的对端空闲超时时间,默认5000,单位ms,范围为[1000, 10000]。
# @type PeerIdleTimeout: Integer
# @param Passphrase: 转推SRT的加密密钥,默认为空,表示不加密。只可填ascii码值,长度为[10, 79]。
# @type Passphrase: String
# @param PbKeyLen: 转推SRT的密钥长度,默认为0,可选[0|16|24|32]。
# @type PbKeyLen: Integer
# @param Mode: SRT模式,可选[LISTENER|CALLER],默认为CALLER。
# @type Mode: String
attr_accessor :Destinations, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :Mode
def initialize(destinations=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, mode=nil)
@Destinations = destinations
@StreamId = streamid
@Latency = latency
@RecvLatency = recvlatency
@PeerLatency = peerlatency
@PeerIdleTimeout = peeridletimeout
@Passphrase = passphrase
@PbKeyLen = pbkeylen
@Mode = mode
end
def deserialize(params)
unless params['Destinations'].nil?
@Destinations = []
params['Destinations'].each do |i|
createoutputsrtsettingsdestinations_tmp = CreateOutputSRTSettingsDestinations.new
createoutputsrtsettingsdestinations_tmp.deserialize(i)
@Destinations << createoutputsrtsettingsdestinations_tmp
end
end
@StreamId = params['StreamId']
@Latency = params['Latency']
@RecvLatency = params['RecvLatency']
@PeerLatency = params['PeerLatency']
@PeerIdleTimeout = params['PeerIdleTimeout']
@Passphrase = params['Passphrase']
@PbKeyLen = params['PbKeyLen']
@Mode = params['Mode']
end
end
# 创建媒体传输流的输出SRT的目标地址。
class CreateOutputSRTSettingsDestinations < TencentCloud::Common::AbstractModel
# @param Ip: 输出的IP。
# @type Ip: String
# @param Port: 输出的端口。
# @type Port: Integer
attr_accessor :Ip, :Port
def initialize(ip=nil, port=nil)
@Ip = ip
@Port = port
end
def deserialize(params)
@Ip = params['Ip']
@Port = params['Port']
end
end
# CreatePersonSample请求参数结构体
class CreatePersonSampleRequest < TencentCloud::Common::AbstractModel
# @param Name: 素材名称,长度限制:20 个字符。
# @type Name: String
# @param Usages: 素材应用场景,可选值:
# 1. Recognition:用于内容识别,等价于 Recognition.Face。
# 2. Review:用于不适宜内容识别,等价于 Review.Face。
# 3. All:包含以上全部,等价于 1+2。
# @type Usages: Array
# @param Description: 素材描述,长度限制:1024 个字符。
# @type Description: String
# @param FaceContents: 素材图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串,仅支持 jpeg、png 图片格式。数组长度限制:5 张图片。
# 注意:图片必须是单人像五官较清晰的照片,像素不低于 200*200。
# @type FaceContents: Array
# @param Tags: 素材标签
# 数组长度限制:20 个标签;
# 单个标签长度限制:128 个字符。
# @type Tags: Array
attr_accessor :Name, :Usages, :Description, :FaceContents, :Tags
def initialize(name=nil, usages=nil, description=nil, facecontents=nil, tags=nil)
@Name = name
@Usages = usages
@Description = description
@FaceContents = facecontents
@Tags = tags
end
def deserialize(params)
@Name = params['Name']
@Usages = params['Usages']
@Description = params['Description']
@FaceContents = params['FaceContents']
@Tags = params['Tags']
end
end
# CreatePersonSample返回参数结构体
class CreatePersonSampleResponse < TencentCloud::Common::AbstractModel
# @param Person: 素材信息。
# @type Person: :class:`Tencentcloud::Mps.v20190612.models.AiSamplePerson`
# @param FailFaceInfoSet: 处理失败的五官定位信息。
# @type FailFaceInfoSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Person, :FailFaceInfoSet, :RequestId
def initialize(person=nil, failfaceinfoset=nil, requestid=nil)
@Person = person
@FailFaceInfoSet = failfaceinfoset
@RequestId = requestid
end
def deserialize(params)
unless params['Person'].nil?
@Person = AiSamplePerson.new
@Person.deserialize(params['Person'])
end
unless params['FailFaceInfoSet'].nil?
@FailFaceInfoSet = []
params['FailFaceInfoSet'].each do |i|
aisamplefailfaceinfo_tmp = AiSampleFailFaceInfo.new
aisamplefailfaceinfo_tmp.deserialize(i)
@FailFaceInfoSet << aisamplefailfaceinfo_tmp
end
end
@RequestId = params['RequestId']
end
end
# CreateSampleSnapshotTemplate请求参数结构体
class CreateSampleSnapshotTemplateRequest < TencentCloud::Common::AbstractModel
# @param SampleType: 采样截图类型,取值:
# Percent:按百分比。
# Time:按时间间隔。
# @type SampleType: String
# @param SampleInterval: 采样间隔。
# 当 SampleType 为 Percent 时,指定采样间隔的百分比。
# 当 SampleType 为 Time 时,指定采样间隔的时间,单位为秒。
# @type SampleInterval: Integer
# @param Name: 采样截图模板名称,长度限制:64 个字符。
# @type Name: String
# @param Width: 截图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 截图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# @type ResolutionAdaptive: String
# @param Format: 图片格式,取值为 jpg、png、webp。默认为 jpg。
# @type Format: String
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
# stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;
# black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。
# white:留白,保持视频宽高比不变,边缘剩余部分使用白色填充。
# gauss:高斯模糊,保持视频宽高比不变,边缘剩余部分使用高斯模糊。
# 默认值:black 。
# @type FillType: String
attr_accessor :SampleType, :SampleInterval, :Name, :Width, :Height, :ResolutionAdaptive, :Format, :Comment, :FillType
def initialize(sampletype=nil, sampleinterval=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil, comment=nil, filltype=nil)
@SampleType = sampletype
@SampleInterval = sampleinterval
@Name = name
@Width = width
@Height = height
@ResolutionAdaptive = resolutionadaptive
@Format = format
@Comment = comment
@FillType = filltype
end
def deserialize(params)
@SampleType = params['SampleType']
@SampleInterval = params['SampleInterval']
@Name = params['Name']
@Width = params['Width']
@Height = params['Height']
@ResolutionAdaptive = params['ResolutionAdaptive']
@Format = params['Format']
@Comment = params['Comment']
@FillType = params['FillType']
end
end
# CreateSampleSnapshotTemplate返回参数结构体
class CreateSampleSnapshotTemplateResponse < TencentCloud::Common::AbstractModel
# @param Definition: 采样截图模板唯一标识。
# @type Definition: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Definition, :RequestId
def initialize(definition=nil, requestid=nil)
@Definition = definition
@RequestId = requestid
end
def deserialize(params)
@Definition = params['Definition']
@RequestId = params['RequestId']
end
end
# CreateSchedule请求参数结构体
class CreateScheduleRequest < TencentCloud::Common::AbstractModel
# @param ScheduleName: 编排名称,最多128字符。同一个用户该名称唯一。
# @type ScheduleName: String
# @param Trigger: 编排绑定的触发规则,当上传视频命中该规则到该对象时即触发编排。
# @type Trigger: :class:`Tencentcloud::Mps.v20190612.models.WorkflowTrigger`
# @param Activities: 编排任务列表。
# @type Activities: Array
# @param OutputStorage: 媒体处理的文件输出存储位置。不填则继承 Trigger 中的存储位置。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputDir: 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
# 如果不填,表示与触发文件所在的目录一致。
# @type OutputDir: String
# @param TaskNotifyConfig: 任务的事件通知配置,不填代表不获取事件通知。
# @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.TaskNotifyConfig`
attr_accessor :ScheduleName, :Trigger, :Activities, :OutputStorage, :OutputDir, :TaskNotifyConfig
def initialize(schedulename=nil, trigger=nil, activities=nil, outputstorage=nil, outputdir=nil, tasknotifyconfig=nil)
@ScheduleName = schedulename
@Trigger = trigger
@Activities = activities
@OutputStorage = outputstorage
@OutputDir = outputdir
@TaskNotifyConfig = tasknotifyconfig
end
def deserialize(params)
@ScheduleName = params['ScheduleName']
unless params['Trigger'].nil?
@Trigger = WorkflowTrigger.new
@Trigger.deserialize(params['Trigger'])
end
unless params['Activities'].nil?
@Activities = []
params['Activities'].each do |i|
activity_tmp = Activity.new
activity_tmp.deserialize(i)
@Activities << activity_tmp
end
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputDir = params['OutputDir']
unless params['TaskNotifyConfig'].nil?
@TaskNotifyConfig = TaskNotifyConfig.new
@TaskNotifyConfig.deserialize(params['TaskNotifyConfig'])
end
end
end
# CreateSchedule返回参数结构体
class CreateScheduleResponse < TencentCloud::Common::AbstractModel
# @param ScheduleId: 编排 ID。
# @type ScheduleId: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :ScheduleId, :RequestId
def initialize(scheduleid=nil, requestid=nil)
@ScheduleId = scheduleid
@RequestId = requestid
end
def deserialize(params)
@ScheduleId = params['ScheduleId']
@RequestId = params['RequestId']
end
end
# CreateSnapshotByTimeOffsetTemplate请求参数结构体
class CreateSnapshotByTimeOffsetTemplateRequest < TencentCloud::Common::AbstractModel
# @param Name: 指定时间点截图模板名称,长度限制:64 个字符。
# @type Name: String
# @param Width: 截图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 截图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# @type ResolutionAdaptive: String
# @param Format: 图片格式,取值可以为 jpg、png、webp。默认为 jpg。
# @type Format: String
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
# stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;
# black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。
# white:留白,保持视频宽高比不变,边缘剩余部分使用白色填充。
# gauss:高斯模糊,保持视频宽高比不变,边缘剩余部分使用高斯模糊。
# 默认值:black 。
# @type FillType: String
attr_accessor :Name, :Width, :Height, :ResolutionAdaptive, :Format, :Comment, :FillType
def initialize(name=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil, comment=nil, filltype=nil)
@Name = name
@Width = width
@Height = height
@ResolutionAdaptive = resolutionadaptive
@Format = format
@Comment = comment
@FillType = filltype
end
def deserialize(params)
@Name = params['Name']
@Width = params['Width']
@Height = params['Height']
@ResolutionAdaptive = params['ResolutionAdaptive']
@Format = params['Format']
@Comment = params['Comment']
@FillType = params['FillType']
end
end
# CreateSnapshotByTimeOffsetTemplate返回参数结构体
class CreateSnapshotByTimeOffsetTemplateResponse < TencentCloud::Common::AbstractModel
# @param Definition: 时间点截图模板唯一标识。
# @type Definition: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Definition, :RequestId
def initialize(definition=nil, requestid=nil)
@Definition = definition
@RequestId = requestid
end
def deserialize(params)
@Definition = params['Definition']
@RequestId = params['RequestId']
end
end
# CreateStreamLinkEvent请求参数结构体
class CreateStreamLinkEventRequest < TencentCloud::Common::AbstractModel
# @param EventName: 事件名称。
# @type EventName: String
# @param Description: 事件描述。
# @type Description: String
attr_accessor :EventName, :Description
def initialize(eventname=nil, description=nil)
@EventName = eventname
@Description = description
end
def deserialize(params)
@EventName = params['EventName']
@Description = params['Description']
end
end
# CreateStreamLinkEvent返回参数结构体
class CreateStreamLinkEventResponse < TencentCloud::Common::AbstractModel
# @param Info: 创建的Event信息。
# @type Info: :class:`Tencentcloud::Mps.v20190612.models.DescribeEvent`
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Info, :RequestId
def initialize(info=nil, requestid=nil)
@Info = info
@RequestId = requestid
end
def deserialize(params)
unless params['Info'].nil?
@Info = DescribeEvent.new
@Info.deserialize(params['Info'])
end
@RequestId = params['RequestId']
end
end
# CreateStreamLinkFlow请求参数结构体
class CreateStreamLinkFlowRequest < TencentCloud::Common::AbstractModel
# @param FlowName: 流名称。
# @type FlowName: String
# @param MaxBandwidth: 最大带宽,单位bps,可选[10000000, 20000000, 50000000]。
# @type MaxBandwidth: Integer
# @param InputGroup: 流的输入组。
# @type InputGroup: Array
# @param EventId: 该Flow关联的媒体传输事件ID,每个flow只能关联一个Event。
# @type EventId: String
attr_accessor :FlowName, :MaxBandwidth, :InputGroup, :EventId
def initialize(flowname=nil, maxbandwidth=nil, inputgroup=nil, eventid=nil)
@FlowName = flowname
@MaxBandwidth = maxbandwidth
@InputGroup = inputgroup
@EventId = eventid
end
def deserialize(params)
@FlowName = params['FlowName']
@MaxBandwidth = params['MaxBandwidth']
unless params['InputGroup'].nil?
@InputGroup = []
params['InputGroup'].each do |i|
createinput_tmp = CreateInput.new
createinput_tmp.deserialize(i)
@InputGroup << createinput_tmp
end
end
@EventId = params['EventId']
end
end
# CreateStreamLinkFlow返回参数结构体
class CreateStreamLinkFlowResponse < TencentCloud::Common::AbstractModel
# @param Info: 创建的Flow信息。
# @type Info: :class:`Tencentcloud::Mps.v20190612.models.DescribeFlow`
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Info, :RequestId
def initialize(info=nil, requestid=nil)
@Info = info
@RequestId = requestid
end
def deserialize(params)
unless params['Info'].nil?
@Info = DescribeFlow.new
@Info.deserialize(params['Info'])
end
@RequestId = params['RequestId']
end
end
# CreateStreamLinkInput请求参数结构体
class CreateStreamLinkInputRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 媒体传输流ID。
# @type FlowId: String
# @param InputGroup: 流的输入组。
# @type InputGroup: Array
attr_accessor :FlowId, :InputGroup
def initialize(flowid=nil, inputgroup=nil)
@FlowId = flowid
@InputGroup = inputgroup
end
def deserialize(params)
@FlowId = params['FlowId']
unless params['InputGroup'].nil?
@InputGroup = []
params['InputGroup'].each do |i|
createinput_tmp = CreateInput.new
createinput_tmp.deserialize(i)
@InputGroup << createinput_tmp
end
end
end
end
# CreateStreamLinkInput返回参数结构体
class CreateStreamLinkInputResponse < TencentCloud::Common::AbstractModel
# @param Info: 创建的Flow信息。
# @type Info: :class:`Tencentcloud::Mps.v20190612.models.DescribeFlow`
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Info, :RequestId
def initialize(info=nil, requestid=nil)
@Info = info
@RequestId = requestid
end
def deserialize(params)
unless params['Info'].nil?
@Info = DescribeFlow.new
@Info.deserialize(params['Info'])
end
@RequestId = params['RequestId']
end
end
# CreateStreamLinkOutputInfo请求参数结构体
class CreateStreamLinkOutputInfoRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 传输流Id。
# @type FlowId: String
# @param Output: 传输流的Output配置。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.CreateOutputInfo`
attr_accessor :FlowId, :Output
def initialize(flowid=nil, output=nil)
@FlowId = flowid
@Output = output
end
def deserialize(params)
@FlowId = params['FlowId']
unless params['Output'].nil?
@Output = CreateOutputInfo.new
@Output.deserialize(params['Output'])
end
end
end
# CreateStreamLinkOutputInfo返回参数结构体
class CreateStreamLinkOutputInfoResponse < TencentCloud::Common::AbstractModel
# @param Info: 创建后的Output信息。
# @type Info: :class:`Tencentcloud::Mps.v20190612.models.DescribeOutput`
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Info, :RequestId
def initialize(info=nil, requestid=nil)
@Info = info
@RequestId = requestid
end
def deserialize(params)
unless params['Info'].nil?
@Info = DescribeOutput.new
@Info.deserialize(params['Info'])
end
@RequestId = params['RequestId']
end
end
# CreateTranscodeTemplate请求参数结构体
class CreateTranscodeTemplateRequest < TencentCloud::Common::AbstractModel
# @param Container: 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a。其中,mp3、flac、ogg、m4a 为纯音频文件。
# @type Container: String
# @param Name: 转码模板名称,长度限制:64 个字符。
# @type Name: String
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param RemoveVideo: 是否去除视频数据,可选值:
# 0:保留
# 1:去除
# 默认值:0。
# @type RemoveVideo: Integer
# @param RemoveAudio: 是否去除音频数据,可选值:
# 0:保留
# 1:去除
# 默认值:0。
# @type RemoveAudio: Integer
# @param VideoTemplate: 视频流配置参数,当 RemoveVideo 为 0,该字段必填。
# @type VideoTemplate: :class:`Tencentcloud::Mps.v20190612.models.VideoTemplateInfo`
# @param AudioTemplate: 音频流配置参数,当 RemoveAudio 为 0,该字段必填。
# @type AudioTemplate: :class:`Tencentcloud::Mps.v20190612.models.AudioTemplateInfo`
# @param TEHDConfig: 极速高清转码参数。
# @type TEHDConfig: :class:`Tencentcloud::Mps.v20190612.models.TEHDConfig`
# @param EnhanceConfig: 音视频增强配置。
# @type EnhanceConfig: :class:`Tencentcloud::Mps.v20190612.models.EnhanceConfig`
attr_accessor :Container, :Name, :Comment, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig, :EnhanceConfig
def initialize(container=nil, name=nil, comment=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil, enhanceconfig=nil)
@Container = container
@Name = name
@Comment = comment
@RemoveVideo = removevideo
@RemoveAudio = removeaudio
@VideoTemplate = videotemplate
@AudioTemplate = audiotemplate
@TEHDConfig = tehdconfig
@EnhanceConfig = enhanceconfig
end
def deserialize(params)
@Container = params['Container']
@Name = params['Name']
@Comment = params['Comment']
@RemoveVideo = params['RemoveVideo']
@RemoveAudio = params['RemoveAudio']
unless params['VideoTemplate'].nil?
@VideoTemplate = VideoTemplateInfo.new
@VideoTemplate.deserialize(params['VideoTemplate'])
end
unless params['AudioTemplate'].nil?
@AudioTemplate = AudioTemplateInfo.new
@AudioTemplate.deserialize(params['AudioTemplate'])
end
unless params['TEHDConfig'].nil?
@TEHDConfig = TEHDConfig.new
@TEHDConfig.deserialize(params['TEHDConfig'])
end
unless params['EnhanceConfig'].nil?
@EnhanceConfig = EnhanceConfig.new
@EnhanceConfig.deserialize(params['EnhanceConfig'])
end
end
end
# CreateTranscodeTemplate返回参数结构体
class CreateTranscodeTemplateResponse < TencentCloud::Common::AbstractModel
# @param Definition: 转码模板唯一标识。
# @type Definition: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Definition, :RequestId
def initialize(definition=nil, requestid=nil)
@Definition = definition
@RequestId = requestid
end
def deserialize(params)
@Definition = params['Definition']
@RequestId = params['RequestId']
end
end
# CreateWatermarkTemplate请求参数结构体
class CreateWatermarkTemplateRequest < TencentCloud::Common::AbstractModel
# @param Type: 水印类型,可选值:
# image:图片水印;
# text:文字水印;
# svg:SVG 水印。
# @type Type: String
# @param Name: 水印模板名称,长度限制:64 个字符。
# @type Name: String
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param CoordinateOrigin: 原点位置,可选值:
# TopLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;
# TopRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;
# BottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;
# BottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下角。
# 默认值:TopLeft。
# @type CoordinateOrigin: String
# @param XPos: 水印原点距离视频图像坐标原点的水平位置。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 XPos 为视频宽度指定百分比,如 10% 表示 XPos 为视频宽度的 10%;
# 当字符串以 px 结尾,表示水印 XPos 为指定像素,如 100px 表示 XPos 为 100 像素。
# 默认值:0px。
# @type XPos: String
# @param YPos: 水印原点距离视频图像坐标原点的垂直位置。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 YPos 为视频高度指定百分比,如 10% 表示 YPos 为视频高度的 10%;
# 当字符串以 px 结尾,表示水印 YPos 为指定像素,如 100px 表示 YPos 为 100 像素。
# 默认值:0px。
# @type YPos: String
# @param ImageTemplate: 图片水印模板,仅当 Type 为 image,该字段必填且有效。
# @type ImageTemplate: :class:`Tencentcloud::Mps.v20190612.models.ImageWatermarkInput`
# @param TextTemplate: 文字水印模板,仅当 Type 为 text,该字段必填且有效。
# @type TextTemplate: :class:`Tencentcloud::Mps.v20190612.models.TextWatermarkTemplateInput`
# @param SvgTemplate: SVG 水印模板,仅当 Type 为 svg,该字段必填且有效。
# @type SvgTemplate: :class:`Tencentcloud::Mps.v20190612.models.SvgWatermarkInput`
attr_accessor :Type, :Name, :Comment, :CoordinateOrigin, :XPos, :YPos, :ImageTemplate, :TextTemplate, :SvgTemplate
def initialize(type=nil, name=nil, comment=nil, coordinateorigin=nil, xpos=nil, ypos=nil, imagetemplate=nil, texttemplate=nil, svgtemplate=nil)
@Type = type
@Name = name
@Comment = comment
@CoordinateOrigin = coordinateorigin
@XPos = xpos
@YPos = ypos
@ImageTemplate = imagetemplate
@TextTemplate = texttemplate
@SvgTemplate = svgtemplate
end
def deserialize(params)
@Type = params['Type']
@Name = params['Name']
@Comment = params['Comment']
@CoordinateOrigin = params['CoordinateOrigin']
@XPos = params['XPos']
@YPos = params['YPos']
unless params['ImageTemplate'].nil?
@ImageTemplate = ImageWatermarkInput.new
@ImageTemplate.deserialize(params['ImageTemplate'])
end
unless params['TextTemplate'].nil?
@TextTemplate = TextWatermarkTemplateInput.new
@TextTemplate.deserialize(params['TextTemplate'])
end
unless params['SvgTemplate'].nil?
@SvgTemplate = SvgWatermarkInput.new
@SvgTemplate.deserialize(params['SvgTemplate'])
end
end
end
# CreateWatermarkTemplate返回参数结构体
class CreateWatermarkTemplateResponse < TencentCloud::Common::AbstractModel
# @param Definition: 水印模板唯一标识。
# @type Definition: Integer
# @param ImageUrl: 水印图片地址,仅当 Type 为 image,该字段有效。
# @type ImageUrl: String
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Definition, :ImageUrl, :RequestId
def initialize(definition=nil, imageurl=nil, requestid=nil)
@Definition = definition
@ImageUrl = imageurl
@RequestId = requestid
end
def deserialize(params)
@Definition = params['Definition']
@ImageUrl = params['ImageUrl']
@RequestId = params['RequestId']
end
end
# CreateWordSamples请求参数结构体
class CreateWordSamplesRequest < TencentCloud::Common::AbstractModel
# @param Usages: 关键词应用场景,可选值:
# 1. Recognition.Ocr:通过光学字符识别技术,进行内容识别;
# 2. Recognition.Asr:通过音频识别技术,进行内容识别;
# 3. Review.Ocr:通过光学字符识别技术,进行不适宜内容识别;
# 4. Review.Asr:通过音频识别技术,进行不适宜内容识别;
# 可合并简写为:
# 5. Recognition:通过光学字符识别技术、音频识别技术,进行内容识别,等价于 1+2;
# 6. Review:通过光学字符识别技术、音频识别技术,进行不适宜内容识别,等价于 3+4;
# 7. All:通过光学字符识别技术、音频识别技术,进行内容识别、不适宜内容识别,等价于 1+2+3+4。
# @type Usages: Array
# @param Words: 关键词,数组长度限制:100。
# @type Words: Array
attr_accessor :Usages, :Words
def initialize(usages=nil, words=nil)
@Usages = usages
@Words = words
end
def deserialize(params)
@Usages = params['Usages']
unless params['Words'].nil?
@Words = []
params['Words'].each do |i|
aisamplewordinfo_tmp = AiSampleWordInfo.new
aisamplewordinfo_tmp.deserialize(i)
@Words << aisamplewordinfo_tmp
end
end
end
end
# CreateWordSamples返回参数结构体
class CreateWordSamplesResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# CreateWorkflow请求参数结构体
class CreateWorkflowRequest < TencentCloud::Common::AbstractModel
# @param WorkflowName: 工作流名称,最多128字符。同一个用户该名称唯一。
# @type WorkflowName: String
# @param Trigger: 工作流绑定的触发规则,当上传视频命中该规则到该对象时即触发工作流。
# @type Trigger: :class:`Tencentcloud::Mps.v20190612.models.WorkflowTrigger`
# @param OutputStorage: 媒体处理的文件输出存储位置。不填则继承 Trigger 中的存储位置。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputDir: 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
# 如果不填,表示与触发文件所在的目录一致。
# @type OutputDir: String
# @param MediaProcessTask: 媒体处理类型任务参数。
# @type MediaProcessTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskInput`
# @param AiContentReviewTask: 视频内容审核类型任务参数。
# @type AiContentReviewTask: :class:`Tencentcloud::Mps.v20190612.models.AiContentReviewTaskInput`
# @param AiAnalysisTask: 视频内容分析类型任务参数。
# @type AiAnalysisTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskInput`
# @param AiRecognitionTask: 视频内容识别类型任务参数。
# @type AiRecognitionTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskInput`
# @param TaskNotifyConfig: 任务的事件通知配置,不填代表不获取事件通知。
# @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.TaskNotifyConfig`
# @param TaskPriority: 工作流的优先级,数值越大优先级越高,取值范围是 -10 到 10,不填代表 0。
# @type TaskPriority: Integer
attr_accessor :WorkflowName, :Trigger, :OutputStorage, :OutputDir, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTask, :TaskNotifyConfig, :TaskPriority
def initialize(workflowname=nil, trigger=nil, outputstorage=nil, outputdir=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontask=nil, tasknotifyconfig=nil, taskpriority=nil)
@WorkflowName = workflowname
@Trigger = trigger
@OutputStorage = outputstorage
@OutputDir = outputdir
@MediaProcessTask = mediaprocesstask
@AiContentReviewTask = aicontentreviewtask
@AiAnalysisTask = aianalysistask
@AiRecognitionTask = airecognitiontask
@TaskNotifyConfig = tasknotifyconfig
@TaskPriority = taskpriority
end
def deserialize(params)
@WorkflowName = params['WorkflowName']
unless params['Trigger'].nil?
@Trigger = WorkflowTrigger.new
@Trigger.deserialize(params['Trigger'])
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputDir = params['OutputDir']
unless params['MediaProcessTask'].nil?
@MediaProcessTask = MediaProcessTaskInput.new
@MediaProcessTask.deserialize(params['MediaProcessTask'])
end
unless params['AiContentReviewTask'].nil?
@AiContentReviewTask = AiContentReviewTaskInput.new
@AiContentReviewTask.deserialize(params['AiContentReviewTask'])
end
unless params['AiAnalysisTask'].nil?
@AiAnalysisTask = AiAnalysisTaskInput.new
@AiAnalysisTask.deserialize(params['AiAnalysisTask'])
end
unless params['AiRecognitionTask'].nil?
@AiRecognitionTask = AiRecognitionTaskInput.new
@AiRecognitionTask.deserialize(params['AiRecognitionTask'])
end
unless params['TaskNotifyConfig'].nil?
@TaskNotifyConfig = TaskNotifyConfig.new
@TaskNotifyConfig.deserialize(params['TaskNotifyConfig'])
end
@TaskPriority = params['TaskPriority']
end
end
# CreateWorkflow返回参数结构体
class CreateWorkflowResponse < TencentCloud::Common::AbstractModel
# @param WorkflowId: 工作流 ID。
# @type WorkflowId: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :WorkflowId, :RequestId
def initialize(workflowid=nil, requestid=nil)
@WorkflowId = workflowid
@RequestId = requestid
end
def deserialize(params)
@WorkflowId = params['WorkflowId']
@RequestId = params['RequestId']
end
end
# DeleteAIAnalysisTemplate请求参数结构体
class DeleteAIAnalysisTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 视频内容分析模板唯一标识。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# DeleteAIAnalysisTemplate返回参数结构体
class DeleteAIAnalysisTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteAIRecognitionTemplate请求参数结构体
class DeleteAIRecognitionTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 视频内容识别模板唯一标识。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# DeleteAIRecognitionTemplate返回参数结构体
class DeleteAIRecognitionTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteAdaptiveDynamicStreamingTemplate请求参数结构体
class DeleteAdaptiveDynamicStreamingTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 自适应转码模板唯一标识。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# DeleteAdaptiveDynamicStreamingTemplate返回参数结构体
class DeleteAdaptiveDynamicStreamingTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteAnimatedGraphicsTemplate请求参数结构体
class DeleteAnimatedGraphicsTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 转动图模板唯一标识。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# DeleteAnimatedGraphicsTemplate返回参数结构体
class DeleteAnimatedGraphicsTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteContentReviewTemplate请求参数结构体
class DeleteContentReviewTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 内容审核模板唯一标识。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# DeleteContentReviewTemplate返回参数结构体
class DeleteContentReviewTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteImageSpriteTemplate请求参数结构体
class DeleteImageSpriteTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 雪碧图模板唯一标识。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# DeleteImageSpriteTemplate返回参数结构体
class DeleteImageSpriteTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeletePersonSample请求参数结构体
class DeletePersonSampleRequest < TencentCloud::Common::AbstractModel
# @param PersonId: 素材 ID。
# @type PersonId: String
attr_accessor :PersonId
def initialize(personid=nil)
@PersonId = personid
end
def deserialize(params)
@PersonId = params['PersonId']
end
end
# DeletePersonSample返回参数结构体
class DeletePersonSampleResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteSampleSnapshotTemplate请求参数结构体
class DeleteSampleSnapshotTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 采样截图模板唯一标识。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# DeleteSampleSnapshotTemplate返回参数结构体
class DeleteSampleSnapshotTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteSchedule请求参数结构体
class DeleteScheduleRequest < TencentCloud::Common::AbstractModel
# @param ScheduleId: 编排唯一标识。
# @type ScheduleId: Integer
attr_accessor :ScheduleId
def initialize(scheduleid=nil)
@ScheduleId = scheduleid
end
def deserialize(params)
@ScheduleId = params['ScheduleId']
end
end
# DeleteSchedule返回参数结构体
class DeleteScheduleResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteSnapshotByTimeOffsetTemplate请求参数结构体
class DeleteSnapshotByTimeOffsetTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 指定时间点截图模板唯一标识。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# DeleteSnapshotByTimeOffsetTemplate返回参数结构体
class DeleteSnapshotByTimeOffsetTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteStreamLinkEvent请求参数结构体
class DeleteStreamLinkEventRequest < TencentCloud::Common::AbstractModel
# @param EventId: 媒体传输事件Id,删除前需要保证该Event关联的所有Flow都已经删除。
# @type EventId: String
attr_accessor :EventId
def initialize(eventid=nil)
@EventId = eventid
end
def deserialize(params)
@EventId = params['EventId']
end
end
# DeleteStreamLinkEvent返回参数结构体
class DeleteStreamLinkEventResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteStreamLinkFlow请求参数结构体
class DeleteStreamLinkFlowRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 传输流Id。
# @type FlowId: String
attr_accessor :FlowId
def initialize(flowid=nil)
@FlowId = flowid
end
def deserialize(params)
@FlowId = params['FlowId']
end
end
# DeleteStreamLinkFlow返回参数结构体
class DeleteStreamLinkFlowResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteStreamLinkOutput请求参数结构体
class DeleteStreamLinkOutputRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 流Id。
# @type FlowId: String
# @param OutputId: 输出Id。
# @type OutputId: String
attr_accessor :FlowId, :OutputId
def initialize(flowid=nil, outputid=nil)
@FlowId = flowid
@OutputId = outputid
end
def deserialize(params)
@FlowId = params['FlowId']
@OutputId = params['OutputId']
end
end
# DeleteStreamLinkOutput返回参数结构体
class DeleteStreamLinkOutputResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteTranscodeTemplate请求参数结构体
class DeleteTranscodeTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 转码模板唯一标识。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# DeleteTranscodeTemplate返回参数结构体
class DeleteTranscodeTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteWatermarkTemplate请求参数结构体
class DeleteWatermarkTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 水印模板唯一标识。
# @type Definition: Integer
attr_accessor :Definition
def initialize(definition=nil)
@Definition = definition
end
def deserialize(params)
@Definition = params['Definition']
end
end
# DeleteWatermarkTemplate返回参数结构体
class DeleteWatermarkTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteWordSamples请求参数结构体
class DeleteWordSamplesRequest < TencentCloud::Common::AbstractModel
# @param Keywords: 关键词,数组长度限制:100 个词。
# @type Keywords: Array
attr_accessor :Keywords
def initialize(keywords=nil)
@Keywords = keywords
end
def deserialize(params)
@Keywords = params['Keywords']
end
end
# DeleteWordSamples返回参数结构体
class DeleteWordSamplesResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DeleteWorkflow请求参数结构体
class DeleteWorkflowRequest < TencentCloud::Common::AbstractModel
# @param WorkflowId: 工作流 ID。
# @type WorkflowId: Integer
attr_accessor :WorkflowId
def initialize(workflowid=nil)
@WorkflowId = workflowid
end
def deserialize(params)
@WorkflowId = params['WorkflowId']
end
end
# DeleteWorkflow返回参数结构体
class DeleteWorkflowResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DescribeAIAnalysisTemplates请求参数结构体
class DescribeAIAnalysisTemplatesRequest < TencentCloud::Common::AbstractModel
# @param Definitions: 视频内容分析模板唯一标识过滤条件,数组长度限制:10。
# @type Definitions: Array
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:10,最大值:100。
# @type Limit: Integer
# @param Type: 模板类型过滤条件,不填则返回所有,可选值:
# * Preset:系统预置模板;
# * Custom:用户自定义模板。
# @type Type: String
attr_accessor :Definitions, :Offset, :Limit, :Type
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
@Definitions = definitions
@Offset = offset
@Limit = limit
@Type = type
end
def deserialize(params)
@Definitions = params['Definitions']
@Offset = params['Offset']
@Limit = params['Limit']
@Type = params['Type']
end
end
# DescribeAIAnalysisTemplates返回参数结构体
class DescribeAIAnalysisTemplatesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param AIAnalysisTemplateSet: 视频内容分析模板详情列表。
# @type AIAnalysisTemplateSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :AIAnalysisTemplateSet, :RequestId
def initialize(totalcount=nil, aianalysistemplateset=nil, requestid=nil)
@TotalCount = totalcount
@AIAnalysisTemplateSet = aianalysistemplateset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['AIAnalysisTemplateSet'].nil?
@AIAnalysisTemplateSet = []
params['AIAnalysisTemplateSet'].each do |i|
aianalysistemplateitem_tmp = AIAnalysisTemplateItem.new
aianalysistemplateitem_tmp.deserialize(i)
@AIAnalysisTemplateSet << aianalysistemplateitem_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeAIRecognitionTemplates请求参数结构体
class DescribeAIRecognitionTemplatesRequest < TencentCloud::Common::AbstractModel
# @param Definitions: 视频内容识别模板唯一标识过滤条件,数组长度限制:10。
# @type Definitions: Array
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:10,最大值:50。
# @type Limit: Integer
# @param Type: 模板类型过滤条件,不填则返回所有,可选值:
# * Preset:系统预置模板;
# * Custom:用户自定义模板。
# @type Type: String
attr_accessor :Definitions, :Offset, :Limit, :Type
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
@Definitions = definitions
@Offset = offset
@Limit = limit
@Type = type
end
def deserialize(params)
@Definitions = params['Definitions']
@Offset = params['Offset']
@Limit = params['Limit']
@Type = params['Type']
end
end
# DescribeAIRecognitionTemplates返回参数结构体
class DescribeAIRecognitionTemplatesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param AIRecognitionTemplateSet: 视频内容识别模板详情列表。
# @type AIRecognitionTemplateSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :AIRecognitionTemplateSet, :RequestId
def initialize(totalcount=nil, airecognitiontemplateset=nil, requestid=nil)
@TotalCount = totalcount
@AIRecognitionTemplateSet = airecognitiontemplateset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['AIRecognitionTemplateSet'].nil?
@AIRecognitionTemplateSet = []
params['AIRecognitionTemplateSet'].each do |i|
airecognitiontemplateitem_tmp = AIRecognitionTemplateItem.new
airecognitiontemplateitem_tmp.deserialize(i)
@AIRecognitionTemplateSet << airecognitiontemplateitem_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeAdaptiveDynamicStreamingTemplates请求参数结构体
class DescribeAdaptiveDynamicStreamingTemplatesRequest < TencentCloud::Common::AbstractModel
# @param Definitions: 转自适应码流模板唯一标识过滤条件,数组长度限制:100。
# @type Definitions: Array
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:10,最大值:100。
# @type Limit: Integer
# @param Type: 模板类型过滤条件,可选值:
# Preset:系统预置模板;
# Custom:用户自定义模板。
# @type Type: String
attr_accessor :Definitions, :Offset, :Limit, :Type
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
@Definitions = definitions
@Offset = offset
@Limit = limit
@Type = type
end
def deserialize(params)
@Definitions = params['Definitions']
@Offset = params['Offset']
@Limit = params['Limit']
@Type = params['Type']
end
end
# DescribeAdaptiveDynamicStreamingTemplates返回参数结构体
class DescribeAdaptiveDynamicStreamingTemplatesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param AdaptiveDynamicStreamingTemplateSet: 转自适应码流模板详情列表。
# @type AdaptiveDynamicStreamingTemplateSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :AdaptiveDynamicStreamingTemplateSet, :RequestId
def initialize(totalcount=nil, adaptivedynamicstreamingtemplateset=nil, requestid=nil)
@TotalCount = totalcount
@AdaptiveDynamicStreamingTemplateSet = adaptivedynamicstreamingtemplateset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['AdaptiveDynamicStreamingTemplateSet'].nil?
@AdaptiveDynamicStreamingTemplateSet = []
params['AdaptiveDynamicStreamingTemplateSet'].each do |i|
adaptivedynamicstreamingtemplate_tmp = AdaptiveDynamicStreamingTemplate.new
adaptivedynamicstreamingtemplate_tmp.deserialize(i)
@AdaptiveDynamicStreamingTemplateSet << adaptivedynamicstreamingtemplate_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeAnimatedGraphicsTemplates请求参数结构体
class DescribeAnimatedGraphicsTemplatesRequest < TencentCloud::Common::AbstractModel
# @param Definitions: 转动图模板唯一标识过滤条件,数组长度限制:100。
# @type Definitions: Array
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:10,最大值:100。
# @type Limit: Integer
# @param Type: 模板类型过滤条件,可选值:
# Preset:系统预置模板;
# Custom:用户自定义模板。
# @type Type: String
attr_accessor :Definitions, :Offset, :Limit, :Type
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
@Definitions = definitions
@Offset = offset
@Limit = limit
@Type = type
end
def deserialize(params)
@Definitions = params['Definitions']
@Offset = params['Offset']
@Limit = params['Limit']
@Type = params['Type']
end
end
# DescribeAnimatedGraphicsTemplates返回参数结构体
class DescribeAnimatedGraphicsTemplatesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param AnimatedGraphicsTemplateSet: 转动图模板详情列表。
# @type AnimatedGraphicsTemplateSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :AnimatedGraphicsTemplateSet, :RequestId
def initialize(totalcount=nil, animatedgraphicstemplateset=nil, requestid=nil)
@TotalCount = totalcount
@AnimatedGraphicsTemplateSet = animatedgraphicstemplateset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['AnimatedGraphicsTemplateSet'].nil?
@AnimatedGraphicsTemplateSet = []
params['AnimatedGraphicsTemplateSet'].each do |i|
animatedgraphicstemplate_tmp = AnimatedGraphicsTemplate.new
animatedgraphicstemplate_tmp.deserialize(i)
@AnimatedGraphicsTemplateSet << animatedgraphicstemplate_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeContentReviewTemplates请求参数结构体
class DescribeContentReviewTemplatesRequest < TencentCloud::Common::AbstractModel
# @param Definitions: 智能审核模板唯一标识过滤条件,数组长度限制:50。
# @type Definitions: Array
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:10,最大值:50。
# @type Limit: Integer
# @param Type: 模板类型过滤条件,不填则返回所有,可选值:
# * Preset:系统预置模板;
# * Custom:用户自定义模板。
# @type Type: String
attr_accessor :Definitions, :Offset, :Limit, :Type
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
@Definitions = definitions
@Offset = offset
@Limit = limit
@Type = type
end
def deserialize(params)
@Definitions = params['Definitions']
@Offset = params['Offset']
@Limit = params['Limit']
@Type = params['Type']
end
end
# DescribeContentReviewTemplates返回参数结构体
class DescribeContentReviewTemplatesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param ContentReviewTemplateSet: 内容审核模板详情列表。
# @type ContentReviewTemplateSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :ContentReviewTemplateSet, :RequestId
def initialize(totalcount=nil, contentreviewtemplateset=nil, requestid=nil)
@TotalCount = totalcount
@ContentReviewTemplateSet = contentreviewtemplateset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['ContentReviewTemplateSet'].nil?
@ContentReviewTemplateSet = []
params['ContentReviewTemplateSet'].each do |i|
contentreviewtemplateitem_tmp = ContentReviewTemplateItem.new
contentreviewtemplateitem_tmp.deserialize(i)
@ContentReviewTemplateSet << contentreviewtemplateitem_tmp
end
end
@RequestId = params['RequestId']
end
end
# 查询Event的配置信息。
class DescribeEvent < TencentCloud::Common::AbstractModel
# @param EventName: Event的名称。
# @type EventName: String
# @param EventId: Event的Id,唯一标识一个event。
# @type EventId: String
# @param CreateTime: Event创建时间,格式为yyyy-MM-ddTHH:mm:ssZ。
# @type CreateTime: String
# @param Description: Event的描述。
# @type Description: String
# @param Status: Event的状态信息
# 0:未运行
# 1:运行中
# @type Status: Integer
# @param AttachedFlowGroup: Event关联的Flow列表。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AttachedFlowGroup: Array
attr_accessor :EventName, :EventId, :CreateTime, :Description, :Status, :AttachedFlowGroup
def initialize(eventname=nil, eventid=nil, createtime=nil, description=nil, status=nil, attachedflowgroup=nil)
@EventName = eventname
@EventId = eventid
@CreateTime = createtime
@Description = description
@Status = status
@AttachedFlowGroup = attachedflowgroup
end
def deserialize(params)
@EventName = params['EventName']
@EventId = params['EventId']
@CreateTime = params['CreateTime']
@Description = params['Description']
@Status = params['Status']
unless params['AttachedFlowGroup'].nil?
@AttachedFlowGroup = []
params['AttachedFlowGroup'].each do |i|
describeflowid_tmp = DescribeFlowId.new
describeflowid_tmp.deserialize(i)
@AttachedFlowGroup << describeflowid_tmp
end
end
end
end
# 查询Flow的配置信息。
class DescribeFlow < TencentCloud::Common::AbstractModel
# @param FlowId: 流Id。
# @type FlowId: String
# @param FlowName: 流名称。
# @type FlowName: String
# @param State: 流状态,目前有IDLE/RUNNING。
# @type State: String
# @param MaxBandwidth: 最大带宽值。
# @type MaxBandwidth: Integer
# @param InputGroup: 输入组。
# @type InputGroup: Array
# @param OutputGroup: 输出组。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OutputGroup: Array
# @param EventId: 该Flow关联的媒体传输事件EventId。
# @type EventId: String
# @param Region: 媒体传输输入流所属的区域,取值和InputRegion相同。
# @type Region: String
attr_accessor :FlowId, :FlowName, :State, :MaxBandwidth, :InputGroup, :OutputGroup, :EventId, :Region
def initialize(flowid=nil, flowname=nil, state=nil, maxbandwidth=nil, inputgroup=nil, outputgroup=nil, eventid=nil, region=nil)
@FlowId = flowid
@FlowName = flowname
@State = state
@MaxBandwidth = maxbandwidth
@InputGroup = inputgroup
@OutputGroup = outputgroup
@EventId = eventid
@Region = region
end
def deserialize(params)
@FlowId = params['FlowId']
@FlowName = params['FlowName']
@State = params['State']
@MaxBandwidth = params['MaxBandwidth']
unless params['InputGroup'].nil?
@InputGroup = []
params['InputGroup'].each do |i|
describeinput_tmp = DescribeInput.new
describeinput_tmp.deserialize(i)
@InputGroup << describeinput_tmp
end
end
unless params['OutputGroup'].nil?
@OutputGroup = []
params['OutputGroup'].each do |i|
describeoutput_tmp = DescribeOutput.new
describeoutput_tmp.deserialize(i)
@OutputGroup << describeoutput_tmp
end
end
@EventId = params['EventId']
@Region = params['Region']
end
end
# Event管理的Flow列表
class DescribeFlowId < TencentCloud::Common::AbstractModel
# @param FlowId: FlowId,唯一标识一个flow。
# @type FlowId: String
# @param Region: flow所在的区域名称。
# @type Region: String
attr_accessor :FlowId, :Region
def initialize(flowid=nil, region=nil)
@FlowId = flowid
@Region = region
end
def deserialize(params)
@FlowId = params['FlowId']
@Region = params['Region']
end
end
# 查询输入的HLS配置信息。
class DescribeHLSPullSourceAddress < TencentCloud::Common::AbstractModel
# @param Url: HLS源站的Url地址。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Url: String
attr_accessor :Url
def initialize(url=nil)
@Url = url
end
def deserialize(params)
@Url = params['Url']
end
end
# DescribeImageSpriteTemplates请求参数结构体
class DescribeImageSpriteTemplatesRequest < TencentCloud::Common::AbstractModel
# @param Definitions: 雪碧图模板唯一标识过滤条件,数组长度限制:100。
# @type Definitions: Array
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:10,最大值:100。
# @type Limit: Integer
# @param Type: 模板类型过滤条件,可选值:
# Preset:系统预置模板;
# Custom:用户自定义模板。
# @type Type: String
attr_accessor :Definitions, :Offset, :Limit, :Type
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
@Definitions = definitions
@Offset = offset
@Limit = limit
@Type = type
end
def deserialize(params)
@Definitions = params['Definitions']
@Offset = params['Offset']
@Limit = params['Limit']
@Type = params['Type']
end
end
# DescribeImageSpriteTemplates返回参数结构体
class DescribeImageSpriteTemplatesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param ImageSpriteTemplateSet: 雪碧图模板详情列表。
# @type ImageSpriteTemplateSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :ImageSpriteTemplateSet, :RequestId
def initialize(totalcount=nil, imagespritetemplateset=nil, requestid=nil)
@TotalCount = totalcount
@ImageSpriteTemplateSet = imagespritetemplateset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['ImageSpriteTemplateSet'].nil?
@ImageSpriteTemplateSet = []
params['ImageSpriteTemplateSet'].each do |i|
imagespritetemplate_tmp = ImageSpriteTemplate.new
imagespritetemplate_tmp.deserialize(i)
@ImageSpriteTemplateSet << imagespritetemplate_tmp
end
end
@RequestId = params['RequestId']
end
end
# 查询输入配置信息。
class DescribeInput < TencentCloud::Common::AbstractModel
# @param InputId: 输入Id。
# @type InputId: String
# @param InputName: 输入名称。
# @type InputName: String
# @param Description: 输入描述。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Description: String
# @param Protocol: 输入协议。
# @type Protocol: String
# @param InputAddressList: 输入地址列表。
# @type InputAddressList: Array
# @param AllowIpList: 输入IP白名单列表。
# @type AllowIpList: Array
# @param SRTSettings: 输入的SRT配置信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SRTSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeInputSRTSettings`
# @param RTPSettings: 输入的RTP配置信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type RTPSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeInputRTPSettings`
# @param InputRegion: 输入的地区。
# @type InputRegion: String
# @param RTMPSettings: 输入的RTMP配置信息。
# @type RTMPSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeInputRTMPSettings`
# @param FailOver: 输入的主备开关。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FailOver: String
# @param RTMPPullSettings: 输入的RTMP_PULL配置信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type RTMPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeInputRTMPPullSettings`
# @param RTSPPullSettings: 输入的RTSP_PULL配置信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type RTSPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeInputRTSPPullSettings`
# @param HLSPullSettings: 输入的HLS_PULL配置信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type HLSPullSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeInputHLSPullSettings`
# @param ResilientStream: 延播平滑吐流配置信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ResilientStream: :class:`Tencentcloud::Mps.v20190612.models.ResilientStreamConf`
attr_accessor :InputId, :InputName, :Description, :Protocol, :InputAddressList, :AllowIpList, :SRTSettings, :RTPSettings, :InputRegion, :RTMPSettings, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream
def initialize(inputid=nil, inputname=nil, description=nil, protocol=nil, inputaddresslist=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, inputregion=nil, rtmpsettings=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil, hlspullsettings=nil, resilientstream=nil)
@InputId = inputid
@InputName = inputname
@Description = description
@Protocol = protocol
@InputAddressList = inputaddresslist
@AllowIpList = allowiplist
@SRTSettings = srtsettings
@RTPSettings = rtpsettings
@InputRegion = inputregion
@RTMPSettings = rtmpsettings
@FailOver = failover
@RTMPPullSettings = rtmppullsettings
@RTSPPullSettings = rtsppullsettings
@HLSPullSettings = hlspullsettings
@ResilientStream = resilientstream
end
def deserialize(params)
@InputId = params['InputId']
@InputName = params['InputName']
@Description = params['Description']
@Protocol = params['Protocol']
unless params['InputAddressList'].nil?
@InputAddressList = []
params['InputAddressList'].each do |i|
inputaddress_tmp = InputAddress.new
inputaddress_tmp.deserialize(i)
@InputAddressList << inputaddress_tmp
end
end
@AllowIpList = params['AllowIpList']
unless params['SRTSettings'].nil?
@SRTSettings = DescribeInputSRTSettings.new
@SRTSettings.deserialize(params['SRTSettings'])
end
unless params['RTPSettings'].nil?
@RTPSettings = DescribeInputRTPSettings.new
@RTPSettings.deserialize(params['RTPSettings'])
end
@InputRegion = params['InputRegion']
unless params['RTMPSettings'].nil?
@RTMPSettings = DescribeInputRTMPSettings.new
@RTMPSettings.deserialize(params['RTMPSettings'])
end
@FailOver = params['FailOver']
unless params['RTMPPullSettings'].nil?
@RTMPPullSettings = DescribeInputRTMPPullSettings.new
@RTMPPullSettings.deserialize(params['RTMPPullSettings'])
end
unless params['RTSPPullSettings'].nil?
@RTSPPullSettings = DescribeInputRTSPPullSettings.new
@RTSPPullSettings.deserialize(params['RTSPPullSettings'])
end
unless params['HLSPullSettings'].nil?
@HLSPullSettings = DescribeInputHLSPullSettings.new
@HLSPullSettings.deserialize(params['HLSPullSettings'])
end
unless params['ResilientStream'].nil?
@ResilientStream = ResilientStreamConf.new
@ResilientStream.deserialize(params['ResilientStream'])
end
end
end
# 查询输入的HLS配置信息。
class DescribeInputHLSPullSettings < TencentCloud::Common::AbstractModel
# @param SourceAddresses: HLS源站地址信息。
# @type SourceAddresses: Array
attr_accessor :SourceAddresses
def initialize(sourceaddresses=nil)
@SourceAddresses = sourceaddresses
end
def deserialize(params)
unless params['SourceAddresses'].nil?
@SourceAddresses = []
params['SourceAddresses'].each do |i|
describehlspullsourceaddress_tmp = DescribeHLSPullSourceAddress.new
describehlspullsourceaddress_tmp.deserialize(i)
@SourceAddresses << describehlspullsourceaddress_tmp
end
end
end
end
# 查询输入的RTMP配置信息。
class DescribeInputRTMPPullSettings < TencentCloud::Common::AbstractModel
# @param SourceAddresses: RTMP源站地址信息。
# @type SourceAddresses: Array
attr_accessor :SourceAddresses
def initialize(sourceaddresses=nil)
@SourceAddresses = sourceaddresses
end
def deserialize(params)
unless params['SourceAddresses'].nil?
@SourceAddresses = []
params['SourceAddresses'].each do |i|
describertmppullsourceaddress_tmp = DescribeRTMPPullSourceAddress.new
describertmppullsourceaddress_tmp.deserialize(i)
@SourceAddresses << describertmppullsourceaddress_tmp
end
end
end
end
# 查询输入的RTMP配置信息。
class DescribeInputRTMPSettings < TencentCloud::Common::AbstractModel
# @param AppName: RTMP的推流路径。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AppName: String
# @param StreamKey: RTMP的推流StreamKey。
# RTMP的推流地址拼接规则为:rtmp://Ip:1935/AppName/StreamKey
# @type StreamKey: String
attr_accessor :AppName, :StreamKey
def initialize(appname=nil, streamkey=nil)
@AppName = appname
@StreamKey = streamkey
end
def deserialize(params)
@AppName = params['AppName']
@StreamKey = params['StreamKey']
end
end
# 查询输入的RTP配置信息。
class DescribeInputRTPSettings < TencentCloud::Common::AbstractModel
# @param FEC: 是否FEC。
# @type FEC: String
# @param IdleTimeout: 空闲超时时间。
# @type IdleTimeout: Integer
attr_accessor :FEC, :IdleTimeout
def initialize(fec=nil, idletimeout=nil)
@FEC = fec
@IdleTimeout = idletimeout
end
def deserialize(params)
@FEC = params['FEC']
@IdleTimeout = params['IdleTimeout']
end
end
# 查询输入的RTSP配置信息。
class DescribeInputRTSPPullSettings < TencentCloud::Common::AbstractModel
# @param SourceAddresses: RTSP源站地址信息。
# @type SourceAddresses: Array
attr_accessor :SourceAddresses
def initialize(sourceaddresses=nil)
@SourceAddresses = sourceaddresses
end
def deserialize(params)
unless params['SourceAddresses'].nil?
@SourceAddresses = []
params['SourceAddresses'].each do |i|
describertsppullsourceaddress_tmp = DescribeRTSPPullSourceAddress.new
describertsppullsourceaddress_tmp.deserialize(i)
@SourceAddresses << describertsppullsourceaddress_tmp
end
end
end
end
# 查询输入的SRT配置信息。
class DescribeInputSRTSettings < TencentCloud::Common::AbstractModel
# @param Mode: SRT模式。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Mode: String
# @param StreamId: 流Id。
# @type StreamId: String
# @param Latency: 延迟。
# @type Latency: Integer
# @param RecvLatency: 接收延迟。
# @type RecvLatency: Integer
# @param PeerLatency: 对端延迟。
# @type PeerLatency: Integer
# @param PeerIdleTimeout: 对端空闲超时时间。
# @type PeerIdleTimeout: Integer
# @param Passphrase: 解密密钥。
# @type Passphrase: String
# @param PbKeyLen: 密钥长度。
# @type PbKeyLen: Integer
# @param SourceAddresses: SRT对端地址。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SourceAddresses: Array
attr_accessor :Mode, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :SourceAddresses
def initialize(mode=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, sourceaddresses=nil)
@Mode = mode
@StreamId = streamid
@Latency = latency
@RecvLatency = recvlatency
@PeerLatency = peerlatency
@PeerIdleTimeout = peeridletimeout
@Passphrase = passphrase
@PbKeyLen = pbkeylen
@SourceAddresses = sourceaddresses
end
def deserialize(params)
@Mode = params['Mode']
@StreamId = params['StreamId']
@Latency = params['Latency']
@RecvLatency = params['RecvLatency']
@PeerLatency = params['PeerLatency']
@PeerIdleTimeout = params['PeerIdleTimeout']
@Passphrase = params['Passphrase']
@PbKeyLen = params['PbKeyLen']
unless params['SourceAddresses'].nil?
@SourceAddresses = []
params['SourceAddresses'].each do |i|
srtsourceaddressresp_tmp = SRTSourceAddressResp.new
srtsourceaddressresp_tmp.deserialize(i)
@SourceAddresses << srtsourceaddressresp_tmp
end
end
end
end
# DescribeMediaMetaData请求参数结构体
class DescribeMediaMetaDataRequest < TencentCloud::Common::AbstractModel
# @param InputInfo: 需要获取元信息的文件输入信息。
# @type InputInfo: :class:`Tencentcloud::Mps.v20190612.models.MediaInputInfo`
attr_accessor :InputInfo
def initialize(inputinfo=nil)
@InputInfo = inputinfo
end
def deserialize(params)
unless params['InputInfo'].nil?
@InputInfo = MediaInputInfo.new
@InputInfo.deserialize(params['InputInfo'])
end
end
end
# DescribeMediaMetaData返回参数结构体
class DescribeMediaMetaDataResponse < TencentCloud::Common::AbstractModel
# @param MetaData: 媒体元信息。
# @type MetaData: :class:`Tencentcloud::Mps.v20190612.models.MediaMetaData`
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :MetaData, :RequestId
def initialize(metadata=nil, requestid=nil)
@MetaData = metadata
@RequestId = requestid
end
def deserialize(params)
unless params['MetaData'].nil?
@MetaData = MediaMetaData.new
@MetaData.deserialize(params['MetaData'])
end
@RequestId = params['RequestId']
end
end
# 查询输出的配置信息。
class DescribeOutput < TencentCloud::Common::AbstractModel
# @param OutputId: 输出Id。
# @type OutputId: String
# @param OutputName: 输出名称。
# @type OutputName: String
# @param OutputType: 输出类型。
# @type OutputType: String
# @param Description: 输出描述。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Description: String
# @param Protocol: 输出协议。
# @type Protocol: String
# @param OutputAddressList: 输出的出口地址信息列表。
# @type OutputAddressList: Array
# @param OutputRegion: 输出的地区。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OutputRegion: String
# @param SRTSettings: 输出的SRT配置信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SRTSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeOutputSRTSettings`
# @param RTPSettings: 输出的RTP配置信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type RTPSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeOutputRTPSettings`
# @param RTMPSettings: 输出的RTMP配置信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type RTMPSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeOutputRTMPSettings`
# @param RTMPPullSettings: 输出的RTMP拉流配置信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type RTMPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeOutputRTMPPullSettings`
# @param AllowIpList: CIDR白名单列表。
# 当Protocol为RTMP_PULL有效,为空代表不限制客户端IP。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AllowIpList: Array
# @param RTSPPullSettings: 输出的RTSP拉流配置信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type RTSPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeOutputRTSPPullSettings`
# @param HLSPullSettings: 输出的HLS拉流配置信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type HLSPullSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeOutputHLSPullSettings`
# @param MaxConcurrent: 最大拉流并发数,最大为4,默认4。
# @type MaxConcurrent: Integer
attr_accessor :OutputId, :OutputName, :OutputType, :Description, :Protocol, :OutputAddressList, :OutputRegion, :SRTSettings, :RTPSettings, :RTMPSettings, :RTMPPullSettings, :AllowIpList, :RTSPPullSettings, :HLSPullSettings, :MaxConcurrent
def initialize(outputid=nil, outputname=nil, outputtype=nil, description=nil, protocol=nil, outputaddresslist=nil, outputregion=nil, srtsettings=nil, rtpsettings=nil, rtmpsettings=nil, rtmppullsettings=nil, allowiplist=nil, rtsppullsettings=nil, hlspullsettings=nil, maxconcurrent=nil)
@OutputId = outputid
@OutputName = outputname
@OutputType = outputtype
@Description = description
@Protocol = protocol
@OutputAddressList = outputaddresslist
@OutputRegion = outputregion
@SRTSettings = srtsettings
@RTPSettings = rtpsettings
@RTMPSettings = rtmpsettings
@RTMPPullSettings = rtmppullsettings
@AllowIpList = allowiplist
@RTSPPullSettings = rtsppullsettings
@HLSPullSettings = hlspullsettings
@MaxConcurrent = maxconcurrent
end
def deserialize(params)
@OutputId = params['OutputId']
@OutputName = params['OutputName']
@OutputType = params['OutputType']
@Description = params['Description']
@Protocol = params['Protocol']
unless params['OutputAddressList'].nil?
@OutputAddressList = []
params['OutputAddressList'].each do |i|
outputaddress_tmp = OutputAddress.new
outputaddress_tmp.deserialize(i)
@OutputAddressList << outputaddress_tmp
end
end
@OutputRegion = params['OutputRegion']
unless params['SRTSettings'].nil?
@SRTSettings = DescribeOutputSRTSettings.new
@SRTSettings.deserialize(params['SRTSettings'])
end
unless params['RTPSettings'].nil?
@RTPSettings = DescribeOutputRTPSettings.new
@RTPSettings.deserialize(params['RTPSettings'])
end
unless params['RTMPSettings'].nil?
@RTMPSettings = DescribeOutputRTMPSettings.new
@RTMPSettings.deserialize(params['RTMPSettings'])
end
unless params['RTMPPullSettings'].nil?
@RTMPPullSettings = DescribeOutputRTMPPullSettings.new
@RTMPPullSettings.deserialize(params['RTMPPullSettings'])
end
@AllowIpList = params['AllowIpList']
unless params['RTSPPullSettings'].nil?
@RTSPPullSettings = DescribeOutputRTSPPullSettings.new
@RTSPPullSettings.deserialize(params['RTSPPullSettings'])
end
unless params['HLSPullSettings'].nil?
@HLSPullSettings = DescribeOutputHLSPullSettings.new
@HLSPullSettings.deserialize(params['HLSPullSettings'])
end
@MaxConcurrent = params['MaxConcurrent']
end
end
# 查询输出的HLS拉流URL信息。
class DescribeOutputHLSPullServerUrl < TencentCloud::Common::AbstractModel
# @param Url: HLS拉流地址的Url。
# @type Url: String
attr_accessor :Url
def initialize(url=nil)
@Url = url
end
def deserialize(params)
@Url = params['Url']
end
end
# 查询输出的HLS拉流配置信息。
class DescribeOutputHLSPullSettings < TencentCloud::Common::AbstractModel
# @param ServerUrls: HLS拉流地址列表。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ServerUrls: Array
attr_accessor :ServerUrls
def initialize(serverurls=nil)
@ServerUrls = serverurls
end
def deserialize(params)
unless params['ServerUrls'].nil?
@ServerUrls = []
params['ServerUrls'].each do |i|
describeoutputhlspullserverurl_tmp = DescribeOutputHLSPullServerUrl.new
describeoutputhlspullserverurl_tmp.deserialize(i)
@ServerUrls << describeoutputhlspullserverurl_tmp
end
end
end
end
# 查询输出的RTMP拉流URL信息。
class DescribeOutputRTMPPullServerUrl < TencentCloud::Common::AbstractModel
# @param TcUrl: RTMP拉流地址的tcUrl。
# @type TcUrl: String
# @param StreamKey: RTMP拉流地址的流key。
# @type StreamKey: String
attr_accessor :TcUrl, :StreamKey
def initialize(tcurl=nil, streamkey=nil)
@TcUrl = tcurl
@StreamKey = streamkey
end
def deserialize(params)
@TcUrl = params['TcUrl']
@StreamKey = params['StreamKey']
end
end
# 查询输出的RTMP拉流配置信息。
class DescribeOutputRTMPPullSettings < TencentCloud::Common::AbstractModel
# @param ServerUrls: 拉流地址列表。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ServerUrls: Array
attr_accessor :ServerUrls
def initialize(serverurls=nil)
@ServerUrls = serverurls
end
def deserialize(params)
unless params['ServerUrls'].nil?
@ServerUrls = []
params['ServerUrls'].each do |i|
describeoutputrtmppullserverurl_tmp = DescribeOutputRTMPPullServerUrl.new
describeoutputrtmppullserverurl_tmp.deserialize(i)
@ServerUrls << describeoutputrtmppullserverurl_tmp
end
end
end
end
# 查询输出的RTMP配置信息。
class DescribeOutputRTMPSettings < TencentCloud::Common::AbstractModel
# @param IdleTimeout: 空闲超时时间。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type IdleTimeout: Integer
# @param ChunkSize: Chunk大小。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ChunkSize: Integer
# @param Destinations: 转推RTMP的目标地址信息列表。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Destinations: Array
attr_accessor :IdleTimeout, :ChunkSize, :Destinations
def initialize(idletimeout=nil, chunksize=nil, destinations=nil)
@IdleTimeout = idletimeout
@ChunkSize = chunksize
@Destinations = destinations
end
def deserialize(params)
@IdleTimeout = params['IdleTimeout']
@ChunkSize = params['ChunkSize']
unless params['Destinations'].nil?
@Destinations = []
params['Destinations'].each do |i|
rtmpaddressdestination_tmp = RTMPAddressDestination.new
rtmpaddressdestination_tmp.deserialize(i)
@Destinations << rtmpaddressdestination_tmp
end
end
end
end
# 查询输出的RTP配置信息。
class DescribeOutputRTPSettings < TencentCloud::Common::AbstractModel
# @param Destinations: 转推RTP的目标地址信息列表。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Destinations: Array
# @param FEC: 是否FEC。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FEC: String
# @param IdleTimeout: 空闲超时时间。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type IdleTimeout: Integer
attr_accessor :Destinations, :FEC, :IdleTimeout
def initialize(destinations=nil, fec=nil, idletimeout=nil)
@Destinations = destinations
@FEC = fec
@IdleTimeout = idletimeout
end
def deserialize(params)
unless params['Destinations'].nil?
@Destinations = []
params['Destinations'].each do |i|
rtpaddressdestination_tmp = RTPAddressDestination.new
rtpaddressdestination_tmp.deserialize(i)
@Destinations << rtpaddressdestination_tmp
end
end
@FEC = params['FEC']
@IdleTimeout = params['IdleTimeout']
end
end
# 查询输出的RTSP拉流URL信息。
class DescribeOutputRTSPPullServerUrl < TencentCloud::Common::AbstractModel
# @param Url: RTSP拉流地址的Url。
# @type Url: String
attr_accessor :Url
def initialize(url=nil)
@Url = url
end
def deserialize(params)
@Url = params['Url']
end
end
# 查询输出的RTSP拉流配置信息。
class DescribeOutputRTSPPullSettings < TencentCloud::Common::AbstractModel
# @param ServerUrls: RTSP拉流地址列表。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ServerUrls: Array
attr_accessor :ServerUrls
def initialize(serverurls=nil)
@ServerUrls = serverurls
end
def deserialize(params)
unless params['ServerUrls'].nil?
@ServerUrls = []
params['ServerUrls'].each do |i|
describeoutputrtsppullserverurl_tmp = DescribeOutputRTSPPullServerUrl.new
describeoutputrtsppullserverurl_tmp.deserialize(i)
@ServerUrls << describeoutputrtsppullserverurl_tmp
end
end
end
end
# 查询输出的SRT配置信息。
class DescribeOutputSRTSettings < TencentCloud::Common::AbstractModel
# @param Destinations: 转推的目标的地址信息列表,SRT模式为CALLER时使用。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Destinations: Array
# @param StreamId: 流Id。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type StreamId: String
# @param Latency: 延迟。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Latency: Integer
# @param RecvLatency: 接收延迟。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type RecvLatency: Integer
# @param PeerLatency: 对端延迟。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PeerLatency: Integer
# @param PeerIdleTimeout: 对端空闲超时时间。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PeerIdleTimeout: Integer
# @param Passphrase: 加密密钥。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Passphrase: String
# @param PbKeyLen: 加密密钥长度。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type PbKeyLen: Integer
# @param Mode: SRT模式。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Mode: String
# @param SourceAddresses: 服务器监听地址,SRT模式为LISTENER时使用。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SourceAddresses: Array
attr_accessor :Destinations, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :Mode, :SourceAddresses
def initialize(destinations=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, mode=nil, sourceaddresses=nil)
@Destinations = destinations
@StreamId = streamid
@Latency = latency
@RecvLatency = recvlatency
@PeerLatency = peerlatency
@PeerIdleTimeout = peeridletimeout
@Passphrase = passphrase
@PbKeyLen = pbkeylen
@Mode = mode
@SourceAddresses = sourceaddresses
end
def deserialize(params)
unless params['Destinations'].nil?
@Destinations = []
params['Destinations'].each do |i|
srtaddressdestination_tmp = SRTAddressDestination.new
srtaddressdestination_tmp.deserialize(i)
@Destinations << srtaddressdestination_tmp
end
end
@StreamId = params['StreamId']
@Latency = params['Latency']
@RecvLatency = params['RecvLatency']
@PeerLatency = params['PeerLatency']
@PeerIdleTimeout = params['PeerIdleTimeout']
@Passphrase = params['Passphrase']
@PbKeyLen = params['PbKeyLen']
@Mode = params['Mode']
unless params['SourceAddresses'].nil?
@SourceAddresses = []
params['SourceAddresses'].each do |i|
outputsrtsourceaddressresp_tmp = OutputSRTSourceAddressResp.new
outputsrtsourceaddressresp_tmp.deserialize(i)
@SourceAddresses << outputsrtsourceaddressresp_tmp
end
end
end
end
# DescribePersonSamples请求参数结构体
class DescribePersonSamplesRequest < TencentCloud::Common::AbstractModel
# @param Type: 拉取的素材类型,可选值:
# UserDefine:用户自定义素材库;
# Default:系统默认素材库。
# 默认值:UserDefine,拉取用户自定义素材库素材。
# 说明:如果是拉取系统默认素材库,只能使用素材名字或者素材 ID + 素材名字的方式进行拉取,且人脸图片只返回一张。
# @type Type: String
# @param PersonIds: 素材 ID,数组长度限制:100。
# @type PersonIds: Array
# @param Names: 素材名称,数组长度限制:20。
# @type Names: Array
# @param Tags: 素材标签,数组长度限制:20。
# @type Tags: Array
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:100,最大值:100。
# @type Limit: Integer
attr_accessor :Type, :PersonIds, :Names, :Tags, :Offset, :Limit
def initialize(type=nil, personids=nil, names=nil, tags=nil, offset=nil, limit=nil)
@Type = type
@PersonIds = personids
@Names = names
@Tags = tags
@Offset = offset
@Limit = limit
end
def deserialize(params)
@Type = params['Type']
@PersonIds = params['PersonIds']
@Names = params['Names']
@Tags = params['Tags']
@Offset = params['Offset']
@Limit = params['Limit']
end
end
# DescribePersonSamples返回参数结构体
class DescribePersonSamplesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合条件的记录总数。
# @type TotalCount: Integer
# @param PersonSet: 素材信息。
# @type PersonSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :PersonSet, :RequestId
def initialize(totalcount=nil, personset=nil, requestid=nil)
@TotalCount = totalcount
@PersonSet = personset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['PersonSet'].nil?
@PersonSet = []
params['PersonSet'].each do |i|
aisampleperson_tmp = AiSamplePerson.new
aisampleperson_tmp.deserialize(i)
@PersonSet << aisampleperson_tmp
end
end
@RequestId = params['RequestId']
end
end
# 查询输入的RTMP配置信息。
class DescribeRTMPPullSourceAddress < TencentCloud::Common::AbstractModel
# @param TcUrl: RTMP源站的TcUrl地址。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TcUrl: String
# @param StreamKey: RTMP源站的StreamKey。
# RTMP源站地址拼接规则为:$TcUrl/$StreamKey。
# @type StreamKey: String
attr_accessor :TcUrl, :StreamKey
def initialize(tcurl=nil, streamkey=nil)
@TcUrl = tcurl
@StreamKey = streamkey
end
def deserialize(params)
@TcUrl = params['TcUrl']
@StreamKey = params['StreamKey']
end
end
# 查询输入的RTSP配置信息。
class DescribeRTSPPullSourceAddress < TencentCloud::Common::AbstractModel
# @param Url: RTSP源站的Url地址。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Url: String
attr_accessor :Url
def initialize(url=nil)
@Url = url
end
def deserialize(params)
@Url = params['Url']
end
end
# DescribeSampleSnapshotTemplates请求参数结构体
class DescribeSampleSnapshotTemplatesRequest < TencentCloud::Common::AbstractModel
# @param Definitions: 采样截图模板唯一标识过滤条件,数组长度限制:100。
# @type Definitions: Array
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:10,最大值:100。
# @type Limit: Integer
# @param Type: 模板类型过滤条件,可选值:
# Preset:系统预置模板;
# Custom:用户自定义模板。
# @type Type: String
attr_accessor :Definitions, :Offset, :Limit, :Type
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
@Definitions = definitions
@Offset = offset
@Limit = limit
@Type = type
end
def deserialize(params)
@Definitions = params['Definitions']
@Offset = params['Offset']
@Limit = params['Limit']
@Type = params['Type']
end
end
# DescribeSampleSnapshotTemplates返回参数结构体
class DescribeSampleSnapshotTemplatesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param SampleSnapshotTemplateSet: 采样截图模板详情列表。
# @type SampleSnapshotTemplateSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :SampleSnapshotTemplateSet, :RequestId
def initialize(totalcount=nil, samplesnapshottemplateset=nil, requestid=nil)
@TotalCount = totalcount
@SampleSnapshotTemplateSet = samplesnapshottemplateset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['SampleSnapshotTemplateSet'].nil?
@SampleSnapshotTemplateSet = []
params['SampleSnapshotTemplateSet'].each do |i|
samplesnapshottemplate_tmp = SampleSnapshotTemplate.new
samplesnapshottemplate_tmp.deserialize(i)
@SampleSnapshotTemplateSet << samplesnapshottemplate_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeSchedules请求参数结构体
class DescribeSchedulesRequest < TencentCloud::Common::AbstractModel
# @param ScheduleIds: 编排 ID 过滤条件,数组长度限制:100。
# @type ScheduleIds: Array
# @param TriggerType: 编排触发类型,可选值:
# CosFileUpload: 腾讯云 COS 文件上传触发
# AwsS3FileUpload:Aws S3 文件上传触发。
# 不填或者为空表示全部。
# @type TriggerType: String
# @param Status: 状态,取值范围:
# Enabled:已启用,
# Disabled:已禁用。
# 不填此参数,则不区编排状态。
# @type Status: String
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:10,最大值:100。
# @type Limit: Integer
attr_accessor :ScheduleIds, :TriggerType, :Status, :Offset, :Limit
def initialize(scheduleids=nil, triggertype=nil, status=nil, offset=nil, limit=nil)
@ScheduleIds = scheduleids
@TriggerType = triggertype
@Status = status
@Offset = offset
@Limit = limit
end
def deserialize(params)
@ScheduleIds = params['ScheduleIds']
@TriggerType = params['TriggerType']
@Status = params['Status']
@Offset = params['Offset']
@Limit = params['Limit']
end
end
# DescribeSchedules返回参数结构体
class DescribeSchedulesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param ScheduleInfoSet: 编排信息数组。
# @type ScheduleInfoSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :ScheduleInfoSet, :RequestId
def initialize(totalcount=nil, scheduleinfoset=nil, requestid=nil)
@TotalCount = totalcount
@ScheduleInfoSet = scheduleinfoset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['ScheduleInfoSet'].nil?
@ScheduleInfoSet = []
params['ScheduleInfoSet'].each do |i|
schedulesinfo_tmp = SchedulesInfo.new
schedulesinfo_tmp.deserialize(i)
@ScheduleInfoSet << schedulesinfo_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeSnapshotByTimeOffsetTemplates请求参数结构体
class DescribeSnapshotByTimeOffsetTemplatesRequest < TencentCloud::Common::AbstractModel
# @param Definitions: 指定时间点截图模板唯一标识过滤条件,数组长度限制:100。
# @type Definitions: Array
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:10,最大值:100。
# @type Limit: Integer
# @param Type: 模板类型过滤条件,可选值:
# Preset:系统预置模板;
# Custom:用户自定义模板。
# @type Type: String
attr_accessor :Definitions, :Offset, :Limit, :Type
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
@Definitions = definitions
@Offset = offset
@Limit = limit
@Type = type
end
def deserialize(params)
@Definitions = params['Definitions']
@Offset = params['Offset']
@Limit = params['Limit']
@Type = params['Type']
end
end
# DescribeSnapshotByTimeOffsetTemplates返回参数结构体
class DescribeSnapshotByTimeOffsetTemplatesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param SnapshotByTimeOffsetTemplateSet: 指定时间点截图模板详情列表。
# @type SnapshotByTimeOffsetTemplateSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :SnapshotByTimeOffsetTemplateSet, :RequestId
def initialize(totalcount=nil, snapshotbytimeoffsettemplateset=nil, requestid=nil)
@TotalCount = totalcount
@SnapshotByTimeOffsetTemplateSet = snapshotbytimeoffsettemplateset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['SnapshotByTimeOffsetTemplateSet'].nil?
@SnapshotByTimeOffsetTemplateSet = []
params['SnapshotByTimeOffsetTemplateSet'].each do |i|
snapshotbytimeoffsettemplate_tmp = SnapshotByTimeOffsetTemplate.new
snapshotbytimeoffsettemplate_tmp.deserialize(i)
@SnapshotByTimeOffsetTemplateSet << snapshotbytimeoffsettemplate_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeStreamLinkActivateState请求参数结构体
class DescribeStreamLinkActivateStateRequest < TencentCloud::Common::AbstractModel
def initialize()
end
def deserialize(params)
end
end
# DescribeStreamLinkActivateState返回参数结构体
class DescribeStreamLinkActivateStateResponse < TencentCloud::Common::AbstractModel
# @param Status: 用户已激活为0,否则为非0。
# @type Status: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Status, :RequestId
def initialize(status=nil, requestid=nil)
@Status = status
@RequestId = requestid
end
def deserialize(params)
@Status = params['Status']
@RequestId = params['RequestId']
end
end
# DescribeStreamLinkEventAttachedFlows请求参数结构体
class DescribeStreamLinkEventAttachedFlowsRequest < TencentCloud::Common::AbstractModel
# @param EventId: EventId。
# @type EventId: String
# @param PageNum: 当前页数,默认1。
# @type PageNum: Integer
# @param PageSize: 每页大小,默认10。
# @type PageSize: Integer
attr_accessor :EventId, :PageNum, :PageSize
def initialize(eventid=nil, pagenum=nil, pagesize=nil)
@EventId = eventid
@PageNum = pagenum
@PageSize = pagesize
end
def deserialize(params)
@EventId = params['EventId']
@PageNum = params['PageNum']
@PageSize = params['PageSize']
end
end
# DescribeStreamLinkEventAttachedFlows返回参数结构体
class DescribeStreamLinkEventAttachedFlowsResponse < TencentCloud::Common::AbstractModel
# @param Infos: 流的配置信息列表。
# @type Infos: Array
# @param TotalNum: 总数量。
# @type TotalNum: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Infos, :TotalNum, :RequestId
def initialize(infos=nil, totalnum=nil, requestid=nil)
@Infos = infos
@TotalNum = totalnum
@RequestId = requestid
end
def deserialize(params)
unless params['Infos'].nil?
@Infos = []
params['Infos'].each do |i|
describeflow_tmp = DescribeFlow.new
describeflow_tmp.deserialize(i)
@Infos << describeflow_tmp
end
end
@TotalNum = params['TotalNum']
@RequestId = params['RequestId']
end
end
# DescribeStreamLinkEvent请求参数结构体
class DescribeStreamLinkEventRequest < TencentCloud::Common::AbstractModel
# @param EventId: 媒体传输事件ID。
# @type EventId: String
attr_accessor :EventId
def initialize(eventid=nil)
@EventId = eventid
end
def deserialize(params)
@EventId = params['EventId']
end
end
# DescribeStreamLinkEvent返回参数结构体
class DescribeStreamLinkEventResponse < TencentCloud::Common::AbstractModel
# @param Info: 媒体传输事件的配置信息。
# @type Info: :class:`Tencentcloud::Mps.v20190612.models.DescribeEvent`
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Info, :RequestId
def initialize(info=nil, requestid=nil)
@Info = info
@RequestId = requestid
end
def deserialize(params)
unless params['Info'].nil?
@Info = DescribeEvent.new
@Info.deserialize(params['Info'])
end
@RequestId = params['RequestId']
end
end
# DescribeStreamLinkEvents请求参数结构体
class DescribeStreamLinkEventsRequest < TencentCloud::Common::AbstractModel
# @param PageNum: 当前页数,默认1。
# @type PageNum: Integer
# @param PageSize: 每页大小,默认10。
# @type PageSize: Integer
attr_accessor :PageNum, :PageSize
def initialize(pagenum=nil, pagesize=nil)
@PageNum = pagenum
@PageSize = pagesize
end
def deserialize(params)
@PageNum = params['PageNum']
@PageSize = params['PageSize']
end
end
# DescribeStreamLinkEvents返回参数结构体
class DescribeStreamLinkEventsResponse < TencentCloud::Common::AbstractModel
# @param Infos: 媒体传输事件的配置信息列表。
# @type Infos: Array
# @param PageNum: 当前页数。
# @type PageNum: Integer
# @param PageSize: 每页大小。
# @type PageSize: Integer
# @param TotalNum: 总数量。
# @type TotalNum: Integer
# @param TotalPage: 总页数。
# @type TotalPage: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Infos, :PageNum, :PageSize, :TotalNum, :TotalPage, :RequestId
def initialize(infos=nil, pagenum=nil, pagesize=nil, totalnum=nil, totalpage=nil, requestid=nil)
@Infos = infos
@PageNum = pagenum
@PageSize = pagesize
@TotalNum = totalnum
@TotalPage = totalpage
@RequestId = requestid
end
def deserialize(params)
unless params['Infos'].nil?
@Infos = []
params['Infos'].each do |i|
describeevent_tmp = DescribeEvent.new
describeevent_tmp.deserialize(i)
@Infos << describeevent_tmp
end
end
@PageNum = params['PageNum']
@PageSize = params['PageSize']
@TotalNum = params['TotalNum']
@TotalPage = params['TotalPage']
@RequestId = params['RequestId']
end
end
# DescribeStreamLinkFlowLogs请求参数结构体
class DescribeStreamLinkFlowLogsRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 传输流Id。
# @type FlowId: String
# @param StartTime: 统计的开始时间,默认为前一小时,最多支持查询近7天。
# UTC时间,如'2020-01-01T12:00:00Z'。
# @type StartTime: String
# @param EndTime: 统计的结束时间,默认为StartTime后一小时,最多支持查询24小时的数据。
# UTC时间,如'2020-01-01T12:00:00Z'。
# @type EndTime: String
# @param Type: 输入或输出类型,可选[input|output]。
# @type Type: Array
# @param Pipeline: 主通道或备通道,可选[0|1]。
# @type Pipeline: Array
# @param PageSize: 每页大小,默认100,范围为[1, 1000]。
# @type PageSize: Integer
# @param SortType: 按Timestamp升序或降序排序,默认降序,可选[desc|asc]。
# @type SortType: String
# @param PageNum: 页码,默认1,范围为[1, 1000]。
# @type PageNum: Integer
attr_accessor :FlowId, :StartTime, :EndTime, :Type, :Pipeline, :PageSize, :SortType, :PageNum
def initialize(flowid=nil, starttime=nil, endtime=nil, type=nil, pipeline=nil, pagesize=nil, sorttype=nil, pagenum=nil)
@FlowId = flowid
@StartTime = starttime
@EndTime = endtime
@Type = type
@Pipeline = pipeline
@PageSize = pagesize
@SortType = sorttype
@PageNum = pagenum
end
def deserialize(params)
@FlowId = params['FlowId']
@StartTime = params['StartTime']
@EndTime = params['EndTime']
@Type = params['Type']
@Pipeline = params['Pipeline']
@PageSize = params['PageSize']
@SortType = params['SortType']
@PageNum = params['PageNum']
end
end
# DescribeStreamLinkFlowLogs返回参数结构体
class DescribeStreamLinkFlowLogsResponse < TencentCloud::Common::AbstractModel
# @param Infos: 日志信息列表。
# @type Infos: Array
# @param PageNum: 当前页码。
# @type PageNum: Integer
# @param PageSize: 每页大小。
# @type PageSize: Integer
# @param TotalNum: 总数量。
# @type TotalNum: Integer
# @param TotalPage: 总页数。
# @type TotalPage: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Infos, :PageNum, :PageSize, :TotalNum, :TotalPage, :RequestId
def initialize(infos=nil, pagenum=nil, pagesize=nil, totalnum=nil, totalpage=nil, requestid=nil)
@Infos = infos
@PageNum = pagenum
@PageSize = pagesize
@TotalNum = totalnum
@TotalPage = totalpage
@RequestId = requestid
end
def deserialize(params)
unless params['Infos'].nil?
@Infos = []
params['Infos'].each do |i|
flowloginfo_tmp = FlowLogInfo.new
flowloginfo_tmp.deserialize(i)
@Infos << flowloginfo_tmp
end
end
@PageNum = params['PageNum']
@PageSize = params['PageSize']
@TotalNum = params['TotalNum']
@TotalPage = params['TotalPage']
@RequestId = params['RequestId']
end
end
# DescribeStreamLinkFlowMediaStatistics请求参数结构体
class DescribeStreamLinkFlowMediaStatisticsRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 传输流ID。
# @type FlowId: String
# @param Type: 输入或输出类型,可选[input|output]。
# @type Type: String
# @param InputOutputId: 输入或输出Id。
# @type InputOutputId: String
# @param Pipeline: 主通道或备通道,可选[0|1]。
# @type Pipeline: String
# @param Period: 查询间隔,可选[5s|1min|5min|15min]。
# @type Period: String
# @param StartTime: 统计的开始时间,默认为前一小时,最多支持查询近7天。
# UTC时间,如'2020-01-01T12:00:00Z'。
# @type StartTime: String
# @param EndTime: 统计的结束时间,默认为StartTime后一小时,最多支持查询24小时的数据。
# UTC时间,如'2020-01-01T12:00:00Z'。
# @type EndTime: String
attr_accessor :FlowId, :Type, :InputOutputId, :Pipeline, :Period, :StartTime, :EndTime
def initialize(flowid=nil, type=nil, inputoutputid=nil, pipeline=nil, period=nil, starttime=nil, endtime=nil)
@FlowId = flowid
@Type = type
@InputOutputId = inputoutputid
@Pipeline = pipeline
@Period = period
@StartTime = starttime
@EndTime = endtime
end
def deserialize(params)
@FlowId = params['FlowId']
@Type = params['Type']
@InputOutputId = params['InputOutputId']
@Pipeline = params['Pipeline']
@Period = params['Period']
@StartTime = params['StartTime']
@EndTime = params['EndTime']
end
end
# DescribeStreamLinkFlowMediaStatistics返回参数结构体
class DescribeStreamLinkFlowMediaStatisticsResponse < TencentCloud::Common::AbstractModel
# @param Infos: 传输流的媒体数据列表。
# @type Infos: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Infos, :RequestId
def initialize(infos=nil, requestid=nil)
@Infos = infos
@RequestId = requestid
end
def deserialize(params)
unless params['Infos'].nil?
@Infos = []
params['Infos'].each do |i|
flowmediainfo_tmp = FlowMediaInfo.new
flowmediainfo_tmp.deserialize(i)
@Infos << flowmediainfo_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeStreamLinkFlowRealtimeStatus请求参数结构体
class DescribeStreamLinkFlowRealtimeStatusRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 流ID。
# @type FlowId: String
# @param InputIds: 输入id数组,如果输入输出数组都为空,则代表全量查询。
# @type InputIds: Array
# @param OutputIds: 输出id数组,如果输入输出数组都为空,则代表全量查询。
# @type OutputIds: Array
attr_accessor :FlowId, :InputIds, :OutputIds
def initialize(flowid=nil, inputids=nil, outputids=nil)
@FlowId = flowid
@InputIds = inputids
@OutputIds = outputids
end
def deserialize(params)
@FlowId = params['FlowId']
@InputIds = params['InputIds']
@OutputIds = params['OutputIds']
end
end
# DescribeStreamLinkFlowRealtimeStatus返回参数结构体
class DescribeStreamLinkFlowRealtimeStatusResponse < TencentCloud::Common::AbstractModel
# @param Timestamp: 查询时间,单位s。
# @type Timestamp: Integer
# @param Datas: 实时数据信息列表。
# @type Datas: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Timestamp, :Datas, :RequestId
def initialize(timestamp=nil, datas=nil, requestid=nil)
@Timestamp = timestamp
@Datas = datas
@RequestId = requestid
end
def deserialize(params)
@Timestamp = params['Timestamp']
unless params['Datas'].nil?
@Datas = []
params['Datas'].each do |i|
flowrealtimestatusitem_tmp = FlowRealtimeStatusItem.new
flowrealtimestatusitem_tmp.deserialize(i)
@Datas << flowrealtimestatusitem_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeStreamLinkFlow请求参数结构体
class DescribeStreamLinkFlowRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 流Id。
# @type FlowId: String
attr_accessor :FlowId
def initialize(flowid=nil)
@FlowId = flowid
end
def deserialize(params)
@FlowId = params['FlowId']
end
end
# DescribeStreamLinkFlow返回参数结构体
class DescribeStreamLinkFlowResponse < TencentCloud::Common::AbstractModel
# @param Info: 流的配置信息。
# @type Info: :class:`Tencentcloud::Mps.v20190612.models.DescribeFlow`
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Info, :RequestId
def initialize(info=nil, requestid=nil)
@Info = info
@RequestId = requestid
end
def deserialize(params)
unless params['Info'].nil?
@Info = DescribeFlow.new
@Info.deserialize(params['Info'])
end
@RequestId = params['RequestId']
end
end
# DescribeStreamLinkFlowSRTStatistics请求参数结构体
class DescribeStreamLinkFlowSRTStatisticsRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 传输流ID。
# @type FlowId: String
# @param Type: 输入或输出类型,可选[input|output]。
# @type Type: String
# @param InputOutputId: 输入或输出Id。
# @type InputOutputId: String
# @param Pipeline: 主通道或备通道,可选[0|1]。
# @type Pipeline: String
# @param StartTime: 统计的开始时间,默认为前一小时,最多支持查询近7天。
# UTC时间,如'2020-01-01T12:00:00Z'。
# @type StartTime: String
# @param EndTime: 统计的结束时间,默认为StartTime后一小时,最多支持查询24小时的数据。
# UTC时间,如'2020-01-01T12:00:00Z'。
# @type EndTime: String
# @param Period: 查询间隔,可选[5s|1min|5min|15min]。
# @type Period: String
attr_accessor :FlowId, :Type, :InputOutputId, :Pipeline, :StartTime, :EndTime, :Period
def initialize(flowid=nil, type=nil, inputoutputid=nil, pipeline=nil, starttime=nil, endtime=nil, period=nil)
@FlowId = flowid
@Type = type
@InputOutputId = inputoutputid
@Pipeline = pipeline
@StartTime = starttime
@EndTime = endtime
@Period = period
end
def deserialize(params)
@FlowId = params['FlowId']
@Type = params['Type']
@InputOutputId = params['InputOutputId']
@Pipeline = params['Pipeline']
@StartTime = params['StartTime']
@EndTime = params['EndTime']
@Period = params['Period']
end
end
# DescribeStreamLinkFlowSRTStatistics返回参数结构体
class DescribeStreamLinkFlowSRTStatisticsResponse < TencentCloud::Common::AbstractModel
# @param Infos: 传输流的SRT质量数据列表。
# @type Infos: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Infos, :RequestId
def initialize(infos=nil, requestid=nil)
@Infos = infos
@RequestId = requestid
end
def deserialize(params)
unless params['Infos'].nil?
@Infos = []
params['Infos'].each do |i|
flowsrtinfo_tmp = FlowSRTInfo.new
flowsrtinfo_tmp.deserialize(i)
@Infos << flowsrtinfo_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeStreamLinkFlowStatistics请求参数结构体
class DescribeStreamLinkFlowStatisticsRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 传输流ID。
# @type FlowId: String
# @param Type: 输入或输出类型,可选[input|output]。
# @type Type: String
# @param InputOutputId: 输入或输出Id。
# @type InputOutputId: String
# @param Pipeline: 主通道或备通道,可选[0|1]。
# @type Pipeline: String
# @param Period: 查询间隔,可选[5s|1min|5min|15min]。
# @type Period: String
# @param StartTime: 统计的开始时间,默认为前一小时,最多支持查询近7天。
# UTC时间,如'2020-01-01T12:00:00Z'。
# @type StartTime: String
# @param EndTime: 统计的结束时间,默认为StartTime后一小时,最多支持查询24小时的数据。
# UTC时间,如'2020-01-01T12:00:00Z'。
# @type EndTime: String
attr_accessor :FlowId, :Type, :InputOutputId, :Pipeline, :Period, :StartTime, :EndTime
def initialize(flowid=nil, type=nil, inputoutputid=nil, pipeline=nil, period=nil, starttime=nil, endtime=nil)
@FlowId = flowid
@Type = type
@InputOutputId = inputoutputid
@Pipeline = pipeline
@Period = period
@StartTime = starttime
@EndTime = endtime
end
def deserialize(params)
@FlowId = params['FlowId']
@Type = params['Type']
@InputOutputId = params['InputOutputId']
@Pipeline = params['Pipeline']
@Period = params['Period']
@StartTime = params['StartTime']
@EndTime = params['EndTime']
end
end
# DescribeStreamLinkFlowStatistics返回参数结构体
class DescribeStreamLinkFlowStatisticsResponse < TencentCloud::Common::AbstractModel
# @param Infos: 传输流的媒体数据列表。
# @type Infos: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Infos, :RequestId
def initialize(infos=nil, requestid=nil)
@Infos = infos
@RequestId = requestid
end
def deserialize(params)
unless params['Infos'].nil?
@Infos = []
params['Infos'].each do |i|
flowstatisticsarray_tmp = FlowStatisticsArray.new
flowstatisticsarray_tmp.deserialize(i)
@Infos << flowstatisticsarray_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeStreamLinkFlows请求参数结构体
class DescribeStreamLinkFlowsRequest < TencentCloud::Common::AbstractModel
# @param PageNum: 当前页数,默认1。
# @type PageNum: Integer
# @param PageSize: 每页大小,默认10。
# @type PageSize: Integer
attr_accessor :PageNum, :PageSize
def initialize(pagenum=nil, pagesize=nil)
@PageNum = pagenum
@PageSize = pagesize
end
def deserialize(params)
@PageNum = params['PageNum']
@PageSize = params['PageSize']
end
end
# DescribeStreamLinkFlows返回参数结构体
class DescribeStreamLinkFlowsResponse < TencentCloud::Common::AbstractModel
# @param Infos: 流的配置信息列表。
# @type Infos: Array
# @param PageNum: 当前页数。
# @type PageNum: Integer
# @param PageSize: 每页大小。
# @type PageSize: Integer
# @param TotalNum: 总数量。
# @type TotalNum: Integer
# @param TotalPage: 总页数。
# @type TotalPage: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Infos, :PageNum, :PageSize, :TotalNum, :TotalPage, :RequestId
def initialize(infos=nil, pagenum=nil, pagesize=nil, totalnum=nil, totalpage=nil, requestid=nil)
@Infos = infos
@PageNum = pagenum
@PageSize = pagesize
@TotalNum = totalnum
@TotalPage = totalpage
@RequestId = requestid
end
def deserialize(params)
unless params['Infos'].nil?
@Infos = []
params['Infos'].each do |i|
describeflow_tmp = DescribeFlow.new
describeflow_tmp.deserialize(i)
@Infos << describeflow_tmp
end
end
@PageNum = params['PageNum']
@PageSize = params['PageSize']
@TotalNum = params['TotalNum']
@TotalPage = params['TotalPage']
@RequestId = params['RequestId']
end
end
# DescribeStreamLinkRegions请求参数结构体
class DescribeStreamLinkRegionsRequest < TencentCloud::Common::AbstractModel
def initialize()
end
def deserialize(params)
end
end
# DescribeStreamLinkRegions返回参数结构体
class DescribeStreamLinkRegionsResponse < TencentCloud::Common::AbstractModel
# @param Info: 媒体传输地区信息。
# @type Info: :class:`Tencentcloud::Mps.v20190612.models.StreamLinkRegionInfo`
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Info, :RequestId
def initialize(info=nil, requestid=nil)
@Info = info
@RequestId = requestid
end
def deserialize(params)
unless params['Info'].nil?
@Info = StreamLinkRegionInfo.new
@Info.deserialize(params['Info'])
end
@RequestId = params['RequestId']
end
end
# DescribeTaskDetail请求参数结构体
class DescribeTaskDetailRequest < TencentCloud::Common::AbstractModel
# @param TaskId: 视频处理任务的任务 ID。
# @type TaskId: String
attr_accessor :TaskId
def initialize(taskid=nil)
@TaskId = taskid
end
def deserialize(params)
@TaskId = params['TaskId']
end
end
# DescribeTaskDetail返回参数结构体
class DescribeTaskDetailResponse < TencentCloud::Common::AbstractModel
# @param TaskType: 任务类型,目前取值有:
# WorkflowTask:视频工作流处理任务。
# EditMediaTask:视频编辑任务。
# LiveStreamProcessTask:直播流处理任务。
# ScheduleTask:编排处理任务。
# @type TaskType: String
# @param Status: 任务状态,取值:
# WAITING:等待中;
# PROCESSING:处理中;
# FINISH:已完成。
# @type Status: String
# @param CreateTime: 任务的创建时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param BeginProcessTime: 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type BeginProcessTime: String
# @param FinishTime: 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type FinishTime: String
# @param EditMediaTask: 视频编辑任务信息,仅当 TaskType 为 EditMediaTask,该字段有值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type EditMediaTask: :class:`Tencentcloud::Mps.v20190612.models.EditMediaTask`
# @param WorkflowTask: 视频处理任务信息,仅当 TaskType 为 WorkflowTask,该字段有值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type WorkflowTask: :class:`Tencentcloud::Mps.v20190612.models.WorkflowTask`
# @param LiveStreamProcessTask: 直播流处理任务信息,仅当 TaskType 为 LiveStreamProcessTask,该字段有值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type LiveStreamProcessTask: :class:`Tencentcloud::Mps.v20190612.models.LiveStreamProcessTask`
# @param TaskNotifyConfig: 任务的事件通知信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.TaskNotifyConfig`
# @param TasksPriority: 任务流的优先级,取值范围为 [-10, 10]。
# @type TasksPriority: Integer
# @param SessionId: 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长50个字符,不带或者带空字符串表示不做去重。
# @type SessionId: String
# @param SessionContext: 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长1000个字符。
# @type SessionContext: String
# @param ExtInfo: 扩展信息字段,仅用于特定场景。
# @type ExtInfo: String
# @param ScheduleTask: 编排处理任务信息,仅当 TaskType 为 ScheduleTask,该字段有值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ScheduleTask: :class:`Tencentcloud::Mps.v20190612.models.ScheduleTask`
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TaskType, :Status, :CreateTime, :BeginProcessTime, :FinishTime, :EditMediaTask, :WorkflowTask, :LiveStreamProcessTask, :TaskNotifyConfig, :TasksPriority, :SessionId, :SessionContext, :ExtInfo, :ScheduleTask, :RequestId
def initialize(tasktype=nil, status=nil, createtime=nil, beginprocesstime=nil, finishtime=nil, editmediatask=nil, workflowtask=nil, livestreamprocesstask=nil, tasknotifyconfig=nil, taskspriority=nil, sessionid=nil, sessioncontext=nil, extinfo=nil, scheduletask=nil, requestid=nil)
@TaskType = tasktype
@Status = status
@CreateTime = createtime
@BeginProcessTime = beginprocesstime
@FinishTime = finishtime
@EditMediaTask = editmediatask
@WorkflowTask = workflowtask
@LiveStreamProcessTask = livestreamprocesstask
@TaskNotifyConfig = tasknotifyconfig
@TasksPriority = taskspriority
@SessionId = sessionid
@SessionContext = sessioncontext
@ExtInfo = extinfo
@ScheduleTask = scheduletask
@RequestId = requestid
end
def deserialize(params)
@TaskType = params['TaskType']
@Status = params['Status']
@CreateTime = params['CreateTime']
@BeginProcessTime = params['BeginProcessTime']
@FinishTime = params['FinishTime']
unless params['EditMediaTask'].nil?
@EditMediaTask = EditMediaTask.new
@EditMediaTask.deserialize(params['EditMediaTask'])
end
unless params['WorkflowTask'].nil?
@WorkflowTask = WorkflowTask.new
@WorkflowTask.deserialize(params['WorkflowTask'])
end
unless params['LiveStreamProcessTask'].nil?
@LiveStreamProcessTask = LiveStreamProcessTask.new
@LiveStreamProcessTask.deserialize(params['LiveStreamProcessTask'])
end
unless params['TaskNotifyConfig'].nil?
@TaskNotifyConfig = TaskNotifyConfig.new
@TaskNotifyConfig.deserialize(params['TaskNotifyConfig'])
end
@TasksPriority = params['TasksPriority']
@SessionId = params['SessionId']
@SessionContext = params['SessionContext']
@ExtInfo = params['ExtInfo']
unless params['ScheduleTask'].nil?
@ScheduleTask = ScheduleTask.new
@ScheduleTask.deserialize(params['ScheduleTask'])
end
@RequestId = params['RequestId']
end
end
# DescribeTasks请求参数结构体
class DescribeTasksRequest < TencentCloud::Common::AbstractModel
# @param Status: 过滤条件:任务状态,可选值:WAITING(等待中)、PROCESSING(处理中)、FINISH(已完成)。
# @type Status: String
# @param Limit: 返回记录条数,默认值:10,最大值:100。
# @type Limit: Integer
# @param ScrollToken: 翻页标识,分批拉取时使用:当单次请求无法拉取所有数据,接口将会返回 ScrollToken,下一次请求携带该 Token,将会从下一条记录开始获取。
# @type ScrollToken: String
attr_accessor :Status, :Limit, :ScrollToken
def initialize(status=nil, limit=nil, scrolltoken=nil)
@Status = status
@Limit = limit
@ScrollToken = scrolltoken
end
def deserialize(params)
@Status = params['Status']
@Limit = params['Limit']
@ScrollToken = params['ScrollToken']
end
end
# DescribeTasks返回参数结构体
class DescribeTasksResponse < TencentCloud::Common::AbstractModel
# @param TaskSet: 任务概要列表。
# @type TaskSet: Array
# @param ScrollToken: 翻页标识,当请求未返回所有数据,该字段表示下一条记录的 ID。当该字段为空字符串,说明已无更多数据。
# @type ScrollToken: String
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TaskSet, :ScrollToken, :TotalCount, :RequestId
def initialize(taskset=nil, scrolltoken=nil, totalcount=nil, requestid=nil)
@TaskSet = taskset
@ScrollToken = scrolltoken
@TotalCount = totalcount
@RequestId = requestid
end
def deserialize(params)
unless params['TaskSet'].nil?
@TaskSet = []
params['TaskSet'].each do |i|
tasksimpleinfo_tmp = TaskSimpleInfo.new
tasksimpleinfo_tmp.deserialize(i)
@TaskSet << tasksimpleinfo_tmp
end
end
@ScrollToken = params['ScrollToken']
@TotalCount = params['TotalCount']
@RequestId = params['RequestId']
end
end
# DescribeTranscodeTemplates请求参数结构体
class DescribeTranscodeTemplatesRequest < TencentCloud::Common::AbstractModel
# @param Definitions: 转码模板唯一标识过滤条件,数组长度限制:100。
# @type Definitions: Array
# @param Type: 模板类型过滤条件,可选值:
# Preset:系统预置模板;
# Custom:用户自定义模板。
# @type Type: String
# @param ContainerType: 封装格式过滤条件,可选值:
# Video:视频格式,可以同时包含视频流和音频流的封装格式板;
# PureAudio:纯音频格式,只能包含音频流的封装格式。
# @type ContainerType: String
# @param TEHDType: (建议使用TranscodeType代替)极速高清过滤条件,用于过滤普通转码或极速高清转码模板,可选值:
# Common:普通转码模板;
# TEHD:极速高清模板。
# @type TEHDType: String
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:10,最大值:100。
# @type Limit: Integer
# @param TranscodeType: 模板类型(替换旧版本 TEHDType),可选值:
# Common:普通转码模板;
# TEHD:视频极速高清,老的类型(建议使用 TEHD-100) 。
# TEHD-100:视频极速高清
# TEHD-200:音频极速高清
# Enhance:音视频增强模板。
# 默认空,不限制类型。
# @type TranscodeType: String
attr_accessor :Definitions, :Type, :ContainerType, :TEHDType, :Offset, :Limit, :TranscodeType
def initialize(definitions=nil, type=nil, containertype=nil, tehdtype=nil, offset=nil, limit=nil, transcodetype=nil)
@Definitions = definitions
@Type = type
@ContainerType = containertype
@TEHDType = tehdtype
@Offset = offset
@Limit = limit
@TranscodeType = transcodetype
end
def deserialize(params)
@Definitions = params['Definitions']
@Type = params['Type']
@ContainerType = params['ContainerType']
@TEHDType = params['TEHDType']
@Offset = params['Offset']
@Limit = params['Limit']
@TranscodeType = params['TranscodeType']
end
end
# DescribeTranscodeTemplates返回参数结构体
class DescribeTranscodeTemplatesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param TranscodeTemplateSet: 转码模板详情列表。
# @type TranscodeTemplateSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :TranscodeTemplateSet, :RequestId
def initialize(totalcount=nil, transcodetemplateset=nil, requestid=nil)
@TotalCount = totalcount
@TranscodeTemplateSet = transcodetemplateset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['TranscodeTemplateSet'].nil?
@TranscodeTemplateSet = []
params['TranscodeTemplateSet'].each do |i|
transcodetemplate_tmp = TranscodeTemplate.new
transcodetemplate_tmp.deserialize(i)
@TranscodeTemplateSet << transcodetemplate_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeWatermarkTemplates请求参数结构体
class DescribeWatermarkTemplatesRequest < TencentCloud::Common::AbstractModel
# @param Definitions: 水印模板唯一标识过滤条件,数组长度限制:100。
# @type Definitions: Array
# @param Type: 水印类型过滤条件,可选值:
# image:图片水印;
# text:文字水印。
# @type Type: String
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数
# 默认值:10;
# 最大值:100。
# @type Limit: Integer
attr_accessor :Definitions, :Type, :Offset, :Limit
def initialize(definitions=nil, type=nil, offset=nil, limit=nil)
@Definitions = definitions
@Type = type
@Offset = offset
@Limit = limit
end
def deserialize(params)
@Definitions = params['Definitions']
@Type = params['Type']
@Offset = params['Offset']
@Limit = params['Limit']
end
end
# DescribeWatermarkTemplates返回参数结构体
class DescribeWatermarkTemplatesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param WatermarkTemplateSet: 水印模板详情列表。
# @type WatermarkTemplateSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :WatermarkTemplateSet, :RequestId
def initialize(totalcount=nil, watermarktemplateset=nil, requestid=nil)
@TotalCount = totalcount
@WatermarkTemplateSet = watermarktemplateset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['WatermarkTemplateSet'].nil?
@WatermarkTemplateSet = []
params['WatermarkTemplateSet'].each do |i|
watermarktemplate_tmp = WatermarkTemplate.new
watermarktemplate_tmp.deserialize(i)
@WatermarkTemplateSet << watermarktemplate_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeWordSamples请求参数结构体
class DescribeWordSamplesRequest < TencentCloud::Common::AbstractModel
# @param Keywords: 关键词过滤条件,数组长度限制:100 个词。
# @type Keywords: Array
# @param Usages: 关键词应用场景过滤条件,可选值:
# 1. Recognition.Ocr:通过光学字符识别技术,进行内容识别;
# 2. Recognition.Asr:通过音频识别技术,进行内容识别;
# 3. Review.Ocr:通过光学字符识别技术,进行不适宜内容的识别;
# 4. Review.Asr:通过音频识别技术,进行不适宜内容的识别;
# 可合并简写为:
# 5. Recognition:通过光学字符识别技术、音频识别技术,进行内容识别,等价于 1+2;
# 6. Review:通过光学字符识别技术、音频识别技术,进行不适宜内容的识别,等价于 3+4;
# 可多选,元素间关系为 or,即关键词的应用场景包含该字段集合中任意元素的记录,均符合该条件。
# @type Usages: Array
# @param Tags: 标签过滤条件,数组长度限制:20 个词。
# @type Tags: Array
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:100,最大值:100。
# @type Limit: Integer
attr_accessor :Keywords, :Usages, :Tags, :Offset, :Limit
def initialize(keywords=nil, usages=nil, tags=nil, offset=nil, limit=nil)
@Keywords = keywords
@Usages = usages
@Tags = tags
@Offset = offset
@Limit = limit
end
def deserialize(params)
@Keywords = params['Keywords']
@Usages = params['Usages']
@Tags = params['Tags']
@Offset = params['Offset']
@Limit = params['Limit']
end
end
# DescribeWordSamples返回参数结构体
class DescribeWordSamplesResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合条件的记录总数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TotalCount: Integer
# @param WordSet: 关键词信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type WordSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :WordSet, :RequestId
def initialize(totalcount=nil, wordset=nil, requestid=nil)
@TotalCount = totalcount
@WordSet = wordset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['WordSet'].nil?
@WordSet = []
params['WordSet'].each do |i|
aisampleword_tmp = AiSampleWord.new
aisampleword_tmp.deserialize(i)
@WordSet << aisampleword_tmp
end
end
@RequestId = params['RequestId']
end
end
# DescribeWorkflows请求参数结构体
class DescribeWorkflowsRequest < TencentCloud::Common::AbstractModel
# @param WorkflowIds: 工作流 ID 过滤条件,数组长度限制:100。
# @type WorkflowIds: Array
# @param Status: 工作流状态,取值范围:
# Enabled:已启用,
# Disabled:已禁用。
# 不填此参数,则不区分工作流状态。
# @type Status: String
# @param Offset: 分页偏移量,默认值:0。
# @type Offset: Integer
# @param Limit: 返回记录条数,默认值:10,最大值:100。
# @type Limit: Integer
attr_accessor :WorkflowIds, :Status, :Offset, :Limit
def initialize(workflowids=nil, status=nil, offset=nil, limit=nil)
@WorkflowIds = workflowids
@Status = status
@Offset = offset
@Limit = limit
end
def deserialize(params)
@WorkflowIds = params['WorkflowIds']
@Status = params['Status']
@Offset = params['Offset']
@Limit = params['Limit']
end
end
# DescribeWorkflows返回参数结构体
class DescribeWorkflowsResponse < TencentCloud::Common::AbstractModel
# @param TotalCount: 符合过滤条件的记录总数。
# @type TotalCount: Integer
# @param WorkflowInfoSet: 工作流信息数组。
# @type WorkflowInfoSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TotalCount, :WorkflowInfoSet, :RequestId
def initialize(totalcount=nil, workflowinfoset=nil, requestid=nil)
@TotalCount = totalcount
@WorkflowInfoSet = workflowinfoset
@RequestId = requestid
end
def deserialize(params)
@TotalCount = params['TotalCount']
unless params['WorkflowInfoSet'].nil?
@WorkflowInfoSet = []
params['WorkflowInfoSet'].each do |i|
workflowinfo_tmp = WorkflowInfo.new
workflowinfo_tmp.deserialize(i)
@WorkflowInfoSet << workflowinfo_tmp
end
end
@RequestId = params['RequestId']
end
end
# 诊断结果项。
class DiagnoseResult < TencentCloud::Common::AbstractModel
# @param Category: 诊断出的异常类别。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Category: String
# @param Type: 诊断出的具体异常类型。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Type: String
# @param Timestamp: 诊断出异常开始的PTS时间戳。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Timestamp: Float
# @param Description: 诊断出的异常描述。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Description: String
# @param DateTime: 诊断到异常的北京时间,采用 ISO 日期格式。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type DateTime: String
# @param SeverityLevel: 诊断出的异常级别。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SeverityLevel: String
attr_accessor :Category, :Type, :Timestamp, :Description, :DateTime, :SeverityLevel
def initialize(category=nil, type=nil, timestamp=nil, description=nil, datetime=nil, severitylevel=nil)
@Category = category
@Type = type
@Timestamp = timestamp
@Description = description
@DateTime = datetime
@SeverityLevel = severitylevel
end
def deserialize(params)
@Category = params['Category']
@Type = params['Type']
@Timestamp = params['Timestamp']
@Description = params['Description']
@DateTime = params['DateTime']
@SeverityLevel = params['SeverityLevel']
end
end
# DisableSchedule请求参数结构体
class DisableScheduleRequest < TencentCloud::Common::AbstractModel
# @param ScheduleId: 编排唯一表示。
# @type ScheduleId: Integer
attr_accessor :ScheduleId
def initialize(scheduleid=nil)
@ScheduleId = scheduleid
end
def deserialize(params)
@ScheduleId = params['ScheduleId']
end
end
# DisableSchedule返回参数结构体
class DisableScheduleResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# DisableWorkflow请求参数结构体
class DisableWorkflowRequest < TencentCloud::Common::AbstractModel
# @param WorkflowId: 工作流 ID。
# @type WorkflowId: Integer
attr_accessor :WorkflowId
def initialize(workflowid=nil)
@WorkflowId = workflowid
end
def deserialize(params)
@WorkflowId = params['WorkflowId']
end
end
# DisableWorkflow返回参数结构体
class DisableWorkflowResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# 编辑点播视频文件信息
class EditMediaFileInfo < TencentCloud::Common::AbstractModel
# @param InputInfo: 视频的输入信息。
# @type InputInfo: :class:`Tencentcloud::Mps.v20190612.models.MediaInputInfo`
# @param StartTimeOffset: 视频剪辑的起始时间偏移,单位:秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 视频剪辑的结束时间偏移,单位:秒。
# @type EndTimeOffset: Float
attr_accessor :InputInfo, :StartTimeOffset, :EndTimeOffset
def initialize(inputinfo=nil, starttimeoffset=nil, endtimeoffset=nil)
@InputInfo = inputinfo
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
end
def deserialize(params)
unless params['InputInfo'].nil?
@InputInfo = MediaInputInfo.new
@InputInfo.deserialize(params['InputInfo'])
end
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
end
end
# 编辑视频的结果文件输出配置。
class EditMediaOutputConfig < TencentCloud::Common::AbstractModel
# @param Container: 封装格式,可选值:mp4、hls、mov、flv、avi。默认是 mp4。
# @type Container: String
# @param Type: 剪辑模式,可选值 normal、fast。默认是精确剪辑 normal
# @type Type: String
attr_accessor :Container, :Type
def initialize(container=nil, type=nil)
@Container = container
@Type = type
end
def deserialize(params)
@Container = params['Container']
@Type = params['Type']
end
end
# EditMedia请求参数结构体
class EditMediaRequest < TencentCloud::Common::AbstractModel
# @param FileInfos: 输入的视频文件信息。
# @type FileInfos: Array
# @param OutputStorage: 媒体处理输出文件的目标存储。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputObjectPath: 媒体处理输出文件的目标路径。
# @type OutputObjectPath: String
# @param OutputConfig: 编辑后生成的文件配置。
# @type OutputConfig: :class:`Tencentcloud::Mps.v20190612.models.EditMediaOutputConfig`
# @param TaskNotifyConfig: 任务的事件通知信息,不填代表不获取事件通知。
# @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.TaskNotifyConfig`
# @param TasksPriority: 任务优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。
# @type TasksPriority: Integer
# @param SessionId: 用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
# @type SessionId: String
# @param SessionContext: 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
# @type SessionContext: String
attr_accessor :FileInfos, :OutputStorage, :OutputObjectPath, :OutputConfig, :TaskNotifyConfig, :TasksPriority, :SessionId, :SessionContext
def initialize(fileinfos=nil, outputstorage=nil, outputobjectpath=nil, outputconfig=nil, tasknotifyconfig=nil, taskspriority=nil, sessionid=nil, sessioncontext=nil)
@FileInfos = fileinfos
@OutputStorage = outputstorage
@OutputObjectPath = outputobjectpath
@OutputConfig = outputconfig
@TaskNotifyConfig = tasknotifyconfig
@TasksPriority = taskspriority
@SessionId = sessionid
@SessionContext = sessioncontext
end
def deserialize(params)
unless params['FileInfos'].nil?
@FileInfos = []
params['FileInfos'].each do |i|
editmediafileinfo_tmp = EditMediaFileInfo.new
editmediafileinfo_tmp.deserialize(i)
@FileInfos << editmediafileinfo_tmp
end
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputObjectPath = params['OutputObjectPath']
unless params['OutputConfig'].nil?
@OutputConfig = EditMediaOutputConfig.new
@OutputConfig.deserialize(params['OutputConfig'])
end
unless params['TaskNotifyConfig'].nil?
@TaskNotifyConfig = TaskNotifyConfig.new
@TaskNotifyConfig.deserialize(params['TaskNotifyConfig'])
end
@TasksPriority = params['TasksPriority']
@SessionId = params['SessionId']
@SessionContext = params['SessionContext']
end
end
# EditMedia返回参数结构体
class EditMediaResponse < TencentCloud::Common::AbstractModel
# @param TaskId: 编辑视频的任务 ID,可以通过该 ID 查询编辑任务的状态。
# @type TaskId: String
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TaskId, :RequestId
def initialize(taskid=nil, requestid=nil)
@TaskId = taskid
@RequestId = requestid
end
def deserialize(params)
@TaskId = params['TaskId']
@RequestId = params['RequestId']
end
end
# 编辑视频任务信息
class EditMediaTask < TencentCloud::Common::AbstractModel
# @param TaskId: 任务 ID。
# @type TaskId: String
# @param Status: 任务状态,取值:
# PROCESSING:处理中;
# FINISH:已完成。
# @type Status: String
# @param ErrCode: 错误码
# 0:成功;
# 其他值:失败。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 视频编辑任务的输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.EditMediaTaskInput`
# @param Output: 视频编辑任务的输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.EditMediaTaskOutput`
attr_accessor :TaskId, :Status, :ErrCode, :Message, :Input, :Output
def initialize(taskid=nil, status=nil, errcode=nil, message=nil, input=nil, output=nil)
@TaskId = taskid
@Status = status
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@TaskId = params['TaskId']
@Status = params['Status']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = EditMediaTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = EditMediaTaskOutput.new
@Output.deserialize(params['Output'])
end
end
end
# 编辑视频任务的输入。
class EditMediaTaskInput < TencentCloud::Common::AbstractModel
# @param FileInfoSet: 输入的视频文件信息。
# @type FileInfoSet: Array
attr_accessor :FileInfoSet
def initialize(fileinfoset=nil)
@FileInfoSet = fileinfoset
end
def deserialize(params)
unless params['FileInfoSet'].nil?
@FileInfoSet = []
params['FileInfoSet'].each do |i|
editmediafileinfo_tmp = EditMediaFileInfo.new
editmediafileinfo_tmp.deserialize(i)
@FileInfoSet << editmediafileinfo_tmp
end
end
end
end
# 编辑视频任务的输出
class EditMediaTaskOutput < TencentCloud::Common::AbstractModel
# @param OutputStorage: 编辑后文件的目标存储。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param Path: 编辑后的视频文件路径。
# @type Path: String
# @param MetaData: 编辑后的视频文件元信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type MetaData: :class:`Tencentcloud::Mps.v20190612.models.MediaMetaData`
attr_accessor :OutputStorage, :Path, :MetaData
def initialize(outputstorage=nil, path=nil, metadata=nil)
@OutputStorage = outputstorage
@Path = path
@MetaData = metadata
end
def deserialize(params)
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@Path = params['Path']
unless params['MetaData'].nil?
@MetaData = MediaMetaData.new
@MetaData.deserialize(params['MetaData'])
end
end
end
# EnableSchedule请求参数结构体
class EnableScheduleRequest < TencentCloud::Common::AbstractModel
# @param ScheduleId: 编排唯一标识。
# @type ScheduleId: Integer
attr_accessor :ScheduleId
def initialize(scheduleid=nil)
@ScheduleId = scheduleid
end
def deserialize(params)
@ScheduleId = params['ScheduleId']
end
end
# EnableSchedule返回参数结构体
class EnableScheduleResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# EnableWorkflow请求参数结构体
class EnableWorkflowRequest < TencentCloud::Common::AbstractModel
# @param WorkflowId: 工作流 ID。
# @type WorkflowId: Integer
attr_accessor :WorkflowId
def initialize(workflowid=nil)
@WorkflowId = workflowid
end
def deserialize(params)
@WorkflowId = params['WorkflowId']
end
end
# EnableWorkflow返回参数结构体
class EnableWorkflowResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# 音视频增强配置
class EnhanceConfig < TencentCloud::Common::AbstractModel
# @param VideoEnhance: 视频增强配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type VideoEnhance: :class:`Tencentcloud::Mps.v20190612.models.VideoEnhanceConfig`
attr_accessor :VideoEnhance
def initialize(videoenhance=nil)
@VideoEnhance = videoenhance
end
def deserialize(params)
unless params['VideoEnhance'].nil?
@VideoEnhance = VideoEnhanceConfig.new
@VideoEnhance.deserialize(params['VideoEnhance'])
end
end
end
# ExecuteFunction请求参数结构体
class ExecuteFunctionRequest < TencentCloud::Common::AbstractModel
# @param FunctionName: 调用后端接口名称。
# @type FunctionName: String
# @param FunctionArg: 接口参数,具体参数格式调用时与后端协调。
# @type FunctionArg: String
attr_accessor :FunctionName, :FunctionArg
def initialize(functionname=nil, functionarg=nil)
@FunctionName = functionname
@FunctionArg = functionarg
end
def deserialize(params)
@FunctionName = params['FunctionName']
@FunctionArg = params['FunctionArg']
end
end
# ExecuteFunction返回参数结构体
class ExecuteFunctionResponse < TencentCloud::Common::AbstractModel
# @param Result: 处理结果打包后的字符串,具体与后台一同协调。
# @type Result: String
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Result, :RequestId
def initialize(result=nil, requestid=nil)
@Result = result
@RequestId = requestid
end
def deserialize(params)
@Result = params['Result']
@RequestId = params['RequestId']
end
end
# 表情识别参数配置
class ExpressionConfigInfo < TencentCloud::Common::AbstractModel
# @param Switch: 表情识别任务开关,可选值:
# ON:开启;
# OFF:关闭。
# @type Switch: String
attr_accessor :Switch
def initialize(switch=nil)
@Switch = switch
end
def deserialize(params)
@Switch = params['Switch']
end
end
# 人脸识别任务控制参数
class FaceConfigureInfo < TencentCloud::Common::AbstractModel
# @param Switch: 人脸识别任务开关,可选值:
# ON:开启智能人脸识别任务;
# OFF:关闭智能人脸识别任务。
# @type Switch: String
# @param Score: 人脸识别过滤分数,当识别结果达到该分数以上,返回识别结果。默认 95 分。取值范围:0 - 100。
# @type Score: Float
# @param DefaultLibraryLabelSet: 默认人物过滤标签,指定需要返回的默认人物的标签。如果未填或者为空,则全部默认人物结果都返回。标签可选值:
# entertainment:娱乐明星;
# sport:体育明星;
# politician:敏感人物。
# @type DefaultLibraryLabelSet: Array
# @param UserDefineLibraryLabelSet: 用户自定义人物过滤标签,指定需要返回的用户自定义人物的标签。如果未填或者为空,则全部自定义人物结果都返回。
# 标签个数最多 100 个,每个标签长度最多 16 个字符。
# @type UserDefineLibraryLabelSet: Array
# @param FaceLibrary: 人物库选择,可选值:
# Default:使用默认人物库;
# UserDefine:使用用户自定义人物库。
# All:同时使用默认人物库和用户自定义人物库。
# 默认值:All,使用系统默认人物库及用户自定义人物库。
# @type FaceLibrary: String
attr_accessor :Switch, :Score, :DefaultLibraryLabelSet, :UserDefineLibraryLabelSet, :FaceLibrary
def initialize(switch=nil, score=nil, defaultlibrarylabelset=nil, userdefinelibrarylabelset=nil, facelibrary=nil)
@Switch = switch
@Score = score
@DefaultLibraryLabelSet = defaultlibrarylabelset
@UserDefineLibraryLabelSet = userdefinelibrarylabelset
@FaceLibrary = facelibrary
end
def deserialize(params)
@Switch = params['Switch']
@Score = params['Score']
@DefaultLibraryLabelSet = params['DefaultLibraryLabelSet']
@UserDefineLibraryLabelSet = params['UserDefineLibraryLabelSet']
@FaceLibrary = params['FaceLibrary']
end
end
# 人脸识别任务控制参数
class FaceConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 人脸识别任务开关,可选值:
# ON:开启智能人脸识别任务;
# OFF:关闭智能人脸识别任务。
# @type Switch: String
# @param Score: 人脸识别过滤分数,当识别结果达到该分数以上,返回识别结果。取值范围:0-100。
# @type Score: Float
# @param DefaultLibraryLabelSet: 默认人物过滤标签,指定需要返回的默认人物的标签。如果未填或者为空,则全部默认人物结果都返回。标签可选值:
# entertainment:娱乐明星;
# sport:体育明星;
# politician:敏感人物。
# @type DefaultLibraryLabelSet: Array
# @param UserDefineLibraryLabelSet: 用户自定义人物过滤标签,指定需要返回的用户自定义人物的标签。如果未填或者为空,则全部自定义人物结果都返回。
# 标签个数最多 100 个,每个标签长度最多 16 个字符。
# @type UserDefineLibraryLabelSet: Array
# @param FaceLibrary: 人物库选择,可选值:
# Default:使用默认人物库;
# UserDefine:使用用户自定义人物库。
# All:同时使用默认人物库和用户自定义人物库。
# @type FaceLibrary: String
attr_accessor :Switch, :Score, :DefaultLibraryLabelSet, :UserDefineLibraryLabelSet, :FaceLibrary
def initialize(switch=nil, score=nil, defaultlibrarylabelset=nil, userdefinelibrarylabelset=nil, facelibrary=nil)
@Switch = switch
@Score = score
@DefaultLibraryLabelSet = defaultlibrarylabelset
@UserDefineLibraryLabelSet = userdefinelibrarylabelset
@FaceLibrary = facelibrary
end
def deserialize(params)
@Switch = params['Switch']
@Score = params['Score']
@DefaultLibraryLabelSet = params['DefaultLibraryLabelSet']
@UserDefineLibraryLabelSet = params['UserDefineLibraryLabelSet']
@FaceLibrary = params['FaceLibrary']
end
end
# 人脸增强配置
class FaceEnhanceConfig < TencentCloud::Common::AbstractModel
# @param Switch: 能力配置开关,可选值:
# ON:开启;
# OFF:关闭。
# 默认值:ON。
# @type Switch: String
# @param Intensity: 强度,取值范围:0.0~1.0。
# 默认:0.0。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Intensity: Float
attr_accessor :Switch, :Intensity
def initialize(switch=nil, intensity=nil)
@Switch = switch
@Intensity = intensity
end
def deserialize(params)
@Switch = params['Switch']
@Intensity = params['Intensity']
end
end
# 流的音频数据。
class FlowAudio < TencentCloud::Common::AbstractModel
# @param Fps: 帧率。
# @type Fps: Integer
# @param Rate: 码率,单位是bps。
# @type Rate: Integer
# @param Pid: 音频Pid。
# @type Pid: Integer
attr_accessor :Fps, :Rate, :Pid
def initialize(fps=nil, rate=nil, pid=nil)
@Fps = fps
@Rate = rate
@Pid = pid
end
def deserialize(params)
@Fps = params['Fps']
@Rate = params['Rate']
@Pid = params['Pid']
end
end
# 传输流日志信息。
class FlowLogInfo < TencentCloud::Common::AbstractModel
# @param Timestamp: 时间戳,单位为秒。
# @type Timestamp: Integer
# @param Type: 输入输出类型(input/output)。
# @type Type: String
# @param InputOutputId: 输入或输出Id。
# @type InputOutputId: String
# @param Protocol: 协议。
# @type Protocol: String
# @param EventCode: 事件代码。
# @type EventCode: String
# @param EventMessage: 事件信息。
# @type EventMessage: String
# @param RemoteIp: 对端IP。
# @type RemoteIp: String
# @param RemotePort: 对端端口。
# @type RemotePort: String
# @param Pipeline: 主备通道,0为主通道,1为备通道。
# @type Pipeline: String
# @param InputOutputName: 输入或输出的名称。
# @type InputOutputName: String
attr_accessor :Timestamp, :Type, :InputOutputId, :Protocol, :EventCode, :EventMessage, :RemoteIp, :RemotePort, :Pipeline, :InputOutputName
def initialize(timestamp=nil, type=nil, inputoutputid=nil, protocol=nil, eventcode=nil, eventmessage=nil, remoteip=nil, remoteport=nil, pipeline=nil, inputoutputname=nil)
@Timestamp = timestamp
@Type = type
@InputOutputId = inputoutputid
@Protocol = protocol
@EventCode = eventcode
@EventMessage = eventmessage
@RemoteIp = remoteip
@RemotePort = remoteport
@Pipeline = pipeline
@InputOutputName = inputoutputname
end
def deserialize(params)
@Timestamp = params['Timestamp']
@Type = params['Type']
@InputOutputId = params['InputOutputId']
@Protocol = params['Protocol']
@EventCode = params['EventCode']
@EventMessage = params['EventMessage']
@RemoteIp = params['RemoteIp']
@RemotePort = params['RemotePort']
@Pipeline = params['Pipeline']
@InputOutputName = params['InputOutputName']
end
end
# 传输流媒体的音频数据。
class FlowMediaAudio < TencentCloud::Common::AbstractModel
# @param Fps: 帧率。
# @type Fps: Integer
# @param Rate: 码率,单位是bps。
# @type Rate: Integer
# @param Pid: 音频Pid。
# @type Pid: Integer
# @param SessionId: 标志同一次推流。
# @type SessionId: String
attr_accessor :Fps, :Rate, :Pid, :SessionId
def initialize(fps=nil, rate=nil, pid=nil, sessionid=nil)
@Fps = fps
@Rate = rate
@Pid = pid
@SessionId = sessionid
end
def deserialize(params)
@Fps = params['Fps']
@Rate = params['Rate']
@Pid = params['Pid']
@SessionId = params['SessionId']
end
end
# 传输流的媒体数据。
class FlowMediaInfo < TencentCloud::Common::AbstractModel
# @param Timestamp: 时间戳,单位是秒。
# @type Timestamp: Integer
# @param Network: 总带宽。
# @type Network: Integer
# @param Video: 传输流的视频数据。
# @type Video: Array
# @param Audio: 传输流的音频数据。
# @type Audio: Array
# @param SessionId: 标志同一次推流。
# @type SessionId: String
# @param ClientIp: 客户端IP。
# @type ClientIp: String
attr_accessor :Timestamp, :Network, :Video, :Audio, :SessionId, :ClientIp
def initialize(timestamp=nil, network=nil, video=nil, audio=nil, sessionid=nil, clientip=nil)
@Timestamp = timestamp
@Network = network
@Video = video
@Audio = audio
@SessionId = sessionid
@ClientIp = clientip
end
def deserialize(params)
@Timestamp = params['Timestamp']
@Network = params['Network']
unless params['Video'].nil?
@Video = []
params['Video'].each do |i|
flowmediavideo_tmp = FlowMediaVideo.new
flowmediavideo_tmp.deserialize(i)
@Video << flowmediavideo_tmp
end
end
unless params['Audio'].nil?
@Audio = []
params['Audio'].each do |i|
flowmediaaudio_tmp = FlowMediaAudio.new
flowmediaaudio_tmp.deserialize(i)
@Audio << flowmediaaudio_tmp
end
end
@SessionId = params['SessionId']
@ClientIp = params['ClientIp']
end
end
# 传输流媒体的视频数据。
class FlowMediaVideo < TencentCloud::Common::AbstractModel
# @param Fps: 帧率。
# @type Fps: Integer
# @param Rate: 码率,单位是bps。
# @type Rate: Integer
# @param Pid: 视频Pid。
# @type Pid: Integer
# @param SessionId: 标志同一次推流。
# @type SessionId: String
attr_accessor :Fps, :Rate, :Pid, :SessionId
def initialize(fps=nil, rate=nil, pid=nil, sessionid=nil)
@Fps = fps
@Rate = rate
@Pid = pid
@SessionId = sessionid
end
def deserialize(params)
@Fps = params['Fps']
@Rate = params['Rate']
@Pid = params['Pid']
@SessionId = params['SessionId']
end
end
# 实时流状态查询的通用状态信息。
class FlowRealtimeStatusCommon < TencentCloud::Common::AbstractModel
# @param State: 当前连接状态,Connected|Waiting|Idle。
# @type State: String
# @param Mode: 连接模式,Listener|Caller。
# @type Mode: String
# @param ConnectedTime: 已连接时长,单位为ms。
# @type ConnectedTime: Integer
# @param Bitrate: 实时码率,单位为bps。
# @type Bitrate: Integer
# @param Reconnections: 重试次数。
# @type Reconnections: Integer
attr_accessor :State, :Mode, :ConnectedTime, :Bitrate, :Reconnections
def initialize(state=nil, mode=nil, connectedtime=nil, bitrate=nil, reconnections=nil)
@State = state
@Mode = mode
@ConnectedTime = connectedtime
@Bitrate = bitrate
@Reconnections = reconnections
end
def deserialize(params)
@State = params['State']
@Mode = params['Mode']
@ConnectedTime = params['ConnectedTime']
@Bitrate = params['Bitrate']
@Reconnections = params['Reconnections']
end
end
# 流状态实时查询接口的流状态信息
class FlowRealtimeStatusItem < TencentCloud::Common::AbstractModel
# @param Type: 类型,Input|Output。
# @type Type: String
# @param InputId: 输入Id,如果Type为Input,此字段不为空。
# @type InputId: String
# @param OutputId: 输出Id,如果Type为Output,此字段不为空。
# @type OutputId: String
# @param FlowId: 流Id。
# @type FlowId: String
# @param Protocol: 协议, SRT | RTMP。
# @type Protocol: String
# @param CommonStatus: 共同状态信息。
# @type CommonStatus: :class:`Tencentcloud::Mps.v20190612.models.FlowRealtimeStatusCommon`
# @param SRTStatus: 如果是SRT协议则有此字段。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SRTStatus: :class:`Tencentcloud::Mps.v20190612.models.FlowRealtimeStatusSRT`
# @param RTMPStatus: 如果是RTMP协议则有此字段。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type RTMPStatus: :class:`Tencentcloud::Mps.v20190612.models.FlowRealtimeStatusRTMP`
# @param ConnectServerIP: 服务器IP。
# @type ConnectServerIP: String
# @param RTPStatus: 如果是RTP协议则有此字段。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type RTPStatus: :class:`Tencentcloud::Mps.v20190612.models.FlowRealtimeStatusRTP`
attr_accessor :Type, :InputId, :OutputId, :FlowId, :Protocol, :CommonStatus, :SRTStatus, :RTMPStatus, :ConnectServerIP, :RTPStatus
def initialize(type=nil, inputid=nil, outputid=nil, flowid=nil, protocol=nil, commonstatus=nil, srtstatus=nil, rtmpstatus=nil, connectserverip=nil, rtpstatus=nil)
@Type = type
@InputId = inputid
@OutputId = outputid
@FlowId = flowid
@Protocol = protocol
@CommonStatus = commonstatus
@SRTStatus = srtstatus
@RTMPStatus = rtmpstatus
@ConnectServerIP = connectserverip
@RTPStatus = rtpstatus
end
def deserialize(params)
@Type = params['Type']
@InputId = params['InputId']
@OutputId = params['OutputId']
@FlowId = params['FlowId']
@Protocol = params['Protocol']
unless params['CommonStatus'].nil?
@CommonStatus = FlowRealtimeStatusCommon.new
@CommonStatus.deserialize(params['CommonStatus'])
end
unless params['SRTStatus'].nil?
@SRTStatus = FlowRealtimeStatusSRT.new
@SRTStatus.deserialize(params['SRTStatus'])
end
unless params['RTMPStatus'].nil?
@RTMPStatus = FlowRealtimeStatusRTMP.new
@RTMPStatus.deserialize(params['RTMPStatus'])
end
@ConnectServerIP = params['ConnectServerIP']
unless params['RTPStatus'].nil?
@RTPStatus = FlowRealtimeStatusRTP.new
@RTPStatus.deserialize(params['RTPStatus'])
end
end
end
# 流状态实时查询接口的RTMP信息。
class FlowRealtimeStatusRTMP < TencentCloud::Common::AbstractModel
# @param VideoFPS: 视频帧率。
# @type VideoFPS: Integer
# @param AudioFPS: 音频帧率。
# @type AudioFPS: Integer
attr_accessor :VideoFPS, :AudioFPS
def initialize(videofps=nil, audiofps=nil)
@VideoFPS = videofps
@AudioFPS = audiofps
end
def deserialize(params)
@VideoFPS = params['VideoFPS']
@AudioFPS = params['AudioFPS']
end
end
# 流状态实时查询接口的RTP流状态信息
class FlowRealtimeStatusRTP < TencentCloud::Common::AbstractModel
# @param Packets: 传输的包个数
# @type Packets: Integer
attr_accessor :Packets
def initialize(packets=nil)
@Packets = packets
end
def deserialize(params)
@Packets = params['Packets']
end
end
# 流状态实时查询接口的SRT信息。
class FlowRealtimeStatusSRT < TencentCloud::Common::AbstractModel
# @param Latency: 延迟,单位为ms。
# @type Latency: Integer
# @param RTT: RTT,单位为ms。
# @type RTT: Integer
# @param Packets: 实时发包数或者收包数。
# @type Packets: Integer
# @param PacketLossRate: 丢包率。
# @type PacketLossRate: Float
# @param RetransmitRate: 重传率。
# @type RetransmitRate: Float
# @param DroppedPackets: 实时丢包数。
# @type DroppedPackets: Integer
# @param Encryption: 是否加密,On|Off。
# @type Encryption: String
attr_accessor :Latency, :RTT, :Packets, :PacketLossRate, :RetransmitRate, :DroppedPackets, :Encryption
def initialize(latency=nil, rtt=nil, packets=nil, packetlossrate=nil, retransmitrate=nil, droppedpackets=nil, encryption=nil)
@Latency = latency
@RTT = rtt
@Packets = packets
@PacketLossRate = packetlossrate
@RetransmitRate = retransmitrate
@DroppedPackets = droppedpackets
@Encryption = encryption
end
def deserialize(params)
@Latency = params['Latency']
@RTT = params['RTT']
@Packets = params['Packets']
@PacketLossRate = params['PacketLossRate']
@RetransmitRate = params['RetransmitRate']
@DroppedPackets = params['DroppedPackets']
@Encryption = params['Encryption']
end
end
# 传输流的SRT质量数据。
class FlowSRTInfo < TencentCloud::Common::AbstractModel
# @param Timestamp: 时间戳,单位是秒。
# @type Timestamp: Integer
# @param SendPacketLossRate: 发送丢包率。
# @type SendPacketLossRate: Integer
# @param SendRetransmissionRate: 发送重传率。
# @type SendRetransmissionRate: Integer
# @param RecvPacketLossRate: 接收丢包率。
# @type RecvPacketLossRate: Integer
# @param RecvRetransmissionRate: 接收重传率。
# @type RecvRetransmissionRate: Integer
# @param RTT: 与对端的RTT时延。
# @type RTT: Integer
# @param SessionId: 标志同一次推流。
# @type SessionId: String
# @param SendPacketDropNumber: 发送弃包数。
# @type SendPacketDropNumber: Integer
# @param RecvPacketDropNumber: 接收弃包数。
# @type RecvPacketDropNumber: Integer
attr_accessor :Timestamp, :SendPacketLossRate, :SendRetransmissionRate, :RecvPacketLossRate, :RecvRetransmissionRate, :RTT, :SessionId, :SendPacketDropNumber, :RecvPacketDropNumber
def initialize(timestamp=nil, sendpacketlossrate=nil, sendretransmissionrate=nil, recvpacketlossrate=nil, recvretransmissionrate=nil, rtt=nil, sessionid=nil, sendpacketdropnumber=nil, recvpacketdropnumber=nil)
@Timestamp = timestamp
@SendPacketLossRate = sendpacketlossrate
@SendRetransmissionRate = sendretransmissionrate
@RecvPacketLossRate = recvpacketlossrate
@RecvRetransmissionRate = recvretransmissionrate
@RTT = rtt
@SessionId = sessionid
@SendPacketDropNumber = sendpacketdropnumber
@RecvPacketDropNumber = recvpacketdropnumber
end
def deserialize(params)
@Timestamp = params['Timestamp']
@SendPacketLossRate = params['SendPacketLossRate']
@SendRetransmissionRate = params['SendRetransmissionRate']
@RecvPacketLossRate = params['RecvPacketLossRate']
@RecvRetransmissionRate = params['RecvRetransmissionRate']
@RTT = params['RTT']
@SessionId = params['SessionId']
@SendPacketDropNumber = params['SendPacketDropNumber']
@RecvPacketDropNumber = params['RecvPacketDropNumber']
end
end
# 流的统计数据。
class FlowStatistics < TencentCloud::Common::AbstractModel
# @param SessionId: 会话Id。
# @type SessionId: String
# @param ClientIp: 对端IP。
# @type ClientIp: String
# @param Network: 总带宽。
# @type Network: Integer
# @param Video: 视频数据。
# @type Video: Array
# @param Audio: 音频数据。
# @type Audio: Array
attr_accessor :SessionId, :ClientIp, :Network, :Video, :Audio
def initialize(sessionid=nil, clientip=nil, network=nil, video=nil, audio=nil)
@SessionId = sessionid
@ClientIp = clientip
@Network = network
@Video = video
@Audio = audio
end
def deserialize(params)
@SessionId = params['SessionId']
@ClientIp = params['ClientIp']
@Network = params['Network']
unless params['Video'].nil?
@Video = []
params['Video'].each do |i|
flowvideo_tmp = FlowVideo.new
flowvideo_tmp.deserialize(i)
@Video << flowvideo_tmp
end
end
unless params['Audio'].nil?
@Audio = []
params['Audio'].each do |i|
flowaudio_tmp = FlowAudio.new
flowaudio_tmp.deserialize(i)
@Audio << flowaudio_tmp
end
end
end
end
# 流的统计数据列表。
class FlowStatisticsArray < TencentCloud::Common::AbstractModel
# @param Timestamp: 时间戳。
# @type Timestamp: Integer
# @param FlowStatistics: 每个会话的统计数据。
# @type FlowStatistics: Array
attr_accessor :Timestamp, :FlowStatistics
def initialize(timestamp=nil, flowstatistics=nil)
@Timestamp = timestamp
@FlowStatistics = flowstatistics
end
def deserialize(params)
@Timestamp = params['Timestamp']
unless params['FlowStatistics'].nil?
@FlowStatistics = []
params['FlowStatistics'].each do |i|
flowstatistics_tmp = FlowStatistics.new
flowstatistics_tmp.deserialize(i)
@FlowStatistics << flowstatistics_tmp
end
end
end
end
# 流的视频数据。
class FlowVideo < TencentCloud::Common::AbstractModel
# @param Fps: 帧率。
# @type Fps: Integer
# @param Rate: 码率,单位是bps。
# @type Rate: Integer
# @param Pid: 音频Pid。
# @type Pid: Integer
attr_accessor :Fps, :Rate, :Pid
def initialize(fps=nil, rate=nil, pid=nil)
@Fps = fps
@Rate = rate
@Pid = pid
end
def deserialize(params)
@Fps = params['Fps']
@Rate = params['Rate']
@Pid = params['Pid']
end
end
# 插帧帧率配置
class FrameRateConfig < TencentCloud::Common::AbstractModel
# @param Switch: 能力配置开关,可选值:
# ON:开启;
# OFF:关闭。
# 默认值:ON。
# @type Switch: String
# @param Fps: 帧率,取值范围:[0, 100],单位:Hz。
# 默认值 0。
# 注意:对于转码,该参数会覆盖 VideoTemplate 内部的 Fps。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Fps: Integer
attr_accessor :Switch, :Fps
def initialize(switch=nil, fps=nil)
@Switch = switch
@Fps = fps
end
def deserialize(params)
@Switch = params['Switch']
@Fps = params['Fps']
end
end
# 智能按帧标签任务控制参数
class FrameTagConfigureInfo < TencentCloud::Common::AbstractModel
# @param Switch: 智能按帧标签任务开关,可选值:
# ON:开启智能按帧标签任务;
# OFF:关闭智能按帧标签任务。
# @type Switch: String
attr_accessor :Switch
def initialize(switch=nil)
@Switch = switch
end
def deserialize(params)
@Switch = params['Switch']
end
end
# 智能按帧标签任务控制参数
class FrameTagConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 智能按帧标签任务开关,可选值:
# ON:开启智能按帧标签任务;
# OFF:关闭智能按帧标签任务。
# @type Switch: String
attr_accessor :Switch
def initialize(switch=nil)
@Switch = switch
end
def deserialize(params)
@Switch = params['Switch']
end
end
# 创建的输入HLS拉流源站配置信息。
class HLSPullSourceAddress < TencentCloud::Common::AbstractModel
# @param Url: HLS源站的Url地址。
# @type Url: String
attr_accessor :Url
def initialize(url=nil)
@Url = url
end
def deserialize(params)
@Url = params['Url']
end
end
# HDR配置
class HdrConfig < TencentCloud::Common::AbstractModel
# @param Switch: 能力配置开关,可选值:
# ON:开启;
# OFF:关闭。
# 默认值:ON。
# @type Switch: String
# @param Type: 类型,可选值:
# HDR10
# HLG
# 默认值:HDR10。
# 注意:video的编码方式需要为libx265;
# 注意:视频编码位深为10。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Type: String
attr_accessor :Switch, :Type
def initialize(switch=nil, type=nil)
@Switch = switch
@Type = type
end
def deserialize(params)
@Switch = params['Switch']
@Type = params['Type']
end
end
# 片头片尾参数
class HeadTailParameter < TencentCloud::Common::AbstractModel
# @param HeadSet: 片头列表。
# @type HeadSet: Array
# @param TailSet: 片尾列表。
# @type TailSet: Array
attr_accessor :HeadSet, :TailSet
def initialize(headset=nil, tailset=nil)
@HeadSet = headset
@TailSet = tailset
end
def deserialize(params)
unless params['HeadSet'].nil?
@HeadSet = []
params['HeadSet'].each do |i|
mediainputinfo_tmp = MediaInputInfo.new
mediainputinfo_tmp.deserialize(i)
@HeadSet << mediainputinfo_tmp
end
end
unless params['TailSet'].nil?
@TailSet = []
params['TailSet'].each do |i|
mediainputinfo_tmp = MediaInputInfo.new
mediainputinfo_tmp.deserialize(i)
@TailSet << mediainputinfo_tmp
end
end
end
end
# 智能精彩集锦片段列表。
class HighlightSegmentItem < TencentCloud::Common::AbstractModel
# @param Confidence: 置信度。
# @type Confidence: Float
# @param StartTimeOffset: 片段起始时间偏移。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 片段结束时间偏移。
# @type EndTimeOffset: Float
attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset
def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil)
@Confidence = confidence
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
end
def deserialize(params)
@Confidence = params['Confidence']
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
end
end
# 综合增强配置
class ImageQualityEnhanceConfig < TencentCloud::Common::AbstractModel
# @param Switch: 能力配置开关,可选值:
# ON:开启;
# OFF:关闭。
# 默认值:ON。
# @type Switch: String
# @param Type: 类型,可选值:
# weak
# normal
# strong
# 默认值:weak。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Type: String
attr_accessor :Switch, :Type
def initialize(switch=nil, type=nil)
@Switch = switch
@Type = type
end
def deserialize(params)
@Switch = params['Switch']
@Type = params['Type']
end
end
# 对视频截雪碧图任务输入参数类型
class ImageSpriteTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 雪碧图模板 ID。
# @type Definition: Integer
# @param OutputStorage: 截取雪碧图后文件的目标存储,不填则继承上层的 OutputStorage 值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputObjectPath: 截取雪碧图后,雪碧图图片文件的输出路径,可以为相对路径或者绝对路径。如果不填,则默认为相对路径:`{inputName}_imageSprite_{definition}_{number}.{format}`。
# @type OutputObjectPath: String
# @param WebVttObjectName: 截取雪碧图后,Web VTT 文件的输出路径,只能为相对路径。如果不填,则默认为相对路径:`{inputName}_imageSprite_{definition}.{format}`。
# @type WebVttObjectName: String
# @param ObjectNumberFormat: 截取雪碧图后输出路径中的`{number}`变量的规则。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ObjectNumberFormat: :class:`Tencentcloud::Mps.v20190612.models.NumberFormat`
attr_accessor :Definition, :OutputStorage, :OutputObjectPath, :WebVttObjectName, :ObjectNumberFormat
def initialize(definition=nil, outputstorage=nil, outputobjectpath=nil, webvttobjectname=nil, objectnumberformat=nil)
@Definition = definition
@OutputStorage = outputstorage
@OutputObjectPath = outputobjectpath
@WebVttObjectName = webvttobjectname
@ObjectNumberFormat = objectnumberformat
end
def deserialize(params)
@Definition = params['Definition']
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputObjectPath = params['OutputObjectPath']
@WebVttObjectName = params['WebVttObjectName']
unless params['ObjectNumberFormat'].nil?
@ObjectNumberFormat = NumberFormat.new
@ObjectNumberFormat.deserialize(params['ObjectNumberFormat'])
end
end
end
# 雪碧图模板详情
class ImageSpriteTemplate < TencentCloud::Common::AbstractModel
# @param Definition: 雪碧图模板唯一标识。
# @type Definition: Integer
# @param Type: 模板类型,取值范围:
# Preset:系统预置模板;
# Custom:用户自定义模板。
# @type Type: String
# @param Name: 雪碧图模板名称。
# @type Name: String
# @param Width: 雪碧图中小图的宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 雪碧图中小图的高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# @type ResolutionAdaptive: String
# @param SampleType: 采样类型。
# @type SampleType: String
# @param SampleInterval: 采样间隔。
# @type SampleInterval: Integer
# @param RowCount: 雪碧图中小图的行数。
# @type RowCount: Integer
# @param ColumnCount: 雪碧图中小图的列数。
# @type ColumnCount: Integer
# @param CreateTime: 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type UpdateTime: String
# @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
# stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;
# black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。
# 默认值:black 。
# @type FillType: String
# @param Comment: 模板描述信息。
# @type Comment: String
# @param Format: 图片格式。
# @type Format: String
attr_accessor :Definition, :Type, :Name, :Width, :Height, :ResolutionAdaptive, :SampleType, :SampleInterval, :RowCount, :ColumnCount, :CreateTime, :UpdateTime, :FillType, :Comment, :Format
def initialize(definition=nil, type=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, sampletype=nil, sampleinterval=nil, rowcount=nil, columncount=nil, createtime=nil, updatetime=nil, filltype=nil, comment=nil, format=nil)
@Definition = definition
@Type = type
@Name = name
@Width = width
@Height = height
@ResolutionAdaptive = resolutionadaptive
@SampleType = sampletype
@SampleInterval = sampleinterval
@RowCount = rowcount
@ColumnCount = columncount
@CreateTime = createtime
@UpdateTime = updatetime
@FillType = filltype
@Comment = comment
@Format = format
end
def deserialize(params)
@Definition = params['Definition']
@Type = params['Type']
@Name = params['Name']
@Width = params['Width']
@Height = params['Height']
@ResolutionAdaptive = params['ResolutionAdaptive']
@SampleType = params['SampleType']
@SampleInterval = params['SampleInterval']
@RowCount = params['RowCount']
@ColumnCount = params['ColumnCount']
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
@FillType = params['FillType']
@Comment = params['Comment']
@Format = params['Format']
end
end
# 图片水印模板输入参数
class ImageWatermarkInput < TencentCloud::Common::AbstractModel
# @param ImageContent: 水印图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串。支持 jpeg、png 图片格式。
# @type ImageContent: String
# @param Width: 水印的宽度。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;
# 当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素。取值范围为[8, 4096]。
# 默认值:10%。
# @type Width: String
# @param Height: 水印的高度。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;
# 当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素。取值范围为0或[8, 4096]。
# 默认值:0px,表示 Height 按照原始水印图片的宽高比缩放。
# @type Height: String
# @param RepeatType: 水印重复类型。使用场景:水印为动态图像。取值范围:
# once:动态水印播放完后,不再出现;
# repeat_last_frame:水印播放完后,停留在最后一帧;
# repeat:水印循环播放,直到视频结束(默认值)。
# @type RepeatType: String
attr_accessor :ImageContent, :Width, :Height, :RepeatType
def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil)
@ImageContent = imagecontent
@Width = width
@Height = height
@RepeatType = repeattype
end
def deserialize(params)
@ImageContent = params['ImageContent']
@Width = params['Width']
@Height = params['Height']
@RepeatType = params['RepeatType']
end
end
# 图片水印模板输入参数
class ImageWatermarkInputForUpdate < TencentCloud::Common::AbstractModel
# @param ImageContent: 水印图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串。支持 jpeg、png 图片格式。
# @type ImageContent: String
# @param Width: 水印的宽度。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;
# 当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素。取值范围为[8, 4096]。
# @type Width: String
# @param Height: 水印的高度。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;
# 当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素。取值范围为0或[8, 4096]。
# 默认值:0px,表示 Height 按照原始水印图片的宽高比缩放。
# @type Height: String
# @param RepeatType: 水印重复类型。使用场景:水印为动态图像。取值范围:
# once:动态水印播放完后,不再出现;
# repeat_last_frame:水印播放完后,停留在最后一帧;
# repeat:水印循环播放,直到视频结束。
# @type RepeatType: String
attr_accessor :ImageContent, :Width, :Height, :RepeatType
def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil)
@ImageContent = imagecontent
@Width = width
@Height = height
@RepeatType = repeattype
end
def deserialize(params)
@ImageContent = params['ImageContent']
@Width = params['Width']
@Height = params['Height']
@RepeatType = params['RepeatType']
end
end
# 图片水印模板
class ImageWatermarkTemplate < TencentCloud::Common::AbstractModel
# @param ImageUrl: 水印图片地址。
# @type ImageUrl: String
# @param Width: 水印的宽度。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;
# 当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素。
# @type Width: String
# @param Height: 水印的高度。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;
# 当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素;
# 0px:表示 Height 按照 Width 对视频宽度的比例缩放。
# @type Height: String
# @param RepeatType: 水印重复类型。使用场景:水印为动态图像。取值范围:
# once:动态水印播放完后,不再出现;
# repeat_last_frame:水印播放完后,停留在最后一帧;
# repeat:水印循环播放,直到视频结束。
# @type RepeatType: String
attr_accessor :ImageUrl, :Width, :Height, :RepeatType
def initialize(imageurl=nil, width=nil, height=nil, repeattype=nil)
@ImageUrl = imageurl
@Width = width
@Height = height
@RepeatType = repeattype
end
def deserialize(params)
@ImageUrl = params['ImageUrl']
@Width = params['Width']
@Height = params['Height']
@RepeatType = params['RepeatType']
end
end
# 输入地址信息。
class InputAddress < TencentCloud::Common::AbstractModel
# @param Ip: 输入地址的IP。
# @type Ip: String
# @param Port: 输入地址的端口。
# @type Port: Integer
attr_accessor :Ip, :Port
def initialize(ip=nil, port=nil)
@Ip = ip
@Port = port
end
def deserialize(params)
@Ip = params['Ip']
@Port = params['Port']
end
end
# 直播流分析结果
class LiveStreamAiAnalysisResultInfo < TencentCloud::Common::AbstractModel
# @param ResultSet: 直播分析子任务结果,暂时只支持直播拆条。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ResultSet: Array
attr_accessor :ResultSet
def initialize(resultset=nil)
@ResultSet = resultset
end
def deserialize(params)
unless params['ResultSet'].nil?
@ResultSet = []
params['ResultSet'].each do |i|
livestreamaianalysisresultitem_tmp = LiveStreamAiAnalysisResultItem.new
livestreamaianalysisresultitem_tmp.deserialize(i)
@ResultSet << livestreamaianalysisresultitem_tmp
end
end
end
end
# 直播流 AI 分析结果
class LiveStreamAiAnalysisResultItem < TencentCloud::Common::AbstractModel
# @param Type: 结果的类型,取值范围:
# SegmentRecognition:拆条。
# @type Type: String
# @param SegmentResultSet: 拆条结果,当 Type 为
# SegmentRecognition 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SegmentResultSet: Array
attr_accessor :Type, :SegmentResultSet
def initialize(type=nil, segmentresultset=nil)
@Type = type
@SegmentResultSet = segmentresultset
end
def deserialize(params)
@Type = params['Type']
unless params['SegmentResultSet'].nil?
@SegmentResultSet = []
params['SegmentResultSet'].each do |i|
segmentrecognitionitem_tmp = SegmentRecognitionItem.new
segmentrecognitionitem_tmp.deserialize(i)
@SegmentResultSet << segmentrecognitionitem_tmp
end
end
end
end
# 直播流质检结果
class LiveStreamAiQualityControlResultInfo < TencentCloud::Common::AbstractModel
# @param QualityControlResults: 质检结果列表。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type QualityControlResults: Array
# @param DiagnoseResults: 格式诊断结果列表。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type DiagnoseResults: Array
attr_accessor :QualityControlResults, :DiagnoseResults
def initialize(qualitycontrolresults=nil, diagnoseresults=nil)
@QualityControlResults = qualitycontrolresults
@DiagnoseResults = diagnoseresults
end
def deserialize(params)
unless params['QualityControlResults'].nil?
@QualityControlResults = []
params['QualityControlResults'].each do |i|
qualitycontrolresult_tmp = QualityControlResult.new
qualitycontrolresult_tmp.deserialize(i)
@QualityControlResults << qualitycontrolresult_tmp
end
end
unless params['DiagnoseResults'].nil?
@DiagnoseResults = []
params['DiagnoseResults'].each do |i|
diagnoseresult_tmp = DiagnoseResult.new
diagnoseresult_tmp.deserialize(i)
@DiagnoseResults << diagnoseresult_tmp
end
end
end
end
# 直播流 AI 识别结果
class LiveStreamAiRecognitionResultInfo < TencentCloud::Common::AbstractModel
# @param ResultSet: 内容识别结果列表。
# @type ResultSet: Array
attr_accessor :ResultSet
def initialize(resultset=nil)
@ResultSet = resultset
end
def deserialize(params)
unless params['ResultSet'].nil?
@ResultSet = []
params['ResultSet'].each do |i|
livestreamairecognitionresultitem_tmp = LiveStreamAiRecognitionResultItem.new
livestreamairecognitionresultitem_tmp.deserialize(i)
@ResultSet << livestreamairecognitionresultitem_tmp
end
end
end
end
# 直播流 AI 识别结果
class LiveStreamAiRecognitionResultItem < TencentCloud::Common::AbstractModel
# @param Type: 结果的类型,取值范围:
# FaceRecognition:人脸识别,
# AsrWordsRecognition:语音关键词识别,
# OcrWordsRecognition:文本关键词识别,
# AsrFullTextRecognition:语音全文识别,
# OcrFullTextRecognition:文本全文识别。
# TransTextRecognition:语音翻译。
# @type Type: String
# @param FaceRecognitionResultSet: 人脸识别结果,当 Type 为
# FaceRecognition 时有效。
# @type FaceRecognitionResultSet: Array
# @param AsrWordsRecognitionResultSet: 语音关键词识别结果,当 Type 为
# AsrWordsRecognition 时有效。
# @type AsrWordsRecognitionResultSet: Array
# @param OcrWordsRecognitionResultSet: 文本关键词识别结果,当 Type 为
# OcrWordsRecognition 时有效。
# @type OcrWordsRecognitionResultSet: Array
# @param AsrFullTextRecognitionResultSet: 语音全文识别结果,当 Type 为
# AsrFullTextRecognition 时有效。
# @type AsrFullTextRecognitionResultSet: Array
# @param OcrFullTextRecognitionResultSet: 文本全文识别结果,当 Type 为
# OcrFullTextRecognition 时有效。
# @type OcrFullTextRecognitionResultSet: Array
# @param TransTextRecognitionResultSet: 翻译结果,当Type 为 TransTextRecognition 时有效。
# @type TransTextRecognitionResultSet: Array
attr_accessor :Type, :FaceRecognitionResultSet, :AsrWordsRecognitionResultSet, :OcrWordsRecognitionResultSet, :AsrFullTextRecognitionResultSet, :OcrFullTextRecognitionResultSet, :TransTextRecognitionResultSet
def initialize(type=nil, facerecognitionresultset=nil, asrwordsrecognitionresultset=nil, ocrwordsrecognitionresultset=nil, asrfulltextrecognitionresultset=nil, ocrfulltextrecognitionresultset=nil, transtextrecognitionresultset=nil)
@Type = type
@FaceRecognitionResultSet = facerecognitionresultset
@AsrWordsRecognitionResultSet = asrwordsrecognitionresultset
@OcrWordsRecognitionResultSet = ocrwordsrecognitionresultset
@AsrFullTextRecognitionResultSet = asrfulltextrecognitionresultset
@OcrFullTextRecognitionResultSet = ocrfulltextrecognitionresultset
@TransTextRecognitionResultSet = transtextrecognitionresultset
end
def deserialize(params)
@Type = params['Type']
unless params['FaceRecognitionResultSet'].nil?
@FaceRecognitionResultSet = []
params['FaceRecognitionResultSet'].each do |i|
livestreamfacerecognitionresult_tmp = LiveStreamFaceRecognitionResult.new
livestreamfacerecognitionresult_tmp.deserialize(i)
@FaceRecognitionResultSet << livestreamfacerecognitionresult_tmp
end
end
unless params['AsrWordsRecognitionResultSet'].nil?
@AsrWordsRecognitionResultSet = []
params['AsrWordsRecognitionResultSet'].each do |i|
livestreamasrwordsrecognitionresult_tmp = LiveStreamAsrWordsRecognitionResult.new
livestreamasrwordsrecognitionresult_tmp.deserialize(i)
@AsrWordsRecognitionResultSet << livestreamasrwordsrecognitionresult_tmp
end
end
unless params['OcrWordsRecognitionResultSet'].nil?
@OcrWordsRecognitionResultSet = []
params['OcrWordsRecognitionResultSet'].each do |i|
livestreamocrwordsrecognitionresult_tmp = LiveStreamOcrWordsRecognitionResult.new
livestreamocrwordsrecognitionresult_tmp.deserialize(i)
@OcrWordsRecognitionResultSet << livestreamocrwordsrecognitionresult_tmp
end
end
unless params['AsrFullTextRecognitionResultSet'].nil?
@AsrFullTextRecognitionResultSet = []
params['AsrFullTextRecognitionResultSet'].each do |i|
livestreamasrfulltextrecognitionresult_tmp = LiveStreamAsrFullTextRecognitionResult.new
livestreamasrfulltextrecognitionresult_tmp.deserialize(i)
@AsrFullTextRecognitionResultSet << livestreamasrfulltextrecognitionresult_tmp
end
end
unless params['OcrFullTextRecognitionResultSet'].nil?
@OcrFullTextRecognitionResultSet = []
params['OcrFullTextRecognitionResultSet'].each do |i|
livestreamocrfulltextrecognitionresult_tmp = LiveStreamOcrFullTextRecognitionResult.new
livestreamocrfulltextrecognitionresult_tmp.deserialize(i)
@OcrFullTextRecognitionResultSet << livestreamocrfulltextrecognitionresult_tmp
end
end
unless params['TransTextRecognitionResultSet'].nil?
@TransTextRecognitionResultSet = []
params['TransTextRecognitionResultSet'].each do |i|
livestreamtranstextrecognitionresult_tmp = LiveStreamTransTextRecognitionResult.new
livestreamtranstextrecognitionresult_tmp.deserialize(i)
@TransTextRecognitionResultSet << livestreamtranstextrecognitionresult_tmp
end
end
end
end
# 直播 AI 内容审核图片敏感结果
class LiveStreamAiReviewImagePoliticalResult < TencentCloud::Common::AbstractModel
# @param StartPtsTime: 嫌疑片段起始的 PTS 时间,单位:秒。
# @type StartPtsTime: Float
# @param EndPtsTime: 嫌疑片段结束的 PTS 时间,单位:秒。
# @type EndPtsTime: Float
# @param Confidence: 嫌疑片段敏感分数。
# @type Confidence: Float
# @param Suggestion: 嫌疑片段鉴黄结果建议,取值范围:
# pass
# review
# block
# @type Suggestion: String
# @param Label: 视频敏感结果标签,取值范围:
# politician:敏感人物。
# violation_photo:违规图标。
# @type Label: String
# @param Name: 敏感人物、违规图标名字。
# @type Name: String
# @param AreaCoordSet: 敏感人物、违规图标出现的区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
# @type AreaCoordSet: Array
# @param Url: 嫌疑图片 URL (图片不会永久存储,到达
# PicUrlExpireTime 时间点后图片将被删除)。
# @type Url: String
# @param PicUrlExpireTime: 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type PicUrlExpireTime: String
attr_accessor :StartPtsTime, :EndPtsTime, :Confidence, :Suggestion, :Label, :Name, :AreaCoordSet, :Url, :PicUrlExpireTime
def initialize(startptstime=nil, endptstime=nil, confidence=nil, suggestion=nil, label=nil, name=nil, areacoordset=nil, url=nil, picurlexpiretime=nil)
@StartPtsTime = startptstime
@EndPtsTime = endptstime
@Confidence = confidence
@Suggestion = suggestion
@Label = label
@Name = name
@AreaCoordSet = areacoordset
@Url = url
@PicUrlExpireTime = picurlexpiretime
end
def deserialize(params)
@StartPtsTime = params['StartPtsTime']
@EndPtsTime = params['EndPtsTime']
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
@Label = params['Label']
@Name = params['Name']
@AreaCoordSet = params['AreaCoordSet']
@Url = params['Url']
@PicUrlExpireTime = params['PicUrlExpireTime']
end
end
# 直播 AI 内容审核图片鉴黄结果
class LiveStreamAiReviewImagePornResult < TencentCloud::Common::AbstractModel
# @param StartPtsTime: 嫌疑片段起始的 PTS 时间,单位:秒。
# @type StartPtsTime: Float
# @param EndPtsTime: 嫌疑片段结束的 PTS 时间,单位:秒。
# @type EndPtsTime: Float
# @param Confidence: 嫌疑片段涉黄分数。
# @type Confidence: Float
# @param Suggestion: 嫌疑片段鉴黄结果建议,取值范围:
# pass
# review
# block
# @type Suggestion: String
# @param Label: 视频鉴黄结果标签,取值范围:
# porn:色情。
# sexy:性感。
# vulgar:低俗。
# intimacy:亲密行为。
# @type Label: String
# @param Url: 嫌疑图片 URL (图片不会永久存储,到达
# PicUrlExpireTime 时间点后图片将被删除)。
# @type Url: String
# @param PicUrlExpireTime: 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type PicUrlExpireTime: String
attr_accessor :StartPtsTime, :EndPtsTime, :Confidence, :Suggestion, :Label, :Url, :PicUrlExpireTime
def initialize(startptstime=nil, endptstime=nil, confidence=nil, suggestion=nil, label=nil, url=nil, picurlexpiretime=nil)
@StartPtsTime = startptstime
@EndPtsTime = endptstime
@Confidence = confidence
@Suggestion = suggestion
@Label = label
@Url = url
@PicUrlExpireTime = picurlexpiretime
end
def deserialize(params)
@StartPtsTime = params['StartPtsTime']
@EndPtsTime = params['EndPtsTime']
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
@Label = params['Label']
@Url = params['Url']
@PicUrlExpireTime = params['PicUrlExpireTime']
end
end
# 直播 AI 内容审核图片涉敏结果
class LiveStreamAiReviewImageTerrorismResult < TencentCloud::Common::AbstractModel
# @param StartPtsTime: 嫌疑片段起始的 PTS 时间,单位:秒。
# @type StartPtsTime: Float
# @param EndPtsTime: 嫌疑片段结束的 PTS 时间,单位:秒。
# @type EndPtsTime: Float
# @param Confidence: 嫌疑片段涉敏分数。
# @type Confidence: Float
# @param Suggestion: 嫌疑片段涉敏结果建议,取值范围:
# pass
# review
# block
# @type Suggestion: String
# @param Label: 视频涉敏结果标签,取值范围:
# guns:武器枪支。
# crowd:人群聚集。
# police:警察部队。
# bloody:血腥画面。
# banners:涉敏旗帜。
# militant:武装分子。
# explosion:爆炸火灾。
# terrorists:涉敏人物。
# @type Label: String
# @param Url: 嫌疑图片 URL (图片不会永久存储,到达
# PicUrlExpireTime 时间点后图片将被删除)。
# @type Url: String
# @param PicUrlExpireTime: 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type PicUrlExpireTime: String
attr_accessor :StartPtsTime, :EndPtsTime, :Confidence, :Suggestion, :Label, :Url, :PicUrlExpireTime
def initialize(startptstime=nil, endptstime=nil, confidence=nil, suggestion=nil, label=nil, url=nil, picurlexpiretime=nil)
@StartPtsTime = startptstime
@EndPtsTime = endptstime
@Confidence = confidence
@Suggestion = suggestion
@Label = label
@Url = url
@PicUrlExpireTime = picurlexpiretime
end
def deserialize(params)
@StartPtsTime = params['StartPtsTime']
@EndPtsTime = params['EndPtsTime']
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
@Label = params['Label']
@Url = params['Url']
@PicUrlExpireTime = params['PicUrlExpireTime']
end
end
# 直播流 AI 审核结果
class LiveStreamAiReviewResultInfo < TencentCloud::Common::AbstractModel
# @param ResultSet: 内容审核结果列表。
# @type ResultSet: Array
attr_accessor :ResultSet
def initialize(resultset=nil)
@ResultSet = resultset
end
def deserialize(params)
unless params['ResultSet'].nil?
@ResultSet = []
params['ResultSet'].each do |i|
livestreamaireviewresultitem_tmp = LiveStreamAiReviewResultItem.new
livestreamaireviewresultitem_tmp.deserialize(i)
@ResultSet << livestreamaireviewresultitem_tmp
end
end
end
end
# 直播流 AI 审核结果
class LiveStreamAiReviewResultItem < TencentCloud::Common::AbstractModel
# @param Type: 审核结果的类型,可以取的值有:
# ImagePorn:图片鉴黄
# ImageTerrorism:图片涉敏
# ImagePolitical:图片涉敏
# VoicePorn:声音违规
# @type Type: String
# @param ImagePornResultSet: 图片鉴黄的结果,当 Type 为 ImagePorn 时有效。
# @type ImagePornResultSet: Array
# @param ImageTerrorismResultSet: 图片涉敏的结果,当 Type 为 ImageTerrorism 时有效。
# @type ImageTerrorismResultSet: Array
# @param ImagePoliticalResultSet: 图片涉敏的结果,当 Type 为 ImagePolitical 时有效。
# @type ImagePoliticalResultSet: Array
# @param VoicePornResultSet: 声音违规的结果,当 Type 为 VoicePorn 时有效。
# @type VoicePornResultSet: Array
attr_accessor :Type, :ImagePornResultSet, :ImageTerrorismResultSet, :ImagePoliticalResultSet, :VoicePornResultSet
def initialize(type=nil, imagepornresultset=nil, imageterrorismresultset=nil, imagepoliticalresultset=nil, voicepornresultset=nil)
@Type = type
@ImagePornResultSet = imagepornresultset
@ImageTerrorismResultSet = imageterrorismresultset
@ImagePoliticalResultSet = imagepoliticalresultset
@VoicePornResultSet = voicepornresultset
end
def deserialize(params)
@Type = params['Type']
unless params['ImagePornResultSet'].nil?
@ImagePornResultSet = []
params['ImagePornResultSet'].each do |i|
livestreamaireviewimagepornresult_tmp = LiveStreamAiReviewImagePornResult.new
livestreamaireviewimagepornresult_tmp.deserialize(i)
@ImagePornResultSet << livestreamaireviewimagepornresult_tmp
end
end
unless params['ImageTerrorismResultSet'].nil?
@ImageTerrorismResultSet = []
params['ImageTerrorismResultSet'].each do |i|
livestreamaireviewimageterrorismresult_tmp = LiveStreamAiReviewImageTerrorismResult.new
livestreamaireviewimageterrorismresult_tmp.deserialize(i)
@ImageTerrorismResultSet << livestreamaireviewimageterrorismresult_tmp
end
end
unless params['ImagePoliticalResultSet'].nil?
@ImagePoliticalResultSet = []
params['ImagePoliticalResultSet'].each do |i|
livestreamaireviewimagepoliticalresult_tmp = LiveStreamAiReviewImagePoliticalResult.new
livestreamaireviewimagepoliticalresult_tmp.deserialize(i)
@ImagePoliticalResultSet << livestreamaireviewimagepoliticalresult_tmp
end
end
unless params['VoicePornResultSet'].nil?
@VoicePornResultSet = []
params['VoicePornResultSet'].each do |i|
livestreamaireviewvoicepornresult_tmp = LiveStreamAiReviewVoicePornResult.new
livestreamaireviewvoicepornresult_tmp.deserialize(i)
@VoicePornResultSet << livestreamaireviewvoicepornresult_tmp
end
end
end
end
# 直播 AI 内容审核声音鉴黄结果
class LiveStreamAiReviewVoicePornResult < TencentCloud::Common::AbstractModel
# @param StartPtsTime: 嫌疑片段起始的 PTS 时间,单位:秒。
# @type StartPtsTime: Float
# @param EndPtsTime: 嫌疑片段结束的 PTS 时间,单位:秒。
# @type EndPtsTime: Float
# @param Confidence: 嫌疑片段涉黄分数。
# @type Confidence: Float
# @param Suggestion: 嫌疑片段鉴黄结果建议,取值范围:
# pass
# review
# block
# @type Suggestion: String
# @param Label: 视频鉴黄结果标签,取值范围:
# sexual_moan:呻吟。
# @type Label: String
attr_accessor :StartPtsTime, :EndPtsTime, :Confidence, :Suggestion, :Label
def initialize(startptstime=nil, endptstime=nil, confidence=nil, suggestion=nil, label=nil)
@StartPtsTime = startptstime
@EndPtsTime = endptstime
@Confidence = confidence
@Suggestion = suggestion
@Label = label
end
def deserialize(params)
@StartPtsTime = params['StartPtsTime']
@EndPtsTime = params['EndPtsTime']
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
@Label = params['Label']
end
end
# 直播识别 Asr 全文识别
class LiveStreamAsrFullTextRecognitionResult < TencentCloud::Common::AbstractModel
# @param Text: 识别文本。
# @type Text: String
# @param StartPtsTime: 识别片段起始的 PTS 时间,单位:秒。
# @type StartPtsTime: Float
# @param EndPtsTime: 识别片段终止的 PTS 时间,单位:秒。
# @type EndPtsTime: Float
# @param Confidence: 识别片段置信度。取值:0~100。
# @type Confidence: Float
# @param StartTime: 识别开始UTC时间。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type StartTime: String
# @param EndTime: 识别结束UTC时间。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type EndTime: String
# @param SteadyState: 稳态标记。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SteadyState: Boolean
attr_accessor :Text, :StartPtsTime, :EndPtsTime, :Confidence, :StartTime, :EndTime, :SteadyState
def initialize(text=nil, startptstime=nil, endptstime=nil, confidence=nil, starttime=nil, endtime=nil, steadystate=nil)
@Text = text
@StartPtsTime = startptstime
@EndPtsTime = endptstime
@Confidence = confidence
@StartTime = starttime
@EndTime = endtime
@SteadyState = steadystate
end
def deserialize(params)
@Text = params['Text']
@StartPtsTime = params['StartPtsTime']
@EndPtsTime = params['EndPtsTime']
@Confidence = params['Confidence']
@StartTime = params['StartTime']
@EndTime = params['EndTime']
@SteadyState = params['SteadyState']
end
end
# 直播 AI Asr 单词识别结果
class LiveStreamAsrWordsRecognitionResult < TencentCloud::Common::AbstractModel
# @param Word: 语音关键词。
# @type Word: String
# @param StartPtsTime: 识别片段起始的 PTS 时间,单位:秒。
# @type StartPtsTime: Float
# @param EndPtsTime: 识别片段终止的 PTS 时间,单位:秒。
# @type EndPtsTime: Float
# @param Confidence: 识别片段置信度。取值:0~100。
# @type Confidence: Float
attr_accessor :Word, :StartPtsTime, :EndPtsTime, :Confidence
def initialize(word=nil, startptstime=nil, endptstime=nil, confidence=nil)
@Word = word
@StartPtsTime = startptstime
@EndPtsTime = endptstime
@Confidence = confidence
end
def deserialize(params)
@Word = params['Word']
@StartPtsTime = params['StartPtsTime']
@EndPtsTime = params['EndPtsTime']
@Confidence = params['Confidence']
end
end
# 直播 AI 人脸识别结果
class LiveStreamFaceRecognitionResult < TencentCloud::Common::AbstractModel
# @param Id: 人物唯一标识 ID。
# @type Id: String
# @param Name: 人物名称。
# @type Name: String
# @param Type: 人物库类型,表示识别出的人物来自哪个人物库:
# Default:默认人物库;UserDefine:用户自定义人物库。
# @type Type: String
# @param StartPtsTime: 识别片段起始的 PTS 时间,单位:秒。
# @type StartPtsTime: Float
# @param EndPtsTime: 识别片段终止的 PTS 时间,单位:秒。
# @type EndPtsTime: Float
# @param Confidence: 识别片段置信度。取值:0~100。
# @type Confidence: Float
# @param AreaCoordSet: 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
# @type AreaCoordSet: Array
attr_accessor :Id, :Name, :Type, :StartPtsTime, :EndPtsTime, :Confidence, :AreaCoordSet
def initialize(id=nil, name=nil, type=nil, startptstime=nil, endptstime=nil, confidence=nil, areacoordset=nil)
@Id = id
@Name = name
@Type = type
@StartPtsTime = startptstime
@EndPtsTime = endptstime
@Confidence = confidence
@AreaCoordSet = areacoordset
end
def deserialize(params)
@Id = params['Id']
@Name = params['Name']
@Type = params['Type']
@StartPtsTime = params['StartPtsTime']
@EndPtsTime = params['EndPtsTime']
@Confidence = params['Confidence']
@AreaCoordSet = params['AreaCoordSet']
end
end
# 直播识别 Ocr 全文识别
class LiveStreamOcrFullTextRecognitionResult < TencentCloud::Common::AbstractModel
# @param Text: 语音文本。
# @type Text: String
# @param StartPtsTime: 识别片段起始的 PTS 时间,单位:秒。
# @type StartPtsTime: Float
# @param EndPtsTime: 识别片段终止的 PTS 时间,单位:秒。
# @type EndPtsTime: Float
# @param Confidence: 识别片段置信度。取值:0~100。
# @type Confidence: Float
# @param AreaCoordSet: 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
# @type AreaCoordSet: Array
attr_accessor :Text, :StartPtsTime, :EndPtsTime, :Confidence, :AreaCoordSet
def initialize(text=nil, startptstime=nil, endptstime=nil, confidence=nil, areacoordset=nil)
@Text = text
@StartPtsTime = startptstime
@EndPtsTime = endptstime
@Confidence = confidence
@AreaCoordSet = areacoordset
end
def deserialize(params)
@Text = params['Text']
@StartPtsTime = params['StartPtsTime']
@EndPtsTime = params['EndPtsTime']
@Confidence = params['Confidence']
@AreaCoordSet = params['AreaCoordSet']
end
end
# 直播 AI Ocr 单词识别结果
class LiveStreamOcrWordsRecognitionResult < TencentCloud::Common::AbstractModel
# @param Word: 文本关键词。
# @type Word: String
# @param StartPtsTime: 识别片段起始的 PTS 时间,单位:秒。
# @type StartPtsTime: Float
# @param EndPtsTime: 识别片段终止的 PTS 时间,单位:秒。
# @type EndPtsTime: Float
# @param Confidence: 识别片段置信度。取值:0~100。
# @type Confidence: Float
# @param AreaCoords: 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
# @type AreaCoords: Array
attr_accessor :Word, :StartPtsTime, :EndPtsTime, :Confidence, :AreaCoords
def initialize(word=nil, startptstime=nil, endptstime=nil, confidence=nil, areacoords=nil)
@Word = word
@StartPtsTime = startptstime
@EndPtsTime = endptstime
@Confidence = confidence
@AreaCoords = areacoords
end
def deserialize(params)
@Word = params['Word']
@StartPtsTime = params['StartPtsTime']
@EndPtsTime = params['EndPtsTime']
@Confidence = params['Confidence']
@AreaCoords = params['AreaCoords']
end
end
# 直播流处理错误信息
class LiveStreamProcessErrorInfo < TencentCloud::Common::AbstractModel
# @param ErrCode: 错误码:
# 0表示没有错误;
# 非0表示错误,请参考 Message 错误信息。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
attr_accessor :ErrCode, :Message
def initialize(errcode=nil, message=nil)
@ErrCode = errcode
@Message = message
end
def deserialize(params)
@ErrCode = params['ErrCode']
@Message = params['Message']
end
end
# 直播处理任务信息
class LiveStreamProcessTask < TencentCloud::Common::AbstractModel
# @param TaskId: 媒体处理任务 ID。
# @type TaskId: String
# @param Status: 任务流状态,取值:
# PROCESSING:处理中;
# FINISH:已完成。
# @type Status: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Url: 直播流 URL。
# @type Url: String
attr_accessor :TaskId, :Status, :ErrCode, :Message, :Url
def initialize(taskid=nil, status=nil, errcode=nil, message=nil, url=nil)
@TaskId = taskid
@Status = status
@ErrCode = errcode
@Message = message
@Url = url
end
def deserialize(params)
@TaskId = params['TaskId']
@Status = params['Status']
@ErrCode = params['ErrCode']
@Message = params['Message']
@Url = params['Url']
end
end
# 任务处理的事件通知配置。
class LiveStreamTaskNotifyConfig < TencentCloud::Common::AbstractModel
# @param CmqModel: CMQ 的模型,有 Queue 和 Topic 两种,目前仅支持 Queue。
# @type CmqModel: String
# @param CmqRegion: CMQ 的园区,如 sh,bj 等。
# @type CmqRegion: String
# @param QueueName: 当模型为 Queue 时有效,表示接收事件通知的 CMQ 的队列名。
# @type QueueName: String
# @param TopicName: 当模型为 Topic 时有效,表示接收事件通知的 CMQ 的主题名。
# @type TopicName: String
# @param NotifyType: 通知类型,默认CMQ,指定URL时HTTP回调推送到 NotifyUrl 指定的地址。
# 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。
# @type NotifyType: String
# @param NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
# @type NotifyUrl: String
attr_accessor :CmqModel, :CmqRegion, :QueueName, :TopicName, :NotifyType, :NotifyUrl
def initialize(cmqmodel=nil, cmqregion=nil, queuename=nil, topicname=nil, notifytype=nil, notifyurl=nil)
@CmqModel = cmqmodel
@CmqRegion = cmqregion
@QueueName = queuename
@TopicName = topicname
@NotifyType = notifytype
@NotifyUrl = notifyurl
end
def deserialize(params)
@CmqModel = params['CmqModel']
@CmqRegion = params['CmqRegion']
@QueueName = params['QueueName']
@TopicName = params['TopicName']
@NotifyType = params['NotifyType']
@NotifyUrl = params['NotifyUrl']
end
end
# 直播实时翻译结果
class LiveStreamTransTextRecognitionResult < TencentCloud::Common::AbstractModel
# @param Text: 识别文本。
# @type Text: String
# @param StartPtsTime: 翻译片段起始的 PTS 时间,单位:秒。
# @type StartPtsTime: Float
# @param EndPtsTime: 翻译片段终止的 PTS 时间,单位:秒。
# @type EndPtsTime: Float
# @param Confidence: 翻译片段置信度。取值:0~100。
# @type Confidence: Float
# @param Trans: 翻译文本。
# @type Trans: String
# @param StartTime: 翻译开始UTC时间。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type StartTime: String
# @param EndTime: 翻译结束UTC时间。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type EndTime: String
# @param SteadyState: 稳态标记。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SteadyState: Boolean
attr_accessor :Text, :StartPtsTime, :EndPtsTime, :Confidence, :Trans, :StartTime, :EndTime, :SteadyState
def initialize(text=nil, startptstime=nil, endptstime=nil, confidence=nil, trans=nil, starttime=nil, endtime=nil, steadystate=nil)
@Text = text
@StartPtsTime = startptstime
@EndPtsTime = endptstime
@Confidence = confidence
@Trans = trans
@StartTime = starttime
@EndTime = endtime
@SteadyState = steadystate
end
def deserialize(params)
@Text = params['Text']
@StartPtsTime = params['StartPtsTime']
@EndPtsTime = params['EndPtsTime']
@Confidence = params['Confidence']
@Trans = params['Trans']
@StartTime = params['StartTime']
@EndTime = params['EndTime']
@SteadyState = params['SteadyState']
end
end
# 低光照增强配置
class LowLightEnhanceConfig < TencentCloud::Common::AbstractModel
# @param Switch: 能力配置开关,可选值:
# ON:开启;
# OFF:关闭。
# 默认值:ON。
# @type Switch: String
# @param Type: 类型,可选值:
# normal
# 默认值:normal。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Type: String
attr_accessor :Switch, :Type
def initialize(switch=nil, type=nil)
@Switch = switch
@Type = type
end
def deserialize(params)
@Switch = params['Switch']
@Type = params['Type']
end
end
# ManageTask请求参数结构体
class ManageTaskRequest < TencentCloud::Common::AbstractModel
# @param OperationType: 操作类型,取值范围:
#
# - Abort:终止任务。使用说明:
#
- 若 [任务类型](/document/product/862/37614#3.-.E8.BE.93.E5.87.BA.E5.8F.82.E6.95.B0) 为直播流处理任务(LiveStreamProcessTask),支持终止 [任务状态](/document/product/862/37614#3.-.E8.BE.93.E5.87.BA.E5.8F.82.E6.95.B0) 为等待中(WAITING)或处理中(PROCESSING)的任务;
# - 否则,对于其他 [任务类型](/document/product/862/37614#3.-.E8.BE.93.E5.87.BA.E5.8F.82.E6.95.B0),只支持终止 [任务状态](/document/product/862/37614#3.-.E8.BE.93.E5.87.BA.E5.8F.82.E6.95.B0) 为等待中(WAITING)的任务。
#
# @type OperationType: String
# @param TaskId: 视频处理的任务 ID。
# @type TaskId: String
attr_accessor :OperationType, :TaskId
def initialize(operationtype=nil, taskid=nil)
@OperationType = operationtype
@TaskId = taskid
end
def deserialize(params)
@OperationType = params['OperationType']
@TaskId = params['TaskId']
end
end
# ManageTask返回参数结构体
class ManageTaskResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# 智能分类结果
class MediaAiAnalysisClassificationItem < TencentCloud::Common::AbstractModel
# @param Classification: 智能分类的类别名称。
# @type Classification: String
# @param Confidence: 智能分类的可信度,取值范围是 0 到 100。
# @type Confidence: Float
attr_accessor :Classification, :Confidence
def initialize(classification=nil, confidence=nil)
@Classification = classification
@Confidence = confidence
end
def deserialize(params)
@Classification = params['Classification']
@Confidence = params['Confidence']
end
end
# 智能封面信息
class MediaAiAnalysisCoverItem < TencentCloud::Common::AbstractModel
# @param CoverPath: 智能封面存储路径。
# @type CoverPath: String
# @param Confidence: 智能封面的可信度,取值范围是 0 到 100。
# @type Confidence: Float
attr_accessor :CoverPath, :Confidence
def initialize(coverpath=nil, confidence=nil)
@CoverPath = coverpath
@Confidence = confidence
end
def deserialize(params)
@CoverPath = params['CoverPath']
@Confidence = params['Confidence']
end
end
# 智能按帧标签结果信息
class MediaAiAnalysisFrameTagItem < TencentCloud::Common::AbstractModel
# @param Tag: 按帧标签名称。
# @type Tag: String
# @param CategorySet: 按帧标签名称的分类列表,CategorySet.N 表示第 N+1级分类。
# 比如 Tag 为“塔楼”时,CategorySet 包含两个元素:CategorySet.0 为“场景”,CategorySet.1为 “建筑”,表示按帧标签为“塔楼”,且第1级分类是“场景”,第2级分类是“建筑”。
# @type CategorySet: Array
# @param Confidence: 按帧标签的可信度,取值范围是 0 到 100。
# @type Confidence: Float
attr_accessor :Tag, :CategorySet, :Confidence
def initialize(tag=nil, categoryset=nil, confidence=nil)
@Tag = tag
@CategorySet = categoryset
@Confidence = confidence
end
def deserialize(params)
@Tag = params['Tag']
@CategorySet = params['CategorySet']
@Confidence = params['Confidence']
end
end
# 按帧标签片段列表
class MediaAiAnalysisFrameTagSegmentItem < TencentCloud::Common::AbstractModel
# @param StartTimeOffset: 按帧标签起始的偏移时间。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 按帧标签结束的偏移时间。
# @type EndTimeOffset: Float
# @param TagSet: 时间片段内的标签列表。
# @type TagSet: Array
attr_accessor :StartTimeOffset, :EndTimeOffset, :TagSet
def initialize(starttimeoffset=nil, endtimeoffset=nil, tagset=nil)
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@TagSet = tagset
end
def deserialize(params)
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
unless params['TagSet'].nil?
@TagSet = []
params['TagSet'].each do |i|
mediaaianalysisframetagitem_tmp = MediaAiAnalysisFrameTagItem.new
mediaaianalysisframetagitem_tmp.deserialize(i)
@TagSet << mediaaianalysisframetagitem_tmp
end
end
end
end
# 智能精彩片段信息
class MediaAiAnalysisHighlightItem < TencentCloud::Common::AbstractModel
# @param HighlightPath: 智能精彩集锦地址。
# @type HighlightPath: String
# @param CovImgPath: 智能精彩集锦封面地址。
# @type CovImgPath: String
# @param Confidence: 智能精彩集锦的可信度,取值范围是 0 到 100。
# @type Confidence: Float
# @param Duration: 智能精彩集锦持续时间。
# @type Duration: Float
# @param SegmentSet: 智能精彩集锦子片段列表。
# @type SegmentSet: Array
attr_accessor :HighlightPath, :CovImgPath, :Confidence, :Duration, :SegmentSet
def initialize(highlightpath=nil, covimgpath=nil, confidence=nil, duration=nil, segmentset=nil)
@HighlightPath = highlightpath
@CovImgPath = covimgpath
@Confidence = confidence
@Duration = duration
@SegmentSet = segmentset
end
def deserialize(params)
@HighlightPath = params['HighlightPath']
@CovImgPath = params['CovImgPath']
@Confidence = params['Confidence']
@Duration = params['Duration']
unless params['SegmentSet'].nil?
@SegmentSet = []
params['SegmentSet'].each do |i|
highlightsegmentitem_tmp = HighlightSegmentItem.new
highlightsegmentitem_tmp.deserialize(i)
@SegmentSet << highlightsegmentitem_tmp
end
end
end
end
# 智能标签结果信息
class MediaAiAnalysisTagItem < TencentCloud::Common::AbstractModel
# @param Tag: 标签名称。
# @type Tag: String
# @param Confidence: 标签的可信度,取值范围是 0 到 100。
# @type Confidence: Float
attr_accessor :Tag, :Confidence
def initialize(tag=nil, confidence=nil)
@Tag = tag
@Confidence = confidence
end
def deserialize(params)
@Tag = params['Tag']
@Confidence = params['Confidence']
end
end
# 视频转动图结果信息
class MediaAnimatedGraphicsItem < TencentCloud::Common::AbstractModel
# @param Storage: 转动图文件的存储位置。
# @type Storage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param Path: 转动图的文件路径。
# @type Path: String
# @param Definition: 转动图模板 ID,参见[转动图参数模板](https://cloud.tencent.com/document/product/862/37042#.E9.A2.84.E7.BD.AE.E8.BD.AC.E5.8A.A8.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
# @type Definition: Integer
# @param Container: 动图格式,如 gif。
# @type Container: String
# @param Height: 动图的高度,单位:px。
# @type Height: Integer
# @param Width: 动图的宽度,单位:px。
# @type Width: Integer
# @param Bitrate: 动图码率,单位:bps。
# @type Bitrate: Integer
# @param Size: 动图大小,单位:字节。
# @type Size: Integer
# @param Md5: 动图的md5值。
# @type Md5: String
# @param StartTimeOffset: 动图在视频中的起始时间偏移,单位:秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 动图在视频中的结束时间偏移,单位:秒。
# @type EndTimeOffset: Float
attr_accessor :Storage, :Path, :Definition, :Container, :Height, :Width, :Bitrate, :Size, :Md5, :StartTimeOffset, :EndTimeOffset
def initialize(storage=nil, path=nil, definition=nil, container=nil, height=nil, width=nil, bitrate=nil, size=nil, md5=nil, starttimeoffset=nil, endtimeoffset=nil)
@Storage = storage
@Path = path
@Definition = definition
@Container = container
@Height = height
@Width = width
@Bitrate = bitrate
@Size = size
@Md5 = md5
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
end
def deserialize(params)
unless params['Storage'].nil?
@Storage = TaskOutputStorage.new
@Storage.deserialize(params['Storage'])
end
@Path = params['Path']
@Definition = params['Definition']
@Container = params['Container']
@Height = params['Height']
@Width = params['Width']
@Bitrate = params['Bitrate']
@Size = params['Size']
@Md5 = params['Md5']
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
end
end
# 点播文件音频流信息
class MediaAudioStreamItem < TencentCloud::Common::AbstractModel
# @param Bitrate: 音频流的码率,单位:bps。
# @type Bitrate: Integer
# @param SamplingRate: 音频流的采样率,单位:hz。
# @type SamplingRate: Integer
# @param Codec: 音频流的编码格式,例如 aac。
# @type Codec: String
# @param Channel: 音频声道数,例如 2。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Channel: Integer
# @param Codecs: 音频Codecs。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Codecs: String
# @param Loudness: 音频响度。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Loudness: Float
attr_accessor :Bitrate, :SamplingRate, :Codec, :Channel, :Codecs, :Loudness
def initialize(bitrate=nil, samplingrate=nil, codec=nil, channel=nil, codecs=nil, loudness=nil)
@Bitrate = bitrate
@SamplingRate = samplingrate
@Codec = codec
@Channel = channel
@Codecs = codecs
@Loudness = loudness
end
def deserialize(params)
@Bitrate = params['Bitrate']
@SamplingRate = params['SamplingRate']
@Codec = params['Codec']
@Channel = params['Channel']
@Codecs = params['Codecs']
@Loudness = params['Loudness']
end
end
# 内容审核 Asr 文字审核嫌疑片段
class MediaContentReviewAsrTextSegmentItem < TencentCloud::Common::AbstractModel
# @param StartTimeOffset: 嫌疑片段起始的偏移时间,单位:秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 嫌疑片段结束的偏移时间,单位:秒。
# @type EndTimeOffset: Float
# @param Confidence: 嫌疑片段置信度。
# @type Confidence: Float
# @param Suggestion: 嫌疑片段审核结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param KeywordSet: 嫌疑关键词列表。
# @type KeywordSet: Array
attr_accessor :StartTimeOffset, :EndTimeOffset, :Confidence, :Suggestion, :KeywordSet
def initialize(starttimeoffset=nil, endtimeoffset=nil, confidence=nil, suggestion=nil, keywordset=nil)
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@Confidence = confidence
@Suggestion = suggestion
@KeywordSet = keywordset
end
def deserialize(params)
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
@KeywordSet = params['KeywordSet']
end
end
# 内容审核 Ocr 文字审核嫌疑片段
class MediaContentReviewOcrTextSegmentItem < TencentCloud::Common::AbstractModel
# @param StartTimeOffset: 嫌疑片段起始的偏移时间,单位:秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 嫌疑片段结束的偏移时间,单位:秒。
# @type EndTimeOffset: Float
# @param Confidence: 嫌疑片段置信度。
# @type Confidence: Float
# @param Suggestion: 嫌疑片段审核结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param KeywordSet: 嫌疑关键词列表。
# @type KeywordSet: Array
# @param AreaCoordSet: 嫌疑文字出现的区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
# @type AreaCoordSet: Array
# @param Url: 嫌疑图片 URL (图片不会永久存储,到达
# PicUrlExpireTime 时间点后图片将被删除)。
# @type Url: String
# @param PicUrlExpireTime: 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type PicUrlExpireTime: String
attr_accessor :StartTimeOffset, :EndTimeOffset, :Confidence, :Suggestion, :KeywordSet, :AreaCoordSet, :Url, :PicUrlExpireTime
def initialize(starttimeoffset=nil, endtimeoffset=nil, confidence=nil, suggestion=nil, keywordset=nil, areacoordset=nil, url=nil, picurlexpiretime=nil)
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@Confidence = confidence
@Suggestion = suggestion
@KeywordSet = keywordset
@AreaCoordSet = areacoordset
@Url = url
@PicUrlExpireTime = picurlexpiretime
end
def deserialize(params)
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
@KeywordSet = params['KeywordSet']
@AreaCoordSet = params['AreaCoordSet']
@Url = params['Url']
@PicUrlExpireTime = params['PicUrlExpireTime']
end
end
# 内容审核涉敏嫌疑片段
class MediaContentReviewPoliticalSegmentItem < TencentCloud::Common::AbstractModel
# @param StartTimeOffset: 嫌疑片段起始的偏移时间,单位:秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 嫌疑片段结束的偏移时间,单位:秒。
# @type EndTimeOffset: Float
# @param Confidence: 嫌疑片段涉敏分数。
# @type Confidence: Float
# @param Suggestion: 嫌疑片段涉敏结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param Name: 涉敏人物、违规图标名字。
# @type Name: String
# @param Label: 嫌疑片段涉敏结果标签。内容审核模板[画面涉敏任务控制参数](https://cloud.tencent.com/document/api/862/37615#PoliticalImgReviewTemplateInfo)里 LabelSet 参数与此参数取值范围的对应关系:
# violation_photo:
# violation_photo:违规图标。
# politician:
# nation_politician:国家领导人;
# province_politician: 省部级领导人;
# bureau_politician:厅局级领导人;
# county_politician:县处级领导人;
# rural_politician:乡科级领导人;
# sensitive_politician:涉敏人物;
# foreign_politician:国外领导人。
# entertainment:
# sensitive_entertainment:敏感娱乐人物。
# sport:
# sensitive_sport:敏感体育人物。
# entrepreneur:
# sensitive_entrepreneur:敏感商业人物。
# scholar:
# sensitive_scholar:敏感教育学者。
# celebrity:
# sensitive_celebrity:敏感知名人物;
# historical_celebrity:历史知名人物。
# military:
# sensitive_military:敏感军事人物。
# @type Label: String
# @param Url: 嫌疑图片 URL (图片不会永久存储,到达
# PicUrlExpireTime 时间点后图片将被删除)。
# @type Url: String
# @param AreaCoordSet: 涉敏人物、违规图标出现的区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
# @type AreaCoordSet: Array
# @param PicUrlExpireTime: 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type PicUrlExpireTime: String
attr_accessor :StartTimeOffset, :EndTimeOffset, :Confidence, :Suggestion, :Name, :Label, :Url, :AreaCoordSet, :PicUrlExpireTime
def initialize(starttimeoffset=nil, endtimeoffset=nil, confidence=nil, suggestion=nil, name=nil, label=nil, url=nil, areacoordset=nil, picurlexpiretime=nil)
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@Confidence = confidence
@Suggestion = suggestion
@Name = name
@Label = label
@Url = url
@AreaCoordSet = areacoordset
@PicUrlExpireTime = picurlexpiretime
end
def deserialize(params)
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
@Confidence = params['Confidence']
@Suggestion = params['Suggestion']
@Name = params['Name']
@Label = params['Label']
@Url = params['Url']
@AreaCoordSet = params['AreaCoordSet']
@PicUrlExpireTime = params['PicUrlExpireTime']
end
end
# 内容审核涉黄/涉敏嫌疑片段
class MediaContentReviewSegmentItem < TencentCloud::Common::AbstractModel
# @param StartTimeOffset: 嫌疑片段起始的偏移时间,单位:秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 嫌疑片段结束的偏移时间,单位:秒。
# @type EndTimeOffset: Float
# @param Confidence: 嫌疑片段涉黄分数。
# @type Confidence: Float
# @param Label: 嫌疑片段鉴黄结果标签。
# @type Label: String
# @param Suggestion: 嫌疑片段鉴黄结果建议,取值范围:
# pass。
# review。
# block。
# @type Suggestion: String
# @param Url: 嫌疑图片 URL (图片不会永久存储,到达
# PicUrlExpireTime 时间点后图片将被删除)。
# @type Url: String
# @param PicUrlExpireTime: 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type PicUrlExpireTime: String
attr_accessor :StartTimeOffset, :EndTimeOffset, :Confidence, :Label, :Suggestion, :Url, :PicUrlExpireTime
def initialize(starttimeoffset=nil, endtimeoffset=nil, confidence=nil, label=nil, suggestion=nil, url=nil, picurlexpiretime=nil)
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@Confidence = confidence
@Label = label
@Suggestion = suggestion
@Url = url
@PicUrlExpireTime = picurlexpiretime
end
def deserialize(params)
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
@Confidence = params['Confidence']
@Label = params['Label']
@Suggestion = params['Suggestion']
@Url = params['Url']
@PicUrlExpireTime = params['PicUrlExpireTime']
end
end
# 雪碧图信息
class MediaImageSpriteItem < TencentCloud::Common::AbstractModel
# @param Definition: 雪碧图规格,参见[雪碧图参数模板](https://cloud.tencent.com/document/product/266/33480#.E9.9B.AA.E7.A2.A7.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
# @type Definition: Integer
# @param Height: 雪碧图小图的高度。
# @type Height: Integer
# @param Width: 雪碧图小图的宽度。
# @type Width: Integer
# @param TotalCount: 每一张雪碧图大图里小图的数量。
# @type TotalCount: Integer
# @param ImagePathSet: 每一张雪碧图大图的路径。
# @type ImagePathSet: Array
# @param WebVttPath: 雪碧图子图位置与时间关系的 WebVtt 文件路径。WebVtt 文件表明了各个雪碧图小图对应的时间点,以及在雪碧大图里的坐标位置,一般被播放器用于实现预览。
# @type WebVttPath: String
# @param Storage: 雪碧图文件的存储位置。
# @type Storage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
attr_accessor :Definition, :Height, :Width, :TotalCount, :ImagePathSet, :WebVttPath, :Storage
def initialize(definition=nil, height=nil, width=nil, totalcount=nil, imagepathset=nil, webvttpath=nil, storage=nil)
@Definition = definition
@Height = height
@Width = width
@TotalCount = totalcount
@ImagePathSet = imagepathset
@WebVttPath = webvttpath
@Storage = storage
end
def deserialize(params)
@Definition = params['Definition']
@Height = params['Height']
@Width = params['Width']
@TotalCount = params['TotalCount']
@ImagePathSet = params['ImagePathSet']
@WebVttPath = params['WebVttPath']
unless params['Storage'].nil?
@Storage = TaskOutputStorage.new
@Storage.deserialize(params['Storage'])
end
end
end
# 媒体处理的输入对象信息。
class MediaInputInfo < TencentCloud::Common::AbstractModel
# @param Type: 输入来源对象的类型,支持:
# COS:COS源
# URL:URL源
# AWS-S3:AWS 源,目前只支持转码任务
# @type Type: String
# @param CosInputInfo: 当 Type 为 COS 时有效,则该项为必填,表示媒体处理 COS 对象信息。
# @type CosInputInfo: :class:`Tencentcloud::Mps.v20190612.models.CosInputInfo`
# @param UrlInputInfo: 当 Type 为 URL 时有效,则该项为必填,表示媒体处理 URL 对象信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type UrlInputInfo: :class:`Tencentcloud::Mps.v20190612.models.UrlInputInfo`
# @param S3InputInfo: 当 Type 为 AWS-S3 时有效,则该项为必填,表示媒体处理 AWS S3 对象信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type S3InputInfo: :class:`Tencentcloud::Mps.v20190612.models.S3InputInfo`
attr_accessor :Type, :CosInputInfo, :UrlInputInfo, :S3InputInfo
def initialize(type=nil, cosinputinfo=nil, urlinputinfo=nil, s3inputinfo=nil)
@Type = type
@CosInputInfo = cosinputinfo
@UrlInputInfo = urlinputinfo
@S3InputInfo = s3inputinfo
end
def deserialize(params)
@Type = params['Type']
unless params['CosInputInfo'].nil?
@CosInputInfo = CosInputInfo.new
@CosInputInfo.deserialize(params['CosInputInfo'])
end
unless params['UrlInputInfo'].nil?
@UrlInputInfo = UrlInputInfo.new
@UrlInputInfo.deserialize(params['UrlInputInfo'])
end
unless params['S3InputInfo'].nil?
@S3InputInfo = S3InputInfo.new
@S3InputInfo.deserialize(params['S3InputInfo'])
end
end
end
# 点播媒体文件元信息
class MediaMetaData < TencentCloud::Common::AbstractModel
# @param Size: 上传的媒体文件大小(视频为 HLS 时,大小是 m3u8 和 ts 文件大小的总和),单位:字节。
# @type Size: Integer
# @param Container: 容器类型,例如 m4a,mp4 等。
# @type Container: String
# @param Bitrate: 视频流码率平均值与音频流码率平均值之和,单位:bps。
# @type Bitrate: Integer
# @param Height: 视频流高度的最大值,单位:px。
# @type Height: Integer
# @param Width: 视频流宽度的最大值,单位:px。
# @type Width: Integer
# @param Duration: 视频时长,单位:秒。
# @type Duration: Float
# @param Rotate: 视频拍摄时的选择角度,单位:度。
# @type Rotate: Integer
# @param VideoStreamSet: 视频流信息。
# @type VideoStreamSet: Array
# @param AudioStreamSet: 音频流信息。
# @type AudioStreamSet: Array
# @param VideoDuration: 视频时长,单位:秒。
# @type VideoDuration: Float
# @param AudioDuration: 音频时长,单位:秒。
# @type AudioDuration: Float
attr_accessor :Size, :Container, :Bitrate, :Height, :Width, :Duration, :Rotate, :VideoStreamSet, :AudioStreamSet, :VideoDuration, :AudioDuration
def initialize(size=nil, container=nil, bitrate=nil, height=nil, width=nil, duration=nil, rotate=nil, videostreamset=nil, audiostreamset=nil, videoduration=nil, audioduration=nil)
@Size = size
@Container = container
@Bitrate = bitrate
@Height = height
@Width = width
@Duration = duration
@Rotate = rotate
@VideoStreamSet = videostreamset
@AudioStreamSet = audiostreamset
@VideoDuration = videoduration
@AudioDuration = audioduration
end
def deserialize(params)
@Size = params['Size']
@Container = params['Container']
@Bitrate = params['Bitrate']
@Height = params['Height']
@Width = params['Width']
@Duration = params['Duration']
@Rotate = params['Rotate']
unless params['VideoStreamSet'].nil?
@VideoStreamSet = []
params['VideoStreamSet'].each do |i|
mediavideostreamitem_tmp = MediaVideoStreamItem.new
mediavideostreamitem_tmp.deserialize(i)
@VideoStreamSet << mediavideostreamitem_tmp
end
end
unless params['AudioStreamSet'].nil?
@AudioStreamSet = []
params['AudioStreamSet'].each do |i|
mediaaudiostreamitem_tmp = MediaAudioStreamItem.new
mediaaudiostreamitem_tmp.deserialize(i)
@AudioStreamSet << mediaaudiostreamitem_tmp
end
end
@VideoDuration = params['VideoDuration']
@AudioDuration = params['AudioDuration']
end
end
# 对视频转自适应码流任务结果类型
class MediaProcessTaskAdaptiveDynamicStreamingResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 对视频转自适应码流任务的输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AdaptiveDynamicStreamingTaskInput`
# @param Output: 对视频转自适应码流任务的输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.AdaptiveDynamicStreamingInfoItem`
# @param BeginProcessTime: 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type BeginProcessTime: String
# @param FinishTime: 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FinishTime: String
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output, :BeginProcessTime, :FinishTime
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil, beginprocesstime=nil, finishtime=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
@BeginProcessTime = beginprocesstime
@FinishTime = finishtime
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AdaptiveDynamicStreamingTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = AdaptiveDynamicStreamingInfoItem.new
@Output.deserialize(params['Output'])
end
@BeginProcessTime = params['BeginProcessTime']
@FinishTime = params['FinishTime']
end
end
# 转动图任务结果类型
class MediaProcessTaskAnimatedGraphicResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 转动图任务的输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AnimatedGraphicTaskInput`
# @param Output: 转动图任务的输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.MediaAnimatedGraphicsItem`
# @param BeginProcessTime: 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type BeginProcessTime: String
# @param FinishTime: 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FinishTime: String
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output, :BeginProcessTime, :FinishTime
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil, beginprocesstime=nil, finishtime=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
@BeginProcessTime = beginprocesstime
@FinishTime = finishtime
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AnimatedGraphicTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = MediaAnimatedGraphicsItem.new
@Output.deserialize(params['Output'])
end
@BeginProcessTime = params['BeginProcessTime']
@FinishTime = params['FinishTime']
end
end
# 对视频截雪碧图任务结果类型
class MediaProcessTaskImageSpriteResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 对视频截雪碧图任务的输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.ImageSpriteTaskInput`
# @param Output: 对视频截雪碧图任务的输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.MediaImageSpriteItem`
# @param BeginProcessTime: 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type BeginProcessTime: String
# @param FinishTime: 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FinishTime: String
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output, :BeginProcessTime, :FinishTime
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil, beginprocesstime=nil, finishtime=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
@BeginProcessTime = beginprocesstime
@FinishTime = finishtime
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = ImageSpriteTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = MediaImageSpriteItem.new
@Output.deserialize(params['Output'])
end
@BeginProcessTime = params['BeginProcessTime']
@FinishTime = params['FinishTime']
end
end
# 媒体处理任务类型
class MediaProcessTaskInput < TencentCloud::Common::AbstractModel
# @param TranscodeTaskSet: 视频转码任务列表。
# @type TranscodeTaskSet: Array
# @param AnimatedGraphicTaskSet: 视频转动图任务列表。
# @type AnimatedGraphicTaskSet: Array
# @param SnapshotByTimeOffsetTaskSet: 对视频按时间点截图任务列表。
# @type SnapshotByTimeOffsetTaskSet: Array
# @param SampleSnapshotTaskSet: 对视频采样截图任务列表。
# @type SampleSnapshotTaskSet: Array
# @param ImageSpriteTaskSet: 对视频截雪碧图任务列表。
# @type ImageSpriteTaskSet: Array
# @param AdaptiveDynamicStreamingTaskSet: 转自适应码流任务列表。
# @type AdaptiveDynamicStreamingTaskSet: Array
attr_accessor :TranscodeTaskSet, :AnimatedGraphicTaskSet, :SnapshotByTimeOffsetTaskSet, :SampleSnapshotTaskSet, :ImageSpriteTaskSet, :AdaptiveDynamicStreamingTaskSet
def initialize(transcodetaskset=nil, animatedgraphictaskset=nil, snapshotbytimeoffsettaskset=nil, samplesnapshottaskset=nil, imagespritetaskset=nil, adaptivedynamicstreamingtaskset=nil)
@TranscodeTaskSet = transcodetaskset
@AnimatedGraphicTaskSet = animatedgraphictaskset
@SnapshotByTimeOffsetTaskSet = snapshotbytimeoffsettaskset
@SampleSnapshotTaskSet = samplesnapshottaskset
@ImageSpriteTaskSet = imagespritetaskset
@AdaptiveDynamicStreamingTaskSet = adaptivedynamicstreamingtaskset
end
def deserialize(params)
unless params['TranscodeTaskSet'].nil?
@TranscodeTaskSet = []
params['TranscodeTaskSet'].each do |i|
transcodetaskinput_tmp = TranscodeTaskInput.new
transcodetaskinput_tmp.deserialize(i)
@TranscodeTaskSet << transcodetaskinput_tmp
end
end
unless params['AnimatedGraphicTaskSet'].nil?
@AnimatedGraphicTaskSet = []
params['AnimatedGraphicTaskSet'].each do |i|
animatedgraphictaskinput_tmp = AnimatedGraphicTaskInput.new
animatedgraphictaskinput_tmp.deserialize(i)
@AnimatedGraphicTaskSet << animatedgraphictaskinput_tmp
end
end
unless params['SnapshotByTimeOffsetTaskSet'].nil?
@SnapshotByTimeOffsetTaskSet = []
params['SnapshotByTimeOffsetTaskSet'].each do |i|
snapshotbytimeoffsettaskinput_tmp = SnapshotByTimeOffsetTaskInput.new
snapshotbytimeoffsettaskinput_tmp.deserialize(i)
@SnapshotByTimeOffsetTaskSet << snapshotbytimeoffsettaskinput_tmp
end
end
unless params['SampleSnapshotTaskSet'].nil?
@SampleSnapshotTaskSet = []
params['SampleSnapshotTaskSet'].each do |i|
samplesnapshottaskinput_tmp = SampleSnapshotTaskInput.new
samplesnapshottaskinput_tmp.deserialize(i)
@SampleSnapshotTaskSet << samplesnapshottaskinput_tmp
end
end
unless params['ImageSpriteTaskSet'].nil?
@ImageSpriteTaskSet = []
params['ImageSpriteTaskSet'].each do |i|
imagespritetaskinput_tmp = ImageSpriteTaskInput.new
imagespritetaskinput_tmp.deserialize(i)
@ImageSpriteTaskSet << imagespritetaskinput_tmp
end
end
unless params['AdaptiveDynamicStreamingTaskSet'].nil?
@AdaptiveDynamicStreamingTaskSet = []
params['AdaptiveDynamicStreamingTaskSet'].each do |i|
adaptivedynamicstreamingtaskinput_tmp = AdaptiveDynamicStreamingTaskInput.new
adaptivedynamicstreamingtaskinput_tmp.deserialize(i)
@AdaptiveDynamicStreamingTaskSet << adaptivedynamicstreamingtaskinput_tmp
end
end
end
end
# 任务查询结果类型
class MediaProcessTaskResult < TencentCloud::Common::AbstractModel
# @param Type: 任务的类型,可以取的值有:
# Transcode:转码
# AnimatedGraphics:转动图
# SnapshotByTimeOffset:时间点截图
# SampleSnapshot:采样截图
# ImageSprites:雪碧图
# CoverBySnapshot:截图做封面
# AdaptiveDynamicStreaming:自适应码流
# @type Type: String
# @param TranscodeTask: 视频转码任务的查询结果,当任务类型为 Transcode 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TranscodeTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskTranscodeResult`
# @param AnimatedGraphicTask: 视频转动图任务的查询结果,当任务类型为 AnimatedGraphics 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AnimatedGraphicTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskAnimatedGraphicResult`
# @param SnapshotByTimeOffsetTask: 对视频按时间点截图任务的查询结果,当任务类型为 SnapshotByTimeOffset 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SnapshotByTimeOffsetTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskSnapshotByTimeOffsetResult`
# @param SampleSnapshotTask: 对视频采样截图任务的查询结果,当任务类型为 SampleSnapshot 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SampleSnapshotTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskSampleSnapshotResult`
# @param ImageSpriteTask: 对视频截雪碧图任务的查询结果,当任务类型为 ImageSprite 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ImageSpriteTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskImageSpriteResult`
# @param AdaptiveDynamicStreamingTask: 转自适应码流任务查询结果,当任务类型为 AdaptiveDynamicStreaming 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AdaptiveDynamicStreamingTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskAdaptiveDynamicStreamingResult`
attr_accessor :Type, :TranscodeTask, :AnimatedGraphicTask, :SnapshotByTimeOffsetTask, :SampleSnapshotTask, :ImageSpriteTask, :AdaptiveDynamicStreamingTask
def initialize(type=nil, transcodetask=nil, animatedgraphictask=nil, snapshotbytimeoffsettask=nil, samplesnapshottask=nil, imagespritetask=nil, adaptivedynamicstreamingtask=nil)
@Type = type
@TranscodeTask = transcodetask
@AnimatedGraphicTask = animatedgraphictask
@SnapshotByTimeOffsetTask = snapshotbytimeoffsettask
@SampleSnapshotTask = samplesnapshottask
@ImageSpriteTask = imagespritetask
@AdaptiveDynamicStreamingTask = adaptivedynamicstreamingtask
end
def deserialize(params)
@Type = params['Type']
unless params['TranscodeTask'].nil?
@TranscodeTask = MediaProcessTaskTranscodeResult.new
@TranscodeTask.deserialize(params['TranscodeTask'])
end
unless params['AnimatedGraphicTask'].nil?
@AnimatedGraphicTask = MediaProcessTaskAnimatedGraphicResult.new
@AnimatedGraphicTask.deserialize(params['AnimatedGraphicTask'])
end
unless params['SnapshotByTimeOffsetTask'].nil?
@SnapshotByTimeOffsetTask = MediaProcessTaskSnapshotByTimeOffsetResult.new
@SnapshotByTimeOffsetTask.deserialize(params['SnapshotByTimeOffsetTask'])
end
unless params['SampleSnapshotTask'].nil?
@SampleSnapshotTask = MediaProcessTaskSampleSnapshotResult.new
@SampleSnapshotTask.deserialize(params['SampleSnapshotTask'])
end
unless params['ImageSpriteTask'].nil?
@ImageSpriteTask = MediaProcessTaskImageSpriteResult.new
@ImageSpriteTask.deserialize(params['ImageSpriteTask'])
end
unless params['AdaptiveDynamicStreamingTask'].nil?
@AdaptiveDynamicStreamingTask = MediaProcessTaskAdaptiveDynamicStreamingResult.new
@AdaptiveDynamicStreamingTask.deserialize(params['AdaptiveDynamicStreamingTask'])
end
end
end
# 对视频做采样截图任务结果类型
class MediaProcessTaskSampleSnapshotResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 对视频做采样截图任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.SampleSnapshotTaskInput`
# @param Output: 对视频做采样截图任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.MediaSampleSnapshotItem`
# @param BeginProcessTime: 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type BeginProcessTime: String
# @param FinishTime: 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FinishTime: String
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output, :BeginProcessTime, :FinishTime
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil, beginprocesstime=nil, finishtime=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
@BeginProcessTime = beginprocesstime
@FinishTime = finishtime
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = SampleSnapshotTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = MediaSampleSnapshotItem.new
@Output.deserialize(params['Output'])
end
@BeginProcessTime = params['BeginProcessTime']
@FinishTime = params['FinishTime']
end
end
# 对视频按指定时间点截图任务结果类型
class MediaProcessTaskSnapshotByTimeOffsetResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 对视频按指定时间点截图任务输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.SnapshotByTimeOffsetTaskInput`
# @param Output: 对视频按指定时间点截图任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.MediaSnapshotByTimeOffsetItem`
# @param BeginProcessTime: 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type BeginProcessTime: String
# @param FinishTime: 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FinishTime: String
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output, :BeginProcessTime, :FinishTime
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil, beginprocesstime=nil, finishtime=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
@BeginProcessTime = beginprocesstime
@FinishTime = finishtime
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = SnapshotByTimeOffsetTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = MediaSnapshotByTimeOffsetItem.new
@Output.deserialize(params['Output'])
end
@BeginProcessTime = params['BeginProcessTime']
@FinishTime = params['FinishTime']
end
end
# 转码任务结果类型
class MediaProcessTaskTranscodeResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 转码任务的输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.TranscodeTaskInput`
# @param Output: 转码任务的输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.MediaTranscodeItem`
# @param Progress: 转码进度,取值范围 [0-100]
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Progress: Integer
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output, :Progress
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil, progress=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
@Progress = progress
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = TranscodeTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = MediaTranscodeItem.new
@Output.deserialize(params['Output'])
end
@Progress = params['Progress']
end
end
# 采样截图信息
class MediaSampleSnapshotItem < TencentCloud::Common::AbstractModel
# @param Definition: 采样截图规格 ID,参见[采样截图参数模板](https://cloud.tencent.com/document/product/266/33480#.E9.87.87.E6.A0.B7.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
# @type Definition: Integer
# @param SampleType: 采样方式,取值范围:
# Percent:根据百分比间隔采样。
# Time:根据时间间隔采样。
# @type SampleType: String
# @param Interval: 采样间隔
# 当 SampleType 为 Percent 时,该值表示多少百分比一张图。
# 当 SampleType 为 Time 时,该值表示多少时间间隔一张图,单位秒, 第一张图均为视频首帧。
# @type Interval: Integer
# @param Storage: 截图后文件的存储位置。
# @type Storage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param ImagePathSet: 生成的截图 path 列表。
# @type ImagePathSet: Array
# @param WaterMarkDefinition: 截图如果被打上了水印,被打水印的模板 ID 列表。
# @type WaterMarkDefinition: Array
attr_accessor :Definition, :SampleType, :Interval, :Storage, :ImagePathSet, :WaterMarkDefinition
def initialize(definition=nil, sampletype=nil, interval=nil, storage=nil, imagepathset=nil, watermarkdefinition=nil)
@Definition = definition
@SampleType = sampletype
@Interval = interval
@Storage = storage
@ImagePathSet = imagepathset
@WaterMarkDefinition = watermarkdefinition
end
def deserialize(params)
@Definition = params['Definition']
@SampleType = params['SampleType']
@Interval = params['Interval']
unless params['Storage'].nil?
@Storage = TaskOutputStorage.new
@Storage.deserialize(params['Storage'])
end
@ImagePathSet = params['ImagePathSet']
@WaterMarkDefinition = params['WaterMarkDefinition']
end
end
# 点播文件指定时间点截图信息
class MediaSnapshotByTimeOffsetItem < TencentCloud::Common::AbstractModel
# @param Definition: 指定时间点截图规格,参见[指定时间点截图参数模板](https://cloud.tencent.com/document/product/266/33480#.E6.97.B6.E9.97.B4.E7.82.B9.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
# @type Definition: Integer
# @param PicInfoSet: 同一规格的截图信息集合,每个元素代表一张截图。
# @type PicInfoSet: Array
# @param Storage: 指定时间点截图文件的存储位置。
# @type Storage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
attr_accessor :Definition, :PicInfoSet, :Storage
def initialize(definition=nil, picinfoset=nil, storage=nil)
@Definition = definition
@PicInfoSet = picinfoset
@Storage = storage
end
def deserialize(params)
@Definition = params['Definition']
unless params['PicInfoSet'].nil?
@PicInfoSet = []
params['PicInfoSet'].each do |i|
mediasnapshotbytimepicinfoitem_tmp = MediaSnapshotByTimePicInfoItem.new
mediasnapshotbytimepicinfoitem_tmp.deserialize(i)
@PicInfoSet << mediasnapshotbytimepicinfoitem_tmp
end
end
unless params['Storage'].nil?
@Storage = TaskOutputStorage.new
@Storage.deserialize(params['Storage'])
end
end
end
# 指定时间点截图信息
class MediaSnapshotByTimePicInfoItem < TencentCloud::Common::AbstractModel
# @param TimeOffset: 该张截图对应视频文件中的时间偏移,单位为秒。
# @type TimeOffset: Float
# @param Path: 该张截图的路径。
# @type Path: String
# @param WaterMarkDefinition: 截图如果被打上了水印,被打水印的模板 ID 列表。
# @type WaterMarkDefinition: Array
attr_accessor :TimeOffset, :Path, :WaterMarkDefinition
def initialize(timeoffset=nil, path=nil, watermarkdefinition=nil)
@TimeOffset = timeoffset
@Path = path
@WaterMarkDefinition = watermarkdefinition
end
def deserialize(params)
@TimeOffset = params['TimeOffset']
@Path = params['Path']
@WaterMarkDefinition = params['WaterMarkDefinition']
end
end
# 转码信息
class MediaTranscodeItem < TencentCloud::Common::AbstractModel
# @param OutputStorage: 转码后文件的目标存储。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param Path: 转码后的视频文件路径。
# @type Path: String
# @param Definition: 转码规格 ID,参见[转码参数模板](https://cloud.tencent.com/document/product/862/37042)。
# @type Definition: Integer
# @param Bitrate: 视频流码率平均值与音频流码率平均值之和, 单位:bps。
# @type Bitrate: Integer
# @param Height: 视频流高度的最大值,单位:px。
# @type Height: Integer
# @param Width: 视频流宽度的最大值,单位:px。
# @type Width: Integer
# @param Size: 媒体文件总大小(视频为 HLS 时,大小是 m3u8 和 ts 文件大小的总和),单位:字节。
# @type Size: Integer
# @param Duration: 视频时长,单位:秒。
# @type Duration: Float
# @param Container: 容器类型,例如 m4a,mp4 等。
# @type Container: String
# @param Md5: 视频的 md5 值。
# @type Md5: String
# @param AudioStreamSet: 音频流信息。
# @type AudioStreamSet: Array
# @param VideoStreamSet: 视频流信息。
# @type VideoStreamSet: Array
attr_accessor :OutputStorage, :Path, :Definition, :Bitrate, :Height, :Width, :Size, :Duration, :Container, :Md5, :AudioStreamSet, :VideoStreamSet
def initialize(outputstorage=nil, path=nil, definition=nil, bitrate=nil, height=nil, width=nil, size=nil, duration=nil, container=nil, md5=nil, audiostreamset=nil, videostreamset=nil)
@OutputStorage = outputstorage
@Path = path
@Definition = definition
@Bitrate = bitrate
@Height = height
@Width = width
@Size = size
@Duration = duration
@Container = container
@Md5 = md5
@AudioStreamSet = audiostreamset
@VideoStreamSet = videostreamset
end
def deserialize(params)
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@Path = params['Path']
@Definition = params['Definition']
@Bitrate = params['Bitrate']
@Height = params['Height']
@Width = params['Width']
@Size = params['Size']
@Duration = params['Duration']
@Container = params['Container']
@Md5 = params['Md5']
unless params['AudioStreamSet'].nil?
@AudioStreamSet = []
params['AudioStreamSet'].each do |i|
mediaaudiostreamitem_tmp = MediaAudioStreamItem.new
mediaaudiostreamitem_tmp.deserialize(i)
@AudioStreamSet << mediaaudiostreamitem_tmp
end
end
unless params['VideoStreamSet'].nil?
@VideoStreamSet = []
params['VideoStreamSet'].each do |i|
mediavideostreamitem_tmp = MediaVideoStreamItem.new
mediavideostreamitem_tmp.deserialize(i)
@VideoStreamSet << mediavideostreamitem_tmp
end
end
end
end
# 点播文件视频流信息
class MediaVideoStreamItem < TencentCloud::Common::AbstractModel
# @param Bitrate: 视频流的码率,单位:bps。
# @type Bitrate: Integer
# @param Height: 视频流的高度,单位:px。
# @type Height: Integer
# @param Width: 视频流的宽度,单位:px。
# @type Width: Integer
# @param Codec: 视频流的编码格式,例如 h264。
# @type Codec: String
# @param Fps: 帧率,单位:hz。
# @type Fps: Integer
# @param ColorPrimaries: 色彩空间。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ColorPrimaries: String
# @param ColorSpace: 色彩空间。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ColorSpace: String
# @param ColorTransfer: 色彩空间。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ColorTransfer: String
# @param HdrType: HDR类型。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type HdrType: String
# @param Codecs: 视频Codecs。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Codecs: String
attr_accessor :Bitrate, :Height, :Width, :Codec, :Fps, :ColorPrimaries, :ColorSpace, :ColorTransfer, :HdrType, :Codecs
def initialize(bitrate=nil, height=nil, width=nil, codec=nil, fps=nil, colorprimaries=nil, colorspace=nil, colortransfer=nil, hdrtype=nil, codecs=nil)
@Bitrate = bitrate
@Height = height
@Width = width
@Codec = codec
@Fps = fps
@ColorPrimaries = colorprimaries
@ColorSpace = colorspace
@ColorTransfer = colortransfer
@HdrType = hdrtype
@Codecs = codecs
end
def deserialize(params)
@Bitrate = params['Bitrate']
@Height = params['Height']
@Width = params['Width']
@Codec = params['Codec']
@Fps = params['Fps']
@ColorPrimaries = params['ColorPrimaries']
@ColorSpace = params['ColorSpace']
@ColorTransfer = params['ColorTransfer']
@HdrType = params['HdrType']
@Codecs = params['Codecs']
end
end
# ModifyAIAnalysisTemplate请求参数结构体
class ModifyAIAnalysisTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 视频内容分析模板唯一标识。
# @type Definition: Integer
# @param Name: 视频内容分析模板名称,长度限制:64 个字符。
# @type Name: String
# @param Comment: 视频内容分析模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param ClassificationConfigure: 智能分类任务控制参数。
# @type ClassificationConfigure: :class:`Tencentcloud::Mps.v20190612.models.ClassificationConfigureInfoForUpdate`
# @param TagConfigure: 智能标签任务控制参数。
# @type TagConfigure: :class:`Tencentcloud::Mps.v20190612.models.TagConfigureInfoForUpdate`
# @param CoverConfigure: 智能封面任务控制参数。
# @type CoverConfigure: :class:`Tencentcloud::Mps.v20190612.models.CoverConfigureInfoForUpdate`
# @param FrameTagConfigure: 智能按帧标签任务控制参数。
# @type FrameTagConfigure: :class:`Tencentcloud::Mps.v20190612.models.FrameTagConfigureInfoForUpdate`
attr_accessor :Definition, :Name, :Comment, :ClassificationConfigure, :TagConfigure, :CoverConfigure, :FrameTagConfigure
def initialize(definition=nil, name=nil, comment=nil, classificationconfigure=nil, tagconfigure=nil, coverconfigure=nil, frametagconfigure=nil)
@Definition = definition
@Name = name
@Comment = comment
@ClassificationConfigure = classificationconfigure
@TagConfigure = tagconfigure
@CoverConfigure = coverconfigure
@FrameTagConfigure = frametagconfigure
end
def deserialize(params)
@Definition = params['Definition']
@Name = params['Name']
@Comment = params['Comment']
unless params['ClassificationConfigure'].nil?
@ClassificationConfigure = ClassificationConfigureInfoForUpdate.new
@ClassificationConfigure.deserialize(params['ClassificationConfigure'])
end
unless params['TagConfigure'].nil?
@TagConfigure = TagConfigureInfoForUpdate.new
@TagConfigure.deserialize(params['TagConfigure'])
end
unless params['CoverConfigure'].nil?
@CoverConfigure = CoverConfigureInfoForUpdate.new
@CoverConfigure.deserialize(params['CoverConfigure'])
end
unless params['FrameTagConfigure'].nil?
@FrameTagConfigure = FrameTagConfigureInfoForUpdate.new
@FrameTagConfigure.deserialize(params['FrameTagConfigure'])
end
end
end
# ModifyAIAnalysisTemplate返回参数结构体
class ModifyAIAnalysisTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# ModifyAIRecognitionTemplate请求参数结构体
class ModifyAIRecognitionTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 视频内容识别模板唯一标识。
# @type Definition: Integer
# @param Name: 视频内容识别模板名称,长度限制:64 个字符。
# @type Name: String
# @param Comment: 视频内容识别模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param FaceConfigure: 人脸识别控制参数。
# @type FaceConfigure: :class:`Tencentcloud::Mps.v20190612.models.FaceConfigureInfoForUpdate`
# @param OcrFullTextConfigure: 文本全文识别控制参数。
# @type OcrFullTextConfigure: :class:`Tencentcloud::Mps.v20190612.models.OcrFullTextConfigureInfoForUpdate`
# @param OcrWordsConfigure: 文本关键词识别控制参数。
# @type OcrWordsConfigure: :class:`Tencentcloud::Mps.v20190612.models.OcrWordsConfigureInfoForUpdate`
# @param AsrFullTextConfigure: 语音全文识别控制参数。
# @type AsrFullTextConfigure: :class:`Tencentcloud::Mps.v20190612.models.AsrFullTextConfigureInfoForUpdate`
# @param AsrWordsConfigure: 语音关键词识别控制参数。
# @type AsrWordsConfigure: :class:`Tencentcloud::Mps.v20190612.models.AsrWordsConfigureInfoForUpdate`
# @param TranslateConfigure: 语音翻译控制参数。
# @type TranslateConfigure: :class:`Tencentcloud::Mps.v20190612.models.TranslateConfigureInfoForUpdate`
attr_accessor :Definition, :Name, :Comment, :FaceConfigure, :OcrFullTextConfigure, :OcrWordsConfigure, :AsrFullTextConfigure, :AsrWordsConfigure, :TranslateConfigure
def initialize(definition=nil, name=nil, comment=nil, faceconfigure=nil, ocrfulltextconfigure=nil, ocrwordsconfigure=nil, asrfulltextconfigure=nil, asrwordsconfigure=nil, translateconfigure=nil)
@Definition = definition
@Name = name
@Comment = comment
@FaceConfigure = faceconfigure
@OcrFullTextConfigure = ocrfulltextconfigure
@OcrWordsConfigure = ocrwordsconfigure
@AsrFullTextConfigure = asrfulltextconfigure
@AsrWordsConfigure = asrwordsconfigure
@TranslateConfigure = translateconfigure
end
def deserialize(params)
@Definition = params['Definition']
@Name = params['Name']
@Comment = params['Comment']
unless params['FaceConfigure'].nil?
@FaceConfigure = FaceConfigureInfoForUpdate.new
@FaceConfigure.deserialize(params['FaceConfigure'])
end
unless params['OcrFullTextConfigure'].nil?
@OcrFullTextConfigure = OcrFullTextConfigureInfoForUpdate.new
@OcrFullTextConfigure.deserialize(params['OcrFullTextConfigure'])
end
unless params['OcrWordsConfigure'].nil?
@OcrWordsConfigure = OcrWordsConfigureInfoForUpdate.new
@OcrWordsConfigure.deserialize(params['OcrWordsConfigure'])
end
unless params['AsrFullTextConfigure'].nil?
@AsrFullTextConfigure = AsrFullTextConfigureInfoForUpdate.new
@AsrFullTextConfigure.deserialize(params['AsrFullTextConfigure'])
end
unless params['AsrWordsConfigure'].nil?
@AsrWordsConfigure = AsrWordsConfigureInfoForUpdate.new
@AsrWordsConfigure.deserialize(params['AsrWordsConfigure'])
end
unless params['TranslateConfigure'].nil?
@TranslateConfigure = TranslateConfigureInfoForUpdate.new
@TranslateConfigure.deserialize(params['TranslateConfigure'])
end
end
end
# ModifyAIRecognitionTemplate返回参数结构体
class ModifyAIRecognitionTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# ModifyAdaptiveDynamicStreamingTemplate请求参数结构体
class ModifyAdaptiveDynamicStreamingTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 转自适应码流模板唯一标识。
# @type Definition: Integer
# @param Name: 模板名称,长度限制:64 个字符。
# @type Name: String
# @param Format: 转自适应码流格式,取值范围:
# HLS,
# MPEG-DASH。
# @type Format: String
# @param DisableHigherVideoBitrate: 是否禁止视频低码率转高码率,取值范围:
# 0:否,
# 1:是。
# @type DisableHigherVideoBitrate: Integer
# @param DisableHigherVideoResolution: 是否禁止视频分辨率转高分辨率,取值范围:
# 0:否,
# 1:是。
# @type DisableHigherVideoResolution: Integer
# @param StreamInfos: 转自适应码流输入流参数信息,最多输入10路流。
# 注意:各个流的帧率必须保持一致;如果不一致,采用第一个流的帧率作为输出帧率。
# @type StreamInfos: Array
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
attr_accessor :Definition, :Name, :Format, :DisableHigherVideoBitrate, :DisableHigherVideoResolution, :StreamInfos, :Comment
def initialize(definition=nil, name=nil, format=nil, disablehighervideobitrate=nil, disablehighervideoresolution=nil, streaminfos=nil, comment=nil)
@Definition = definition
@Name = name
@Format = format
@DisableHigherVideoBitrate = disablehighervideobitrate
@DisableHigherVideoResolution = disablehighervideoresolution
@StreamInfos = streaminfos
@Comment = comment
end
def deserialize(params)
@Definition = params['Definition']
@Name = params['Name']
@Format = params['Format']
@DisableHigherVideoBitrate = params['DisableHigherVideoBitrate']
@DisableHigherVideoResolution = params['DisableHigherVideoResolution']
unless params['StreamInfos'].nil?
@StreamInfos = []
params['StreamInfos'].each do |i|
adaptivestreamtemplate_tmp = AdaptiveStreamTemplate.new
adaptivestreamtemplate_tmp.deserialize(i)
@StreamInfos << adaptivestreamtemplate_tmp
end
end
@Comment = params['Comment']
end
end
# ModifyAdaptiveDynamicStreamingTemplate返回参数结构体
class ModifyAdaptiveDynamicStreamingTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# ModifyAnimatedGraphicsTemplate请求参数结构体
class ModifyAnimatedGraphicsTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 转动图模板唯一标识。
# @type Definition: Integer
# @param Name: 转动图模板名称,长度限制:64 个字符。
# @type Name: String
# @param Width: 动图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 动图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# @type ResolutionAdaptive: String
# @param Format: 动图格式,取值为 gif 和 webp。
# @type Format: String
# @param Fps: 帧率,取值范围:[1, 30],单位:Hz。
# @type Fps: Integer
# @param Quality: 图片质量,取值范围:[1, 100],默认值为 75。
# @type Quality: Float
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
attr_accessor :Definition, :Name, :Width, :Height, :ResolutionAdaptive, :Format, :Fps, :Quality, :Comment
def initialize(definition=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil, fps=nil, quality=nil, comment=nil)
@Definition = definition
@Name = name
@Width = width
@Height = height
@ResolutionAdaptive = resolutionadaptive
@Format = format
@Fps = fps
@Quality = quality
@Comment = comment
end
def deserialize(params)
@Definition = params['Definition']
@Name = params['Name']
@Width = params['Width']
@Height = params['Height']
@ResolutionAdaptive = params['ResolutionAdaptive']
@Format = params['Format']
@Fps = params['Fps']
@Quality = params['Quality']
@Comment = params['Comment']
end
end
# ModifyAnimatedGraphicsTemplate返回参数结构体
class ModifyAnimatedGraphicsTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# ModifyContentReviewTemplate请求参数结构体
class ModifyContentReviewTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 内容审核模板唯一标识。
# @type Definition: Integer
# @param Name: 内容审核模板名称,长度限制:64 个字符。
# @type Name: String
# @param Comment: 内容审核模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param PornConfigure: 令人反感的信息的控制参数。
# @type PornConfigure: :class:`Tencentcloud::Mps.v20190612.models.PornConfigureInfoForUpdate`
# @param TerrorismConfigure: 令人不安全的信息的控制参数。
# @type TerrorismConfigure: :class:`Tencentcloud::Mps.v20190612.models.TerrorismConfigureInfoForUpdate`
# @param PoliticalConfigure: 令人不适宜的控制参数。
# @type PoliticalConfigure: :class:`Tencentcloud::Mps.v20190612.models.PoliticalConfigureInfoForUpdate`
# @param ProhibitedConfigure: 违禁控制参数。违禁内容包括:
# 谩骂;
# 涉毒违法。
# 注意:此参数尚未支持。
# @type ProhibitedConfigure: :class:`Tencentcloud::Mps.v20190612.models.ProhibitedConfigureInfoForUpdate`
# @param UserDefineConfigure: 用户自定义内容审核控制参数。
# @type UserDefineConfigure: :class:`Tencentcloud::Mps.v20190612.models.UserDefineConfigureInfoForUpdate`
attr_accessor :Definition, :Name, :Comment, :PornConfigure, :TerrorismConfigure, :PoliticalConfigure, :ProhibitedConfigure, :UserDefineConfigure
def initialize(definition=nil, name=nil, comment=nil, pornconfigure=nil, terrorismconfigure=nil, politicalconfigure=nil, prohibitedconfigure=nil, userdefineconfigure=nil)
@Definition = definition
@Name = name
@Comment = comment
@PornConfigure = pornconfigure
@TerrorismConfigure = terrorismconfigure
@PoliticalConfigure = politicalconfigure
@ProhibitedConfigure = prohibitedconfigure
@UserDefineConfigure = userdefineconfigure
end
def deserialize(params)
@Definition = params['Definition']
@Name = params['Name']
@Comment = params['Comment']
unless params['PornConfigure'].nil?
@PornConfigure = PornConfigureInfoForUpdate.new
@PornConfigure.deserialize(params['PornConfigure'])
end
unless params['TerrorismConfigure'].nil?
@TerrorismConfigure = TerrorismConfigureInfoForUpdate.new
@TerrorismConfigure.deserialize(params['TerrorismConfigure'])
end
unless params['PoliticalConfigure'].nil?
@PoliticalConfigure = PoliticalConfigureInfoForUpdate.new
@PoliticalConfigure.deserialize(params['PoliticalConfigure'])
end
unless params['ProhibitedConfigure'].nil?
@ProhibitedConfigure = ProhibitedConfigureInfoForUpdate.new
@ProhibitedConfigure.deserialize(params['ProhibitedConfigure'])
end
unless params['UserDefineConfigure'].nil?
@UserDefineConfigure = UserDefineConfigureInfoForUpdate.new
@UserDefineConfigure.deserialize(params['UserDefineConfigure'])
end
end
end
# ModifyContentReviewTemplate返回参数结构体
class ModifyContentReviewTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# ModifyImageSpriteTemplate请求参数结构体
class ModifyImageSpriteTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 雪碧图模板唯一标识。
# @type Definition: Integer
# @param Name: 雪碧图模板名称,长度限制:64 个字符。
# @type Name: String
# @param Width: 雪碧图中小图的宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 雪碧图中小图的高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# @type ResolutionAdaptive: String
# @param SampleType: 采样类型,取值:
# Percent:按百分比。
# Time:按时间间隔。
# @type SampleType: String
# @param SampleInterval: 采样间隔。
# 当 SampleType 为 Percent 时,指定采样间隔的百分比。
# 当 SampleType 为 Time 时,指定采样间隔的时间,单位为秒。
# @type SampleInterval: Integer
# @param RowCount: 雪碧图中小图的行数。
# @type RowCount: Integer
# @param ColumnCount: 雪碧图中小图的列数。
# @type ColumnCount: Integer
# @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
# stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;
# black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。
# 默认值:black 。
# @type FillType: String
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param Format: 图片格式,取值可以为 jpg、png、webp。
# @type Format: String
attr_accessor :Definition, :Name, :Width, :Height, :ResolutionAdaptive, :SampleType, :SampleInterval, :RowCount, :ColumnCount, :FillType, :Comment, :Format
def initialize(definition=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, sampletype=nil, sampleinterval=nil, rowcount=nil, columncount=nil, filltype=nil, comment=nil, format=nil)
@Definition = definition
@Name = name
@Width = width
@Height = height
@ResolutionAdaptive = resolutionadaptive
@SampleType = sampletype
@SampleInterval = sampleinterval
@RowCount = rowcount
@ColumnCount = columncount
@FillType = filltype
@Comment = comment
@Format = format
end
def deserialize(params)
@Definition = params['Definition']
@Name = params['Name']
@Width = params['Width']
@Height = params['Height']
@ResolutionAdaptive = params['ResolutionAdaptive']
@SampleType = params['SampleType']
@SampleInterval = params['SampleInterval']
@RowCount = params['RowCount']
@ColumnCount = params['ColumnCount']
@FillType = params['FillType']
@Comment = params['Comment']
@Format = params['Format']
end
end
# ModifyImageSpriteTemplate返回参数结构体
class ModifyImageSpriteTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# 修改输入信息的参数。
class ModifyInput < TencentCloud::Common::AbstractModel
# @param InputId: 输入Id。
# @type InputId: String
# @param InputName: 输入名称。
# @type InputName: String
# @param Description: 输入描述。
# @type Description: String
# @param AllowIpList: 允许的推流的IP,CIDR格式。
# @type AllowIpList: Array
# @param SRTSettings: SRT的配置信息。
# @type SRTSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputSRTSettings`
# @param RTPSettings: RTP的配置信息。
# @type RTPSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRTPSettings`
# @param Protocol: 输入的协议,可选[SRT|RTP|RTMP]。
# 当输出包含RTP时,输入只能是RTP。
# 当输出包含RTMP时,输入可以是SRT/RTMP。
# 当输出包含SRT时,输入只能是SRT。
# @type Protocol: String
# @param FailOver: 输入的主备开关,可选[OPEN|CLOSE]。
# @type FailOver: String
# @param RTMPPullSettings: RTMP_PULL的配置信息。
# @type RTMPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRTMPPullSettings`
# @param RTSPPullSettings: RTSP_PULL的配置信息。
# @type RTSPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRTSPPullSettings`
# @param HLSPullSettings: HLS_PULL的配置信息。
# @type HLSPullSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputHLSPullSettings`
# @param ResilientStream: 延播平滑吐流配置信息。
# @type ResilientStream: :class:`Tencentcloud::Mps.v20190612.models.ResilientStreamConf`
attr_accessor :InputId, :InputName, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :Protocol, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream
def initialize(inputid=nil, inputname=nil, description=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, protocol=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil, hlspullsettings=nil, resilientstream=nil)
@InputId = inputid
@InputName = inputname
@Description = description
@AllowIpList = allowiplist
@SRTSettings = srtsettings
@RTPSettings = rtpsettings
@Protocol = protocol
@FailOver = failover
@RTMPPullSettings = rtmppullsettings
@RTSPPullSettings = rtsppullsettings
@HLSPullSettings = hlspullsettings
@ResilientStream = resilientstream
end
def deserialize(params)
@InputId = params['InputId']
@InputName = params['InputName']
@Description = params['Description']
@AllowIpList = params['AllowIpList']
unless params['SRTSettings'].nil?
@SRTSettings = CreateInputSRTSettings.new
@SRTSettings.deserialize(params['SRTSettings'])
end
unless params['RTPSettings'].nil?
@RTPSettings = CreateInputRTPSettings.new
@RTPSettings.deserialize(params['RTPSettings'])
end
@Protocol = params['Protocol']
@FailOver = params['FailOver']
unless params['RTMPPullSettings'].nil?
@RTMPPullSettings = CreateInputRTMPPullSettings.new
@RTMPPullSettings.deserialize(params['RTMPPullSettings'])
end
unless params['RTSPPullSettings'].nil?
@RTSPPullSettings = CreateInputRTSPPullSettings.new
@RTSPPullSettings.deserialize(params['RTSPPullSettings'])
end
unless params['HLSPullSettings'].nil?
@HLSPullSettings = CreateInputHLSPullSettings.new
@HLSPullSettings.deserialize(params['HLSPullSettings'])
end
unless params['ResilientStream'].nil?
@ResilientStream = ResilientStreamConf.new
@ResilientStream.deserialize(params['ResilientStream'])
end
end
end
# 修改Output配置。
class ModifyOutputInfo < TencentCloud::Common::AbstractModel
# @param OutputId: 需要修改的Output的Id。
# @type OutputId: String
# @param OutputName: 输出的名称。
# @type OutputName: String
# @param Description: 输出的描述。
# @type Description: String
# @param Protocol: 输出的转推协议,支持SRT|RTP|RTMP。
# @type Protocol: String
# @param SRTSettings: 转推SRT的配置。
# @type SRTSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateOutputSRTSettings`
# @param RTPSettings: 转推RTP的配置。
# @type RTPSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateOutputInfoRTPSettings`
# @param RTMPSettings: 转推RTMP的配置。
# @type RTMPSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateOutputRTMPSettings`
# @param AllowIpList: IP白名单列表,格式为CIDR,如0.0.0.0/0。
# 当Protocol为RTMP_PULL有效,为空代表不限制客户端IP。
# @type AllowIpList: Array
# @param MaxConcurrent: 最大拉流并发数,最大4,默认4。
# @type MaxConcurrent: Integer
attr_accessor :OutputId, :OutputName, :Description, :Protocol, :SRTSettings, :RTPSettings, :RTMPSettings, :AllowIpList, :MaxConcurrent
def initialize(outputid=nil, outputname=nil, description=nil, protocol=nil, srtsettings=nil, rtpsettings=nil, rtmpsettings=nil, allowiplist=nil, maxconcurrent=nil)
@OutputId = outputid
@OutputName = outputname
@Description = description
@Protocol = protocol
@SRTSettings = srtsettings
@RTPSettings = rtpsettings
@RTMPSettings = rtmpsettings
@AllowIpList = allowiplist
@MaxConcurrent = maxconcurrent
end
def deserialize(params)
@OutputId = params['OutputId']
@OutputName = params['OutputName']
@Description = params['Description']
@Protocol = params['Protocol']
unless params['SRTSettings'].nil?
@SRTSettings = CreateOutputSRTSettings.new
@SRTSettings.deserialize(params['SRTSettings'])
end
unless params['RTPSettings'].nil?
@RTPSettings = CreateOutputInfoRTPSettings.new
@RTPSettings.deserialize(params['RTPSettings'])
end
unless params['RTMPSettings'].nil?
@RTMPSettings = CreateOutputRTMPSettings.new
@RTMPSettings.deserialize(params['RTMPSettings'])
end
@AllowIpList = params['AllowIpList']
@MaxConcurrent = params['MaxConcurrent']
end
end
# ModifyPersonSample请求参数结构体
class ModifyPersonSampleRequest < TencentCloud::Common::AbstractModel
# @param PersonId: 素材 ID。
# @type PersonId: String
# @param Name: 名称,长度限制:128 个字符。
# @type Name: String
# @param Description: 描述,长度限制:1024 个字符。
# @type Description: String
# @param Usages: 素材应用场景,可选值:
# 1. Recognition:用于内容识别,等价于 Recognition.Face。
# 2. Review:用于不适宜的内容识别,等价于 Review.Face。
# 3. All:用于内容识别、不适宜的内容识别,等价于 1+2。
# @type Usages: Array
# @param FaceOperationInfo: 五官操作信息。
# @type FaceOperationInfo: :class:`Tencentcloud::Mps.v20190612.models.AiSampleFaceOperation`
# @param TagOperationInfo: 标签操作信息。
# @type TagOperationInfo: :class:`Tencentcloud::Mps.v20190612.models.AiSampleTagOperation`
attr_accessor :PersonId, :Name, :Description, :Usages, :FaceOperationInfo, :TagOperationInfo
def initialize(personid=nil, name=nil, description=nil, usages=nil, faceoperationinfo=nil, tagoperationinfo=nil)
@PersonId = personid
@Name = name
@Description = description
@Usages = usages
@FaceOperationInfo = faceoperationinfo
@TagOperationInfo = tagoperationinfo
end
def deserialize(params)
@PersonId = params['PersonId']
@Name = params['Name']
@Description = params['Description']
@Usages = params['Usages']
unless params['FaceOperationInfo'].nil?
@FaceOperationInfo = AiSampleFaceOperation.new
@FaceOperationInfo.deserialize(params['FaceOperationInfo'])
end
unless params['TagOperationInfo'].nil?
@TagOperationInfo = AiSampleTagOperation.new
@TagOperationInfo.deserialize(params['TagOperationInfo'])
end
end
end
# ModifyPersonSample返回参数结构体
class ModifyPersonSampleResponse < TencentCloud::Common::AbstractModel
# @param Person: 素材信息。
# @type Person: :class:`Tencentcloud::Mps.v20190612.models.AiSamplePerson`
# @param FailFaceInfoSet: 处理失败的五官信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FailFaceInfoSet: Array
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Person, :FailFaceInfoSet, :RequestId
def initialize(person=nil, failfaceinfoset=nil, requestid=nil)
@Person = person
@FailFaceInfoSet = failfaceinfoset
@RequestId = requestid
end
def deserialize(params)
unless params['Person'].nil?
@Person = AiSamplePerson.new
@Person.deserialize(params['Person'])
end
unless params['FailFaceInfoSet'].nil?
@FailFaceInfoSet = []
params['FailFaceInfoSet'].each do |i|
aisamplefailfaceinfo_tmp = AiSampleFailFaceInfo.new
aisamplefailfaceinfo_tmp.deserialize(i)
@FailFaceInfoSet << aisamplefailfaceinfo_tmp
end
end
@RequestId = params['RequestId']
end
end
# ModifySampleSnapshotTemplate请求参数结构体
class ModifySampleSnapshotTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 采样截图模板唯一标识。
# @type Definition: Integer
# @param Name: 采样截图模板名称,长度限制:64 个字符。
# @type Name: String
# @param Width: 截图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 截图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# @type ResolutionAdaptive: String
# @param SampleType: 采样截图类型,取值:
# Percent:按百分比。
# Time:按时间间隔。
# @type SampleType: String
# @param SampleInterval: 采样间隔。
# 当 SampleType 为 Percent 时,指定采样间隔的百分比。
# 当 SampleType 为 Time 时,指定采样间隔的时间,单位为秒。
# @type SampleInterval: Integer
# @param Format: 图片格式,取值为 jpg、png、webp。
# @type Format: String
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
# stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;
# black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。
# white:留白,保持视频宽高比不变,边缘剩余部分使用白色填充。
# gauss:高斯模糊,保持视频宽高比不变,边缘剩余部分使用高斯模糊。
# 默认值:black 。
# @type FillType: String
attr_accessor :Definition, :Name, :Width, :Height, :ResolutionAdaptive, :SampleType, :SampleInterval, :Format, :Comment, :FillType
def initialize(definition=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, sampletype=nil, sampleinterval=nil, format=nil, comment=nil, filltype=nil)
@Definition = definition
@Name = name
@Width = width
@Height = height
@ResolutionAdaptive = resolutionadaptive
@SampleType = sampletype
@SampleInterval = sampleinterval
@Format = format
@Comment = comment
@FillType = filltype
end
def deserialize(params)
@Definition = params['Definition']
@Name = params['Name']
@Width = params['Width']
@Height = params['Height']
@ResolutionAdaptive = params['ResolutionAdaptive']
@SampleType = params['SampleType']
@SampleInterval = params['SampleInterval']
@Format = params['Format']
@Comment = params['Comment']
@FillType = params['FillType']
end
end
# ModifySampleSnapshotTemplate返回参数结构体
class ModifySampleSnapshotTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# ModifySchedule请求参数结构体
class ModifyScheduleRequest < TencentCloud::Common::AbstractModel
# @param ScheduleId: 编排唯一标识。
# @type ScheduleId: Integer
# @param ScheduleName: 编排名称。
# @type ScheduleName: String
# @param Trigger: 编排绑定的触发规则。
# @type Trigger: :class:`Tencentcloud::Mps.v20190612.models.WorkflowTrigger`
# @param Activities: 编排任务列表。
# 注意:内部不允许部分更新,如果需要更新需全量提交编排任务列表。
# @type Activities: Array
# @param OutputStorage: 媒体处理的文件输出存储位置。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputDir: 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾。
# 注意:如果设置为空,则表示取消老配置的OutputDir值。
# @type OutputDir: String
# @param TaskNotifyConfig: 任务的事件通知配置。
# @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.TaskNotifyConfig`
attr_accessor :ScheduleId, :ScheduleName, :Trigger, :Activities, :OutputStorage, :OutputDir, :TaskNotifyConfig
def initialize(scheduleid=nil, schedulename=nil, trigger=nil, activities=nil, outputstorage=nil, outputdir=nil, tasknotifyconfig=nil)
@ScheduleId = scheduleid
@ScheduleName = schedulename
@Trigger = trigger
@Activities = activities
@OutputStorage = outputstorage
@OutputDir = outputdir
@TaskNotifyConfig = tasknotifyconfig
end
def deserialize(params)
@ScheduleId = params['ScheduleId']
@ScheduleName = params['ScheduleName']
unless params['Trigger'].nil?
@Trigger = WorkflowTrigger.new
@Trigger.deserialize(params['Trigger'])
end
unless params['Activities'].nil?
@Activities = []
params['Activities'].each do |i|
activity_tmp = Activity.new
activity_tmp.deserialize(i)
@Activities << activity_tmp
end
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputDir = params['OutputDir']
unless params['TaskNotifyConfig'].nil?
@TaskNotifyConfig = TaskNotifyConfig.new
@TaskNotifyConfig.deserialize(params['TaskNotifyConfig'])
end
end
end
# ModifySchedule返回参数结构体
class ModifyScheduleResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# ModifySnapshotByTimeOffsetTemplate请求参数结构体
class ModifySnapshotByTimeOffsetTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 指定时间点截图模板唯一标识。
# @type Definition: Integer
# @param Name: 指定时间点截图模板名称,长度限制:64 个字符。
# @type Name: String
# @param Width: 截图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 截图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# @type ResolutionAdaptive: String
# @param Format: 图片格式,取值可以为 jpg、png、webp。
# @type Format: String
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
# stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;
# black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。
# white:留白,保持视频宽高比不变,边缘剩余部分使用白色填充。
# gauss:高斯模糊,保持视频宽高比不变,边缘剩余部分使用高斯模糊。
# 默认值:black 。
# @type FillType: String
attr_accessor :Definition, :Name, :Width, :Height, :ResolutionAdaptive, :Format, :Comment, :FillType
def initialize(definition=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil, comment=nil, filltype=nil)
@Definition = definition
@Name = name
@Width = width
@Height = height
@ResolutionAdaptive = resolutionadaptive
@Format = format
@Comment = comment
@FillType = filltype
end
def deserialize(params)
@Definition = params['Definition']
@Name = params['Name']
@Width = params['Width']
@Height = params['Height']
@ResolutionAdaptive = params['ResolutionAdaptive']
@Format = params['Format']
@Comment = params['Comment']
@FillType = params['FillType']
end
end
# ModifySnapshotByTimeOffsetTemplate返回参数结构体
class ModifySnapshotByTimeOffsetTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# ModifyStreamLinkEvent请求参数结构体
class ModifyStreamLinkEventRequest < TencentCloud::Common::AbstractModel
# @param EventId: 媒体传输事件Event Id。
# @type EventId: String
# @param EventName: 需要修改的事件名称。
# @type EventName: String
# @param Description: Event的描述信息。
# @type Description: String
attr_accessor :EventId, :EventName, :Description
def initialize(eventid=nil, eventname=nil, description=nil)
@EventId = eventid
@EventName = eventname
@Description = description
end
def deserialize(params)
@EventId = params['EventId']
@EventName = params['EventName']
@Description = params['Description']
end
end
# ModifyStreamLinkEvent返回参数结构体
class ModifyStreamLinkEventResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# ModifyStreamLinkFlow请求参数结构体
class ModifyStreamLinkFlowRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 流Id。
# @type FlowId: String
# @param FlowName: 需要修改的流名称。
# @type FlowName: String
attr_accessor :FlowId, :FlowName
def initialize(flowid=nil, flowname=nil)
@FlowId = flowid
@FlowName = flowname
end
def deserialize(params)
@FlowId = params['FlowId']
@FlowName = params['FlowName']
end
end
# ModifyStreamLinkFlow返回参数结构体
class ModifyStreamLinkFlowResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# ModifyStreamLinkInput请求参数结构体
class ModifyStreamLinkInputRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 流Id。
# @type FlowId: String
# @param Input: 需要修改的Input信息。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.ModifyInput`
attr_accessor :FlowId, :Input
def initialize(flowid=nil, input=nil)
@FlowId = flowid
@Input = input
end
def deserialize(params)
@FlowId = params['FlowId']
unless params['Input'].nil?
@Input = ModifyInput.new
@Input.deserialize(params['Input'])
end
end
end
# ModifyStreamLinkInput返回参数结构体
class ModifyStreamLinkInputResponse < TencentCloud::Common::AbstractModel
# @param Info: 修改后的Input信息。
# @type Info: :class:`Tencentcloud::Mps.v20190612.models.DescribeInput`
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Info, :RequestId
def initialize(info=nil, requestid=nil)
@Info = info
@RequestId = requestid
end
def deserialize(params)
unless params['Info'].nil?
@Info = DescribeInput.new
@Info.deserialize(params['Info'])
end
@RequestId = params['RequestId']
end
end
# ModifyStreamLinkOutputInfo请求参数结构体
class ModifyStreamLinkOutputInfoRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 流Id。
# @type FlowId: String
# @param Output: 需要修改的Output配置。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.ModifyOutputInfo`
attr_accessor :FlowId, :Output
def initialize(flowid=nil, output=nil)
@FlowId = flowid
@Output = output
end
def deserialize(params)
@FlowId = params['FlowId']
unless params['Output'].nil?
@Output = ModifyOutputInfo.new
@Output.deserialize(params['Output'])
end
end
end
# ModifyStreamLinkOutputInfo返回参数结构体
class ModifyStreamLinkOutputInfoResponse < TencentCloud::Common::AbstractModel
# @param Info: 修改后的Output配置。
# @type Info: :class:`Tencentcloud::Mps.v20190612.models.DescribeOutput`
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :Info, :RequestId
def initialize(info=nil, requestid=nil)
@Info = info
@RequestId = requestid
end
def deserialize(params)
unless params['Info'].nil?
@Info = DescribeOutput.new
@Info.deserialize(params['Info'])
end
@RequestId = params['RequestId']
end
end
# ModifyTranscodeTemplate请求参数结构体
class ModifyTranscodeTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 转码模板唯一标识。
# @type Definition: Integer
# @param Container: 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a。其中,mp3、flac、ogg、m4a 为纯音频文件。
# @type Container: String
# @param Name: 转码模板名称,长度限制:64 个字符。
# @type Name: String
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param RemoveVideo: 是否去除视频数据,可选值:
# 0:保留
# 1:去除
# @type RemoveVideo: Integer
# @param RemoveAudio: 是否去除音频数据,可选值:
# 0:保留
# 1:去除
# @type RemoveAudio: Integer
# @param VideoTemplate: 视频流配置参数。
# @type VideoTemplate: :class:`Tencentcloud::Mps.v20190612.models.VideoTemplateInfoForUpdate`
# @param AudioTemplate: 音频流配置参数。
# @type AudioTemplate: :class:`Tencentcloud::Mps.v20190612.models.AudioTemplateInfoForUpdate`
# @param TEHDConfig: 极速高清转码参数。
# @type TEHDConfig: :class:`Tencentcloud::Mps.v20190612.models.TEHDConfigForUpdate`
# @param EnhanceConfig: 音视频增强参数。
# @type EnhanceConfig: :class:`Tencentcloud::Mps.v20190612.models.EnhanceConfig`
attr_accessor :Definition, :Container, :Name, :Comment, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig, :EnhanceConfig
def initialize(definition=nil, container=nil, name=nil, comment=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil, enhanceconfig=nil)
@Definition = definition
@Container = container
@Name = name
@Comment = comment
@RemoveVideo = removevideo
@RemoveAudio = removeaudio
@VideoTemplate = videotemplate
@AudioTemplate = audiotemplate
@TEHDConfig = tehdconfig
@EnhanceConfig = enhanceconfig
end
def deserialize(params)
@Definition = params['Definition']
@Container = params['Container']
@Name = params['Name']
@Comment = params['Comment']
@RemoveVideo = params['RemoveVideo']
@RemoveAudio = params['RemoveAudio']
unless params['VideoTemplate'].nil?
@VideoTemplate = VideoTemplateInfoForUpdate.new
@VideoTemplate.deserialize(params['VideoTemplate'])
end
unless params['AudioTemplate'].nil?
@AudioTemplate = AudioTemplateInfoForUpdate.new
@AudioTemplate.deserialize(params['AudioTemplate'])
end
unless params['TEHDConfig'].nil?
@TEHDConfig = TEHDConfigForUpdate.new
@TEHDConfig.deserialize(params['TEHDConfig'])
end
unless params['EnhanceConfig'].nil?
@EnhanceConfig = EnhanceConfig.new
@EnhanceConfig.deserialize(params['EnhanceConfig'])
end
end
end
# ModifyTranscodeTemplate返回参数结构体
class ModifyTranscodeTemplateResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# ModifyWatermarkTemplate请求参数结构体
class ModifyWatermarkTemplateRequest < TencentCloud::Common::AbstractModel
# @param Definition: 水印模板唯一标识。
# @type Definition: Integer
# @param Name: 水印模板名称,长度限制:64 个字符。
# @type Name: String
# @param Comment: 模板描述信息,长度限制:256 个字符。
# @type Comment: String
# @param CoordinateOrigin: 原点位置,可选值:
# TopLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;
# TopRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;
# BottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;
# BottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下角。
# @type CoordinateOrigin: String
# @param XPos: 水印原点距离视频图像坐标原点的水平位置。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 XPos 为视频宽度指定百分比,如 10% 表示 XPos 为视频宽度的 10%;
# 当字符串以 px 结尾,表示水印 XPos 为指定像素,如 100px 表示 XPos 为 100 像素。
# @type XPos: String
# @param YPos: 水印原点距离视频图像坐标原点的垂直位置。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 YPos 为视频高度指定百分比,如 10% 表示 YPos 为视频高度的 10%;
# 当字符串以 px 结尾,表示水印 YPos 为指定像素,如 100px 表示 YPos 为 100 像素。
# @type YPos: String
# @param ImageTemplate: 图片水印模板,该字段仅对图片水印模板有效。
# @type ImageTemplate: :class:`Tencentcloud::Mps.v20190612.models.ImageWatermarkInputForUpdate`
# @param TextTemplate: 文字水印模板,该字段仅对文字水印模板有效。
# @type TextTemplate: :class:`Tencentcloud::Mps.v20190612.models.TextWatermarkTemplateInputForUpdate`
# @param SvgTemplate: SVG水印模板,当 Type 为 svg,该字段必填。当 Type 为 image 或 text,该字段无效。
# @type SvgTemplate: :class:`Tencentcloud::Mps.v20190612.models.SvgWatermarkInputForUpdate`
attr_accessor :Definition, :Name, :Comment, :CoordinateOrigin, :XPos, :YPos, :ImageTemplate, :TextTemplate, :SvgTemplate
def initialize(definition=nil, name=nil, comment=nil, coordinateorigin=nil, xpos=nil, ypos=nil, imagetemplate=nil, texttemplate=nil, svgtemplate=nil)
@Definition = definition
@Name = name
@Comment = comment
@CoordinateOrigin = coordinateorigin
@XPos = xpos
@YPos = ypos
@ImageTemplate = imagetemplate
@TextTemplate = texttemplate
@SvgTemplate = svgtemplate
end
def deserialize(params)
@Definition = params['Definition']
@Name = params['Name']
@Comment = params['Comment']
@CoordinateOrigin = params['CoordinateOrigin']
@XPos = params['XPos']
@YPos = params['YPos']
unless params['ImageTemplate'].nil?
@ImageTemplate = ImageWatermarkInputForUpdate.new
@ImageTemplate.deserialize(params['ImageTemplate'])
end
unless params['TextTemplate'].nil?
@TextTemplate = TextWatermarkTemplateInputForUpdate.new
@TextTemplate.deserialize(params['TextTemplate'])
end
unless params['SvgTemplate'].nil?
@SvgTemplate = SvgWatermarkInputForUpdate.new
@SvgTemplate.deserialize(params['SvgTemplate'])
end
end
end
# ModifyWatermarkTemplate返回参数结构体
class ModifyWatermarkTemplateResponse < TencentCloud::Common::AbstractModel
# @param ImageUrl: 图片水印地址,仅当 ImageTemplate.ImageContent 非空,该字段有效。
# @type ImageUrl: String
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :ImageUrl, :RequestId
def initialize(imageurl=nil, requestid=nil)
@ImageUrl = imageurl
@RequestId = requestid
end
def deserialize(params)
@ImageUrl = params['ImageUrl']
@RequestId = params['RequestId']
end
end
# ModifyWordSample请求参数结构体
class ModifyWordSampleRequest < TencentCloud::Common::AbstractModel
# @param Keyword: 关键词,长度限制:128 个字符。
# @type Keyword: String
# @param Usages: 关键词应用场景,可选值:
# 1. Recognition.Ocr:通过光学字符识别技术,进行内容识别;
# 2. Recognition.Asr:通过音频识别技术,进行内容识别;
# 3. Review.Ocr:通过光学字符识别技术,进行不适宜的内容识别;
# 4. Review.Asr:通过音频识别技术,进行不适宜的音频识别;
# 可合并简写为:
# 5. Recognition:通过光学字符识别技术、音频识别技术,进行内容识别,等价于 1+2;
# 6. Review:通过光学字符识别技术、音频识别技术,进行不适宜的内容识别,等价于 3+4;
# 7. All:包含以上全部,等价于 1+2+3+4。
# @type Usages: Array
# @param TagOperationInfo: 标签操作信息。
# @type TagOperationInfo: :class:`Tencentcloud::Mps.v20190612.models.AiSampleTagOperation`
attr_accessor :Keyword, :Usages, :TagOperationInfo
def initialize(keyword=nil, usages=nil, tagoperationinfo=nil)
@Keyword = keyword
@Usages = usages
@TagOperationInfo = tagoperationinfo
end
def deserialize(params)
@Keyword = params['Keyword']
@Usages = params['Usages']
unless params['TagOperationInfo'].nil?
@TagOperationInfo = AiSampleTagOperation.new
@TagOperationInfo.deserialize(params['TagOperationInfo'])
end
end
end
# ModifyWordSample返回参数结构体
class ModifyWordSampleResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# 媒体处理任务中的马赛克参数类型
class MosaicInput < TencentCloud::Common::AbstractModel
# @param CoordinateOrigin: 原点位置,目前仅支持:
# TopLeft:表示坐标原点位于视频图像左上角,马赛克原点为图片或文字的左上角。
# 默认值:TopLeft。
# @type CoordinateOrigin: String
# @param XPos: 马赛克原点距离视频图像坐标原点的水平位置。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示马赛克 XPos 为视频宽度指定百分比,如 10% 表示 XPos 为视频宽度的 10%;
# 当字符串以 px 结尾,表示马赛克 XPos 为指定像素,如 100px 表示 XPos 为 100 像素。
# 默认值:0px。
# @type XPos: String
# @param YPos: 马赛克原点距离视频图像坐标原点的垂直位置。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示马赛克 YPos 为视频高度指定百分比,如 10% 表示 YPos 为视频高度的 10%;
# 当字符串以 px 结尾,表示马赛克 YPos 为指定像素,如 100px 表示 YPos 为 100 像素。
# 默认值:0px。
# @type YPos: String
# @param Width: 马赛克的宽度。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示马赛克 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;
# 当字符串以 px 结尾,表示马赛克 Width 单位为像素,如 100px 表示 Width 为 100 像素。
# 默认值:10%。
# @type Width: String
# @param Height: 马赛克的高度。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示马赛克 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;
# 当字符串以 px 结尾,表示马赛克 Height 单位为像素,如 100px 表示 Height 为 100 像素。
# 默认值:10%。
# @type Height: String
# @param StartTimeOffset: 马赛克的起始时间偏移,单位:秒。不填或填0,表示马赛克从画面出现时开始显现。
# 不填或填0,表示马赛克从画面开始就出现;
# 当数值大于0时(假设为 n),表示马赛克从画面开始的第 n 秒出现;
# 当数值小于0时(假设为 -n),表示马赛克从离画面结束 n 秒前开始出现。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 马赛克的结束时间偏移,单位:秒。
# 不填或填0,表示马赛克持续到画面结束;
# 当数值大于0时(假设为 n),表示马赛克持续到第 n 秒时消失;
# 当数值小于0时(假设为 -n),表示马赛克持续到离画面结束 n 秒前消失。
# @type EndTimeOffset: Float
attr_accessor :CoordinateOrigin, :XPos, :YPos, :Width, :Height, :StartTimeOffset, :EndTimeOffset
def initialize(coordinateorigin=nil, xpos=nil, ypos=nil, width=nil, height=nil, starttimeoffset=nil, endtimeoffset=nil)
@CoordinateOrigin = coordinateorigin
@XPos = xpos
@YPos = ypos
@Width = width
@Height = height
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
end
def deserialize(params)
@CoordinateOrigin = params['CoordinateOrigin']
@XPos = params['XPos']
@YPos = params['YPos']
@Width = params['Width']
@Height = params['Height']
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
end
end
# 输出文件名的`{number}`变量的规则。
class NumberFormat < TencentCloud::Common::AbstractModel
# @param InitialValue: `{number}`变量的起始值,默认为0。
# @type InitialValue: Integer
# @param Increment: `{number}`变量的增长步长,默认为1。
# @type Increment: Integer
# @param MinLength: `{number}`变量的最小长度,不足时补占位符。默认为1。
# @type MinLength: Integer
# @param PlaceHolder: `{number}`变量的长度不足时,补充的占位符。默认为"0"。
# @type PlaceHolder: String
attr_accessor :InitialValue, :Increment, :MinLength, :PlaceHolder
def initialize(initialvalue=nil, increment=nil, minlength=nil, placeholder=nil)
@InitialValue = initialvalue
@Increment = increment
@MinLength = minlength
@PlaceHolder = placeholder
end
def deserialize(params)
@InitialValue = params['InitialValue']
@Increment = params['Increment']
@MinLength = params['MinLength']
@PlaceHolder = params['PlaceHolder']
end
end
# 文本全文本识别任务控制参数
class OcrFullTextConfigureInfo < TencentCloud::Common::AbstractModel
# @param Switch: 文本全文识别任务开关,可选值:
# ON:开启智能文本全文识别任务;
# OFF:关闭智能文本全文识别任务。
# @type Switch: String
attr_accessor :Switch
def initialize(switch=nil)
@Switch = switch
end
def deserialize(params)
@Switch = params['Switch']
end
end
# 文本全文本识别任务控制参数
class OcrFullTextConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 文本全文识别任务开关,可选值:
# ON:开启智能文本全文识别任务;
# OFF:关闭智能文本全文识别任务。
# @type Switch: String
attr_accessor :Switch
def initialize(switch=nil)
@Switch = switch
end
def deserialize(params)
@Switch = params['Switch']
end
end
# 文本关键词识别控制参数。
class OcrWordsConfigureInfo < TencentCloud::Common::AbstractModel
# @param Switch: 文本关键词识别任务开关,可选值:
# ON:开启文本关键词识别任务;
# OFF:关闭文本关键词识别任务。
# @type Switch: String
# @param LabelSet: 关键词过滤标签,指定需要返回的关键词的标签。如果未填或者为空,则全部结果都返回。
# 标签个数最多 10 个,每个标签长度最多 16 个字符。
# @type LabelSet: Array
attr_accessor :Switch, :LabelSet
def initialize(switch=nil, labelset=nil)
@Switch = switch
@LabelSet = labelset
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
end
end
# 文本关键词识别控制参数。
class OcrWordsConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 文本关键词识别任务开关,可选值:
# ON:开启文本关键词识别任务;
# OFF:关闭文本关键词识别任务。
# @type Switch: String
# @param LabelSet: 关键词过滤标签,指定需要返回的关键词的标签。如果未填或者为空,则全部结果都返回。
# 标签个数最多 10 个,每个标签长度最多 16 个字符。
# @type LabelSet: Array
attr_accessor :Switch, :LabelSet
def initialize(switch=nil, labelset=nil)
@Switch = switch
@LabelSet = labelset
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
end
end
# 输出的出口的地址。
class OutputAddress < TencentCloud::Common::AbstractModel
# @param Ip: 出口IP。
# @type Ip: String
attr_accessor :Ip
def initialize(ip=nil)
@Ip = ip
end
def deserialize(params)
@Ip = params['Ip']
end
end
# SRT输出的监听地址。
class OutputSRTSourceAddressResp < TencentCloud::Common::AbstractModel
# @param Ip: 监听IP。
# @type Ip: String
# @param Port: 监听端口。
# @type Port: Integer
attr_accessor :Ip, :Port
def initialize(ip=nil, port=nil)
@Ip = ip
@Port = port
end
def deserialize(params)
@Ip = params['Ip']
@Port = params['Port']
end
end
# 自定义转码的规格参数。用于覆盖模板中对应参数值。
class OverrideTranscodeParameter < TencentCloud::Common::AbstractModel
# @param Container: 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a。其中,mp3、flac、ogg、m4a 为纯音频文件。
# @type Container: String
# @param RemoveVideo: 是否去除视频数据,取值:
# 0:保留;
# 1:去除。
# @type RemoveVideo: Integer
# @param RemoveAudio: 是否去除音频数据,取值:
# 0:保留;
# 1:去除。
# @type RemoveAudio: Integer
# @param VideoTemplate: 视频流配置参数。
# @type VideoTemplate: :class:`Tencentcloud::Mps.v20190612.models.VideoTemplateInfoForUpdate`
# @param AudioTemplate: 音频流配置参数。
# @type AudioTemplate: :class:`Tencentcloud::Mps.v20190612.models.AudioTemplateInfoForUpdate`
# @param TEHDConfig: 极速高清转码参数。
# @type TEHDConfig: :class:`Tencentcloud::Mps.v20190612.models.TEHDConfigForUpdate`
# @param SubtitleTemplate: 字幕流配置参数。
# @type SubtitleTemplate: :class:`Tencentcloud::Mps.v20190612.models.SubtitleTemplate`
# @param AddonAudioStream: 外挂音轨参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AddonAudioStream: Array
attr_accessor :Container, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig, :SubtitleTemplate, :AddonAudioStream
def initialize(container=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil, subtitletemplate=nil, addonaudiostream=nil)
@Container = container
@RemoveVideo = removevideo
@RemoveAudio = removeaudio
@VideoTemplate = videotemplate
@AudioTemplate = audiotemplate
@TEHDConfig = tehdconfig
@SubtitleTemplate = subtitletemplate
@AddonAudioStream = addonaudiostream
end
def deserialize(params)
@Container = params['Container']
@RemoveVideo = params['RemoveVideo']
@RemoveAudio = params['RemoveAudio']
unless params['VideoTemplate'].nil?
@VideoTemplate = VideoTemplateInfoForUpdate.new
@VideoTemplate.deserialize(params['VideoTemplate'])
end
unless params['AudioTemplate'].nil?
@AudioTemplate = AudioTemplateInfoForUpdate.new
@AudioTemplate.deserialize(params['AudioTemplate'])
end
unless params['TEHDConfig'].nil?
@TEHDConfig = TEHDConfigForUpdate.new
@TEHDConfig.deserialize(params['TEHDConfig'])
end
unless params['SubtitleTemplate'].nil?
@SubtitleTemplate = SubtitleTemplate.new
@SubtitleTemplate.deserialize(params['SubtitleTemplate'])
end
unless params['AddonAudioStream'].nil?
@AddonAudioStream = []
params['AddonAudioStream'].each do |i|
mediainputinfo_tmp = MediaInputInfo.new
mediainputinfo_tmp.deserialize(i)
@AddonAudioStream << mediainputinfo_tmp
end
end
end
end
# ParseLiveStreamProcessNotification请求参数结构体
class ParseLiveStreamProcessNotificationRequest < TencentCloud::Common::AbstractModel
# @param Content: 从 CMQ 获取到的直播流事件通知内容。
# @type Content: String
attr_accessor :Content
def initialize(content=nil)
@Content = content
end
def deserialize(params)
@Content = params['Content']
end
end
# ParseLiveStreamProcessNotification返回参数结构体
class ParseLiveStreamProcessNotificationResponse < TencentCloud::Common::AbstractModel
# @param NotificationType: 直播流处理结果类型,包含:
# AiReviewResult:内容审核结果;
# AiRecognitionResult:内容识别结果;
# ProcessEof:直播流处理结束。
# @type NotificationType: String
# @param TaskId: 视频处理任务 ID。
# @type TaskId: String
# @param ProcessEofInfo: 直播流处理错误信息,当 NotificationType 为 ProcessEof 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ProcessEofInfo: :class:`Tencentcloud::Mps.v20190612.models.LiveStreamProcessErrorInfo`
# @param AiReviewResultInfo: 内容审核结果,当 NotificationType 为 AiReviewResult 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AiReviewResultInfo: :class:`Tencentcloud::Mps.v20190612.models.LiveStreamAiReviewResultInfo`
# @param AiRecognitionResultInfo: 内容识别结果,当 NotificationType 为 AiRecognitionResult 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AiRecognitionResultInfo: :class:`Tencentcloud::Mps.v20190612.models.LiveStreamAiRecognitionResultInfo`
# @param AiAnalysisResultInfo: 内容分析结果,当 NotificationType 为 AiAnalysisResult 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AiAnalysisResultInfo: :class:`Tencentcloud::Mps.v20190612.models.LiveStreamAiAnalysisResultInfo`
# @param AiQualityControlResultInfo: 媒体质检结果,当 NotificationType 为 AiQualityControlResult 时有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AiQualityControlResultInfo: :class:`Tencentcloud::Mps.v20190612.models.LiveStreamAiQualityControlResultInfo`
# @param SessionId: 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长50个字符,不带或者带空字符串表示不做去重。
# @type SessionId: String
# @param SessionContext: 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长1000个字符。
# @type SessionContext: String
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :NotificationType, :TaskId, :ProcessEofInfo, :AiReviewResultInfo, :AiRecognitionResultInfo, :AiAnalysisResultInfo, :AiQualityControlResultInfo, :SessionId, :SessionContext, :RequestId
def initialize(notificationtype=nil, taskid=nil, processeofinfo=nil, aireviewresultinfo=nil, airecognitionresultinfo=nil, aianalysisresultinfo=nil, aiqualitycontrolresultinfo=nil, sessionid=nil, sessioncontext=nil, requestid=nil)
@NotificationType = notificationtype
@TaskId = taskid
@ProcessEofInfo = processeofinfo
@AiReviewResultInfo = aireviewresultinfo
@AiRecognitionResultInfo = airecognitionresultinfo
@AiAnalysisResultInfo = aianalysisresultinfo
@AiQualityControlResultInfo = aiqualitycontrolresultinfo
@SessionId = sessionid
@SessionContext = sessioncontext
@RequestId = requestid
end
def deserialize(params)
@NotificationType = params['NotificationType']
@TaskId = params['TaskId']
unless params['ProcessEofInfo'].nil?
@ProcessEofInfo = LiveStreamProcessErrorInfo.new
@ProcessEofInfo.deserialize(params['ProcessEofInfo'])
end
unless params['AiReviewResultInfo'].nil?
@AiReviewResultInfo = LiveStreamAiReviewResultInfo.new
@AiReviewResultInfo.deserialize(params['AiReviewResultInfo'])
end
unless params['AiRecognitionResultInfo'].nil?
@AiRecognitionResultInfo = LiveStreamAiRecognitionResultInfo.new
@AiRecognitionResultInfo.deserialize(params['AiRecognitionResultInfo'])
end
unless params['AiAnalysisResultInfo'].nil?
@AiAnalysisResultInfo = LiveStreamAiAnalysisResultInfo.new
@AiAnalysisResultInfo.deserialize(params['AiAnalysisResultInfo'])
end
unless params['AiQualityControlResultInfo'].nil?
@AiQualityControlResultInfo = LiveStreamAiQualityControlResultInfo.new
@AiQualityControlResultInfo.deserialize(params['AiQualityControlResultInfo'])
end
@SessionId = params['SessionId']
@SessionContext = params['SessionContext']
@RequestId = params['RequestId']
end
end
# ParseNotification请求参数结构体
class ParseNotificationRequest < TencentCloud::Common::AbstractModel
# @param Content: 从 CMQ 获取到的事件通知内容。
# @type Content: String
attr_accessor :Content
def initialize(content=nil)
@Content = content
end
def deserialize(params)
@Content = params['Content']
end
end
# ParseNotification返回参数结构体
class ParseNotificationResponse < TencentCloud::Common::AbstractModel
# @param EventType: 支持事件类型,目前取值有:
# WorkflowTask:视频工作流处理任务。
# EditMediaTask:视频编辑任务。
# ScheduleTask:编排任务。
# @type EventType: String
# @param WorkflowTaskEvent: 视频处理任务信息,仅当 EventType 为 WorkflowTask,该字段有值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type WorkflowTaskEvent: :class:`Tencentcloud::Mps.v20190612.models.WorkflowTask`
# @param EditMediaTaskEvent: 视频编辑任务信息,仅当 EventType 为 EditMediaTask,该字段有值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type EditMediaTaskEvent: :class:`Tencentcloud::Mps.v20190612.models.EditMediaTask`
# @param SessionId: 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长50个字符,不带或者带空字符串表示不做去重。
# @type SessionId: String
# @param SessionContext: 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长1000个字符。
# @type SessionContext: String
# @param ScheduleTaskEvent: 编排任务信息,仅当 EventType 为 ScheduleTask,该字段有值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ScheduleTaskEvent: :class:`Tencentcloud::Mps.v20190612.models.ScheduleTask`
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :EventType, :WorkflowTaskEvent, :EditMediaTaskEvent, :SessionId, :SessionContext, :ScheduleTaskEvent, :RequestId
def initialize(eventtype=nil, workflowtaskevent=nil, editmediataskevent=nil, sessionid=nil, sessioncontext=nil, scheduletaskevent=nil, requestid=nil)
@EventType = eventtype
@WorkflowTaskEvent = workflowtaskevent
@EditMediaTaskEvent = editmediataskevent
@SessionId = sessionid
@SessionContext = sessioncontext
@ScheduleTaskEvent = scheduletaskevent
@RequestId = requestid
end
def deserialize(params)
@EventType = params['EventType']
unless params['WorkflowTaskEvent'].nil?
@WorkflowTaskEvent = WorkflowTask.new
@WorkflowTaskEvent.deserialize(params['WorkflowTaskEvent'])
end
unless params['EditMediaTaskEvent'].nil?
@EditMediaTaskEvent = EditMediaTask.new
@EditMediaTaskEvent.deserialize(params['EditMediaTaskEvent'])
end
@SessionId = params['SessionId']
@SessionContext = params['SessionContext']
unless params['ScheduleTaskEvent'].nil?
@ScheduleTaskEvent = ScheduleTask.new
@ScheduleTaskEvent.deserialize(params['ScheduleTaskEvent'])
end
@RequestId = params['RequestId']
end
end
# 语音涉敏任务控制参数
class PoliticalAsrReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 语音涉敏任务开关,可选值:
# ON:开启语音涉敏任务;
# OFF:关闭语音涉敏任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 语音涉敏任务控制参数。
class PoliticalAsrReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 语音涉敏任务开关,可选值:
# ON:开启语音涉敏任务;
# OFF:关闭语音涉敏任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 涉敏任务控制参数
class PoliticalConfigureInfo < TencentCloud::Common::AbstractModel
# @param ImgReviewInfo: 画面涉敏控制参数。
# @type ImgReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.PoliticalImgReviewTemplateInfo`
# @param AsrReviewInfo: 语音涉敏控制参数。
# @type AsrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.PoliticalAsrReviewTemplateInfo`
# @param OcrReviewInfo: 文本涉敏控制参数。
# @type OcrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.PoliticalOcrReviewTemplateInfo`
attr_accessor :ImgReviewInfo, :AsrReviewInfo, :OcrReviewInfo
def initialize(imgreviewinfo=nil, asrreviewinfo=nil, ocrreviewinfo=nil)
@ImgReviewInfo = imgreviewinfo
@AsrReviewInfo = asrreviewinfo
@OcrReviewInfo = ocrreviewinfo
end
def deserialize(params)
unless params['ImgReviewInfo'].nil?
@ImgReviewInfo = PoliticalImgReviewTemplateInfo.new
@ImgReviewInfo.deserialize(params['ImgReviewInfo'])
end
unless params['AsrReviewInfo'].nil?
@AsrReviewInfo = PoliticalAsrReviewTemplateInfo.new
@AsrReviewInfo.deserialize(params['AsrReviewInfo'])
end
unless params['OcrReviewInfo'].nil?
@OcrReviewInfo = PoliticalOcrReviewTemplateInfo.new
@OcrReviewInfo.deserialize(params['OcrReviewInfo'])
end
end
end
# 涉敏任务控制参数。
class PoliticalConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param ImgReviewInfo: 画面涉敏控制参数。
# @type ImgReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.PoliticalImgReviewTemplateInfoForUpdate`
# @param AsrReviewInfo: 语音涉敏控制参数。
# @type AsrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.PoliticalAsrReviewTemplateInfoForUpdate`
# @param OcrReviewInfo: 文本涉敏控制参数。
# @type OcrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.PoliticalOcrReviewTemplateInfoForUpdate`
attr_accessor :ImgReviewInfo, :AsrReviewInfo, :OcrReviewInfo
def initialize(imgreviewinfo=nil, asrreviewinfo=nil, ocrreviewinfo=nil)
@ImgReviewInfo = imgreviewinfo
@AsrReviewInfo = asrreviewinfo
@OcrReviewInfo = ocrreviewinfo
end
def deserialize(params)
unless params['ImgReviewInfo'].nil?
@ImgReviewInfo = PoliticalImgReviewTemplateInfoForUpdate.new
@ImgReviewInfo.deserialize(params['ImgReviewInfo'])
end
unless params['AsrReviewInfo'].nil?
@AsrReviewInfo = PoliticalAsrReviewTemplateInfoForUpdate.new
@AsrReviewInfo.deserialize(params['AsrReviewInfo'])
end
unless params['OcrReviewInfo'].nil?
@OcrReviewInfo = PoliticalOcrReviewTemplateInfoForUpdate.new
@OcrReviewInfo.deserialize(params['OcrReviewInfo'])
end
end
end
# 画面涉敏任务控制参数
class PoliticalImgReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 画面涉敏任务开关,可选值:
# ON:开启画面涉敏任务;
# OFF:关闭画面涉敏任务。
# @type Switch: String
# @param LabelSet: 画面涉敏过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回,可选值为:
# violation_photo:违规图标;
# politician:涉敏人物;
# entertainment:娱乐人物;
# sport:体育人物;
# entrepreneur:商业人物;
# scholar:教育学者;
# celebrity:知名人物;
# military:军事人物。
# @type LabelSet: Array
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 97 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 95 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :LabelSet, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, labelset=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@LabelSet = labelset
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 画面涉敏任务控制参数。
class PoliticalImgReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 画面涉敏任务开关,可选值:
# ON:开启画面涉敏任务;
# OFF:关闭画面涉敏任务。
# @type Switch: String
# @param LabelSet: 画面涉敏过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回,可选值为:
# violation_photo:违规图标;
# politician:涉敏人物;
# entertainment:娱乐人物;
# sport:体育人物;
# entrepreneur:商业人物;
# scholar:教育学者;
# celebrity:知名人物;
# military:军事人物。
# @type LabelSet: Array
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :LabelSet, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, labelset=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@LabelSet = labelset
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 文本涉敏任务控制参数
class PoliticalOcrReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 文本涉敏任务开关,可选值:
# ON:开启文本涉敏任务;
# OFF:关闭文本涉敏任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 文本涉敏任务控制参数。
class PoliticalOcrReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 文本涉敏任务开关,可选值:
# ON:开启文本涉敏任务;
# OFF:关闭文本涉敏任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 语音鉴黄任务控制参数
class PornAsrReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 语音鉴黄任务开关,可选值:
# ON:开启语音鉴黄任务;
# OFF:关闭语音鉴黄任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 语音鉴黄任务控制参数。
class PornAsrReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 语音鉴黄任务开关,可选值:
# ON:开启语音鉴黄任务;
# OFF:关闭语音鉴黄任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 鉴黄任务控制参数
class PornConfigureInfo < TencentCloud::Common::AbstractModel
# @param ImgReviewInfo: 画面鉴黄控制参数。
# @type ImgReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.PornImgReviewTemplateInfo`
# @param AsrReviewInfo: 语音鉴黄控制参数。
# @type AsrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.PornAsrReviewTemplateInfo`
# @param OcrReviewInfo: 文本鉴黄控制参数。
# @type OcrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.PornOcrReviewTemplateInfo`
attr_accessor :ImgReviewInfo, :AsrReviewInfo, :OcrReviewInfo
def initialize(imgreviewinfo=nil, asrreviewinfo=nil, ocrreviewinfo=nil)
@ImgReviewInfo = imgreviewinfo
@AsrReviewInfo = asrreviewinfo
@OcrReviewInfo = ocrreviewinfo
end
def deserialize(params)
unless params['ImgReviewInfo'].nil?
@ImgReviewInfo = PornImgReviewTemplateInfo.new
@ImgReviewInfo.deserialize(params['ImgReviewInfo'])
end
unless params['AsrReviewInfo'].nil?
@AsrReviewInfo = PornAsrReviewTemplateInfo.new
@AsrReviewInfo.deserialize(params['AsrReviewInfo'])
end
unless params['OcrReviewInfo'].nil?
@OcrReviewInfo = PornOcrReviewTemplateInfo.new
@OcrReviewInfo.deserialize(params['OcrReviewInfo'])
end
end
end
# 鉴黄任务控制参数。
class PornConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param ImgReviewInfo: 画面鉴黄控制参数。
# @type ImgReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.PornImgReviewTemplateInfoForUpdate`
# @param AsrReviewInfo: 语音鉴黄控制参数。
# @type AsrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.PornAsrReviewTemplateInfoForUpdate`
# @param OcrReviewInfo: 文本鉴黄控制参数。
# @type OcrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.PornOcrReviewTemplateInfoForUpdate`
attr_accessor :ImgReviewInfo, :AsrReviewInfo, :OcrReviewInfo
def initialize(imgreviewinfo=nil, asrreviewinfo=nil, ocrreviewinfo=nil)
@ImgReviewInfo = imgreviewinfo
@AsrReviewInfo = asrreviewinfo
@OcrReviewInfo = ocrreviewinfo
end
def deserialize(params)
unless params['ImgReviewInfo'].nil?
@ImgReviewInfo = PornImgReviewTemplateInfoForUpdate.new
@ImgReviewInfo.deserialize(params['ImgReviewInfo'])
end
unless params['AsrReviewInfo'].nil?
@AsrReviewInfo = PornAsrReviewTemplateInfoForUpdate.new
@AsrReviewInfo.deserialize(params['AsrReviewInfo'])
end
unless params['OcrReviewInfo'].nil?
@OcrReviewInfo = PornOcrReviewTemplateInfoForUpdate.new
@OcrReviewInfo.deserialize(params['OcrReviewInfo'])
end
end
end
# 画面鉴黄任务控制参数
class PornImgReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 画面鉴黄任务开关,可选值:
# ON:开启画面鉴黄任务;
# OFF:关闭画面鉴黄任务。
# @type Switch: String
# @param LabelSet: 画面鉴黄过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回,可选值为:
# porn:色情;
# vulgar:低俗;
# intimacy:亲密行为;
# sexy:性感。
# @type LabelSet: Array
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 90 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 0 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :LabelSet, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, labelset=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@LabelSet = labelset
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 画面鉴黄任务控制参数。
class PornImgReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 画面鉴黄任务开关,可选值:
# ON:开启画面鉴黄任务;
# OFF:关闭画面鉴黄任务。
# @type Switch: String
# @param LabelSet: 画面鉴黄过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回,可选值为:
# porn:色情;
# vulgar:低俗;
# intimacy:亲密行为;
# sexy:性感。
# @type LabelSet: Array
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :LabelSet, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, labelset=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@LabelSet = labelset
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 文本鉴黄任务控制参数
class PornOcrReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 文本鉴黄任务开关,可选值:
# ON:开启文本鉴黄任务;
# OFF:关闭文本鉴黄任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 文本鉴黄任务控制参数。
class PornOcrReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 文本鉴黄任务开关,可选值:
# ON:开启文本鉴黄任务;
# OFF:关闭文本鉴黄任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# ProcessLiveStream请求参数结构体
class ProcessLiveStreamRequest < TencentCloud::Common::AbstractModel
# @param Url: 直播流 URL(必须是直播文件地址,支持 rtmp,hls 和 flv 等)。
# @type Url: String
# @param TaskNotifyConfig: 任务的事件通知信息,用于指定直播流处理的结果。
# @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.LiveStreamTaskNotifyConfig`
# @param OutputStorage: 直播流处理输出文件的目标存储。如处理有文件输出,该参数为必填项。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputDir: 直播流处理生成的文件输出的目标目录,如`/movie/201909/`,如果不填为 `/` 目录。
# @type OutputDir: String
# @param AiContentReviewTask: 视频内容审核类型任务参数。
# @type AiContentReviewTask: :class:`Tencentcloud::Mps.v20190612.models.AiContentReviewTaskInput`
# @param AiRecognitionTask: 视频内容识别类型任务参数。
# @type AiRecognitionTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskInput`
# @param AiAnalysisTask: 视频内容分析类型任务参数。
# @type AiAnalysisTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskInput`
# @param AiQualityControlTask: 视频内容质检类型任务参数。
# @type AiQualityControlTask: :class:`Tencentcloud::Mps.v20190612.models.AiQualityControlTaskInput`
# @param SessionId: 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
# @type SessionId: String
# @param SessionContext: 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
# @type SessionContext: String
attr_accessor :Url, :TaskNotifyConfig, :OutputStorage, :OutputDir, :AiContentReviewTask, :AiRecognitionTask, :AiAnalysisTask, :AiQualityControlTask, :SessionId, :SessionContext
def initialize(url=nil, tasknotifyconfig=nil, outputstorage=nil, outputdir=nil, aicontentreviewtask=nil, airecognitiontask=nil, aianalysistask=nil, aiqualitycontroltask=nil, sessionid=nil, sessioncontext=nil)
@Url = url
@TaskNotifyConfig = tasknotifyconfig
@OutputStorage = outputstorage
@OutputDir = outputdir
@AiContentReviewTask = aicontentreviewtask
@AiRecognitionTask = airecognitiontask
@AiAnalysisTask = aianalysistask
@AiQualityControlTask = aiqualitycontroltask
@SessionId = sessionid
@SessionContext = sessioncontext
end
def deserialize(params)
@Url = params['Url']
unless params['TaskNotifyConfig'].nil?
@TaskNotifyConfig = LiveStreamTaskNotifyConfig.new
@TaskNotifyConfig.deserialize(params['TaskNotifyConfig'])
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputDir = params['OutputDir']
unless params['AiContentReviewTask'].nil?
@AiContentReviewTask = AiContentReviewTaskInput.new
@AiContentReviewTask.deserialize(params['AiContentReviewTask'])
end
unless params['AiRecognitionTask'].nil?
@AiRecognitionTask = AiRecognitionTaskInput.new
@AiRecognitionTask.deserialize(params['AiRecognitionTask'])
end
unless params['AiAnalysisTask'].nil?
@AiAnalysisTask = AiAnalysisTaskInput.new
@AiAnalysisTask.deserialize(params['AiAnalysisTask'])
end
unless params['AiQualityControlTask'].nil?
@AiQualityControlTask = AiQualityControlTaskInput.new
@AiQualityControlTask.deserialize(params['AiQualityControlTask'])
end
@SessionId = params['SessionId']
@SessionContext = params['SessionContext']
end
end
# ProcessLiveStream返回参数结构体
class ProcessLiveStreamResponse < TencentCloud::Common::AbstractModel
# @param TaskId: 任务 ID
# @type TaskId: String
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TaskId, :RequestId
def initialize(taskid=nil, requestid=nil)
@TaskId = taskid
@RequestId = requestid
end
def deserialize(params)
@TaskId = params['TaskId']
@RequestId = params['RequestId']
end
end
# ProcessMedia请求参数结构体
class ProcessMediaRequest < TencentCloud::Common::AbstractModel
# @param InputInfo: 媒体处理的文件输入信息。
# @type InputInfo: :class:`Tencentcloud::Mps.v20190612.models.MediaInputInfo`
# @param OutputStorage: 媒体处理输出文件的目标存储。不填则继承 InputInfo 中的存储位置。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputDir: 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
# 如果不填,表示与 InputInfo 中文件所在的目录一致。
# @type OutputDir: String
# @param ScheduleId: 编排ID。
# 注意1:对于OutputStorage、OutputDir参数:
# 当服务编排中子任务节点配置了OutputStorage、OutputDir时,该子任务节点中配置的输出作为子任务的输出。
# 当服务编排中子任务节点没有配置OutputStorage、OutputDir时,若创建任务接口(ProcessMedia)有输出,将覆盖原有编排的默认输出。
# 注意2:对于TaskNotifyConfig参数,若创建任务接口(ProcessMedia)有设置,将覆盖原有编排的默认回调。
# 注意3:编排的 Trigger 只是用来自动化触发场景,在手动发起的请求中已经配置的 Trigger 无意义。
# @type ScheduleId: Integer
# @param MediaProcessTask: 媒体处理类型任务参数。
# @type MediaProcessTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskInput`
# @param AiContentReviewTask: 视频内容审核类型任务参数。
# @type AiContentReviewTask: :class:`Tencentcloud::Mps.v20190612.models.AiContentReviewTaskInput`
# @param AiAnalysisTask: 视频内容分析类型任务参数。
# @type AiAnalysisTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskInput`
# @param AiRecognitionTask: 视频内容识别类型任务参数。
# @type AiRecognitionTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskInput`
# @param AiQualityControlTask: 视频质检类型任务参数。
# @type AiQualityControlTask: :class:`Tencentcloud::Mps.v20190612.models.AiQualityControlTaskInput`
# @param TaskNotifyConfig: 任务的事件通知信息,不填代表不获取事件通知。
# @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.TaskNotifyConfig`
# @param TasksPriority: 任务流的优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。
# @type TasksPriority: Integer
# @param SessionId: 用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
# @type SessionId: String
# @param SessionContext: 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
# @type SessionContext: String
# @param TaskType: 任务类型,默认Online
# Online:实时任务
# Offline:闲时任务,不保证实效性,默认3天内处理完
# @type TaskType: String
attr_accessor :InputInfo, :OutputStorage, :OutputDir, :ScheduleId, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTask, :AiQualityControlTask, :TaskNotifyConfig, :TasksPriority, :SessionId, :SessionContext, :TaskType
def initialize(inputinfo=nil, outputstorage=nil, outputdir=nil, scheduleid=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontask=nil, aiqualitycontroltask=nil, tasknotifyconfig=nil, taskspriority=nil, sessionid=nil, sessioncontext=nil, tasktype=nil)
@InputInfo = inputinfo
@OutputStorage = outputstorage
@OutputDir = outputdir
@ScheduleId = scheduleid
@MediaProcessTask = mediaprocesstask
@AiContentReviewTask = aicontentreviewtask
@AiAnalysisTask = aianalysistask
@AiRecognitionTask = airecognitiontask
@AiQualityControlTask = aiqualitycontroltask
@TaskNotifyConfig = tasknotifyconfig
@TasksPriority = taskspriority
@SessionId = sessionid
@SessionContext = sessioncontext
@TaskType = tasktype
end
def deserialize(params)
unless params['InputInfo'].nil?
@InputInfo = MediaInputInfo.new
@InputInfo.deserialize(params['InputInfo'])
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputDir = params['OutputDir']
@ScheduleId = params['ScheduleId']
unless params['MediaProcessTask'].nil?
@MediaProcessTask = MediaProcessTaskInput.new
@MediaProcessTask.deserialize(params['MediaProcessTask'])
end
unless params['AiContentReviewTask'].nil?
@AiContentReviewTask = AiContentReviewTaskInput.new
@AiContentReviewTask.deserialize(params['AiContentReviewTask'])
end
unless params['AiAnalysisTask'].nil?
@AiAnalysisTask = AiAnalysisTaskInput.new
@AiAnalysisTask.deserialize(params['AiAnalysisTask'])
end
unless params['AiRecognitionTask'].nil?
@AiRecognitionTask = AiRecognitionTaskInput.new
@AiRecognitionTask.deserialize(params['AiRecognitionTask'])
end
unless params['AiQualityControlTask'].nil?
@AiQualityControlTask = AiQualityControlTaskInput.new
@AiQualityControlTask.deserialize(params['AiQualityControlTask'])
end
unless params['TaskNotifyConfig'].nil?
@TaskNotifyConfig = TaskNotifyConfig.new
@TaskNotifyConfig.deserialize(params['TaskNotifyConfig'])
end
@TasksPriority = params['TasksPriority']
@SessionId = params['SessionId']
@SessionContext = params['SessionContext']
@TaskType = params['TaskType']
end
end
# ProcessMedia返回参数结构体
class ProcessMediaResponse < TencentCloud::Common::AbstractModel
# @param TaskId: 任务 ID。
# @type TaskId: String
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TaskId, :RequestId
def initialize(taskid=nil, requestid=nil)
@TaskId = taskid
@RequestId = requestid
end
def deserialize(params)
@TaskId = params['TaskId']
@RequestId = params['RequestId']
end
end
# 语音违禁任务控制参数
class ProhibitedAsrReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 语音违禁任务开关,可选值:
# ON:开启语音违禁任务;
# OFF:关闭语音违禁任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 语音违禁任务控制参数
class ProhibitedAsrReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 语音违禁任务开关,可选值:
# ON:开启语音违禁任务;
# OFF:关闭语音违禁任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 违禁任务控制参数
class ProhibitedConfigureInfo < TencentCloud::Common::AbstractModel
# @param AsrReviewInfo: 语音违禁控制参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AsrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.ProhibitedAsrReviewTemplateInfo`
# @param OcrReviewInfo: 文本违禁控制参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OcrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.ProhibitedOcrReviewTemplateInfo`
attr_accessor :AsrReviewInfo, :OcrReviewInfo
def initialize(asrreviewinfo=nil, ocrreviewinfo=nil)
@AsrReviewInfo = asrreviewinfo
@OcrReviewInfo = ocrreviewinfo
end
def deserialize(params)
unless params['AsrReviewInfo'].nil?
@AsrReviewInfo = ProhibitedAsrReviewTemplateInfo.new
@AsrReviewInfo.deserialize(params['AsrReviewInfo'])
end
unless params['OcrReviewInfo'].nil?
@OcrReviewInfo = ProhibitedOcrReviewTemplateInfo.new
@OcrReviewInfo.deserialize(params['OcrReviewInfo'])
end
end
end
# 违禁任务控制参数
class ProhibitedConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param AsrReviewInfo: 语音违禁控制参数。
# @type AsrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.ProhibitedAsrReviewTemplateInfoForUpdate`
# @param OcrReviewInfo: 文本违禁控制参数。
# @type OcrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.ProhibitedOcrReviewTemplateInfoForUpdate`
attr_accessor :AsrReviewInfo, :OcrReviewInfo
def initialize(asrreviewinfo=nil, ocrreviewinfo=nil)
@AsrReviewInfo = asrreviewinfo
@OcrReviewInfo = ocrreviewinfo
end
def deserialize(params)
unless params['AsrReviewInfo'].nil?
@AsrReviewInfo = ProhibitedAsrReviewTemplateInfoForUpdate.new
@AsrReviewInfo.deserialize(params['AsrReviewInfo'])
end
unless params['OcrReviewInfo'].nil?
@OcrReviewInfo = ProhibitedOcrReviewTemplateInfoForUpdate.new
@OcrReviewInfo.deserialize(params['OcrReviewInfo'])
end
end
end
# 文本违禁任务控制参数
class ProhibitedOcrReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 文本违禁任务开关,可选值:
# ON:开启文本违禁任务;
# OFF:关闭文本违禁任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 文本违禁任务控制参数
class ProhibitedOcrReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 文本违禁任务开关,可选值:
# ON:开启文本违禁任务;
# OFF:关闭文本违禁任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 质检结果输出。
class QualityControlData < TencentCloud::Common::AbstractModel
# @param NoAudio: 为true时表示视频无音频轨。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type NoAudio: Boolean
# @param NoVideo: 为true时表示视频无视频轨。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type NoVideo: Boolean
# @param QualityEvaluationScore: 视频无参考质量打分,百分制。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type QualityEvaluationScore: Integer
# @param QualityControlResultSet: 质检检出异常项。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type QualityControlResultSet: Array
attr_accessor :NoAudio, :NoVideo, :QualityEvaluationScore, :QualityControlResultSet
def initialize(noaudio=nil, novideo=nil, qualityevaluationscore=nil, qualitycontrolresultset=nil)
@NoAudio = noaudio
@NoVideo = novideo
@QualityEvaluationScore = qualityevaluationscore
@QualityControlResultSet = qualitycontrolresultset
end
def deserialize(params)
@NoAudio = params['NoAudio']
@NoVideo = params['NoVideo']
@QualityEvaluationScore = params['QualityEvaluationScore']
unless params['QualityControlResultSet'].nil?
@QualityControlResultSet = []
params['QualityControlResultSet'].each do |i|
qualitycontrolresult_tmp = QualityControlResult.new
qualitycontrolresult_tmp.deserialize(i)
@QualityControlResultSet << qualitycontrolresult_tmp
end
end
end
end
# 质检结果项
class QualityControlItem < TencentCloud::Common::AbstractModel
# @param Confidence: 置信度,取值范围是 0 到 100。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Confidence: Integer
# @param StartTimeOffset: 出现的起始时间戳,秒。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 出现的结束时间戳,秒。
# @type EndTimeOffset: Float
# @param AreaCoordSet: 区域坐标(px),即左上角坐标、右下角坐标。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AreaCoordSet: Array
attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset, :AreaCoordSet
def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil, areacoordset=nil)
@Confidence = confidence
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@AreaCoordSet = areacoordset
end
def deserialize(params)
@Confidence = params['Confidence']
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
@AreaCoordSet = params['AreaCoordSet']
end
end
# 质检异常项。
class QualityControlResult < TencentCloud::Common::AbstractModel
# @param Type: 异常类型,取值范围:
# Jitter:抖动,
# Blur:模糊,
# LowLighting:低光照,
# HighLighting:过曝,
# CrashScreen:花屏,
# BlackWhiteEdge:黑白边,
# SolidColorScreen:纯色屏,
# Noise:噪点,
# Mosaic:马赛克,
# QRCode:二维码,
# AppletCode:小程序码,
# BarCode:条形码,
# LowVoice:低音,
# HighVoice:爆音,
# NoVoice:静音,
# LowEvaluation:无参考打分低于阈值。
# @type Type: String
# @param QualityControlItems: 质检结果项。
# @type QualityControlItems: Array
attr_accessor :Type, :QualityControlItems
def initialize(type=nil, qualitycontrolitems=nil)
@Type = type
@QualityControlItems = qualitycontrolitems
end
def deserialize(params)
@Type = params['Type']
unless params['QualityControlItems'].nil?
@QualityControlItems = []
params['QualityControlItems'].each do |i|
qualitycontrolitem_tmp = QualityControlItem.new
qualitycontrolitem_tmp.deserialize(i)
@QualityControlItems << qualitycontrolitem_tmp
end
end
end
end
# RTMP转推的目标地址信息。
class RTMPAddressDestination < TencentCloud::Common::AbstractModel
# @param Url: 转推RTMP的目标Url,格式如'rtmp://domain/live'。
# @type Url: String
# @param StreamKey: 转推RTMP的目标StreamKey,格式如'steamid?key=value'。
# @type StreamKey: String
attr_accessor :Url, :StreamKey
def initialize(url=nil, streamkey=nil)
@Url = url
@StreamKey = streamkey
end
def deserialize(params)
@Url = params['Url']
@StreamKey = params['StreamKey']
end
end
# 创建的输入RTMP拉流源站配置信息。
class RTMPPullSourceAddress < TencentCloud::Common::AbstractModel
# @param TcUrl: RTMP源站的TcUrl地址。
# @type TcUrl: String
# @param StreamKey: RTMP源站的StreamKey信息。
# @type StreamKey: String
attr_accessor :TcUrl, :StreamKey
def initialize(tcurl=nil, streamkey=nil)
@TcUrl = tcurl
@StreamKey = streamkey
end
def deserialize(params)
@TcUrl = params['TcUrl']
@StreamKey = params['StreamKey']
end
end
# 转推的RTP目标地址信息。
class RTPAddressDestination < TencentCloud::Common::AbstractModel
# @param Ip: 转推的目标地址的IP。
# @type Ip: String
# @param Port: 转推的目标地址的端口。
# @type Port: Integer
attr_accessor :Ip, :Port
def initialize(ip=nil, port=nil)
@Ip = ip
@Port = port
end
def deserialize(params)
@Ip = params['Ip']
@Port = params['Port']
end
end
# 创建的输入RTSP拉流源站配置信息。
class RTSPPullSourceAddress < TencentCloud::Common::AbstractModel
# @param Url: RTSP源站的Url地址。
# @type Url: String
attr_accessor :Url
def initialize(url=nil)
@Url = url
end
def deserialize(params)
@Url = params['Url']
end
end
# 图片水印模板输入参数
class RawImageWatermarkInput < TencentCloud::Common::AbstractModel
# @param ImageContent: 水印图片的输入内容。支持 jpeg、png 图片格式。
# @type ImageContent: :class:`Tencentcloud::Mps.v20190612.models.MediaInputInfo`
# @param Width: 水印的宽度。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;
# 当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素。
# 默认值:10%。
# @type Width: String
# @param Height: 水印的高度。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;
# 当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素。
# 默认值:0px,表示 Height 按照原始水印图片的宽高比缩放。
# @type Height: String
# @param RepeatType: 水印重复类型。使用场景:水印为动态图像。取值范围:
# once:动态水印播放完后,不再出现;
# repeat_last_frame:水印播放完后,停留在最后一帧;
# repeat:水印循环播放,直到视频结束(默认值)。
# @type RepeatType: String
attr_accessor :ImageContent, :Width, :Height, :RepeatType
def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil)
@ImageContent = imagecontent
@Width = width
@Height = height
@RepeatType = repeattype
end
def deserialize(params)
unless params['ImageContent'].nil?
@ImageContent = MediaInputInfo.new
@ImageContent.deserialize(params['ImageContent'])
end
@Width = params['Width']
@Height = params['Height']
@RepeatType = params['RepeatType']
end
end
# 自定义转码的规格参数。
class RawTranscodeParameter < TencentCloud::Common::AbstractModel
# @param Container: 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a。其中,mp3、flac、ogg、m4a 为纯音频文件。
# @type Container: String
# @param RemoveVideo: 是否去除视频数据,取值:
# 0:保留;
# 1:去除。
# 默认值:0。
# @type RemoveVideo: Integer
# @param RemoveAudio: 是否去除音频数据,取值:
# 0:保留;
# 1:去除。
# 默认值:0。
# @type RemoveAudio: Integer
# @param VideoTemplate: 视频流配置参数,当 RemoveVideo 为 0,该字段必填。
# @type VideoTemplate: :class:`Tencentcloud::Mps.v20190612.models.VideoTemplateInfo`
# @param AudioTemplate: 音频流配置参数,当 RemoveAudio 为 0,该字段必填。
# @type AudioTemplate: :class:`Tencentcloud::Mps.v20190612.models.AudioTemplateInfo`
# @param TEHDConfig: 极速高清转码参数。
# @type TEHDConfig: :class:`Tencentcloud::Mps.v20190612.models.TEHDConfig`
attr_accessor :Container, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig
def initialize(container=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil)
@Container = container
@RemoveVideo = removevideo
@RemoveAudio = removeaudio
@VideoTemplate = videotemplate
@AudioTemplate = audiotemplate
@TEHDConfig = tehdconfig
end
def deserialize(params)
@Container = params['Container']
@RemoveVideo = params['RemoveVideo']
@RemoveAudio = params['RemoveAudio']
unless params['VideoTemplate'].nil?
@VideoTemplate = VideoTemplateInfo.new
@VideoTemplate.deserialize(params['VideoTemplate'])
end
unless params['AudioTemplate'].nil?
@AudioTemplate = AudioTemplateInfo.new
@AudioTemplate.deserialize(params['AudioTemplate'])
end
unless params['TEHDConfig'].nil?
@TEHDConfig = TEHDConfig.new
@TEHDConfig.deserialize(params['TEHDConfig'])
end
end
end
# 自定义水印规格参数。
class RawWatermarkParameter < TencentCloud::Common::AbstractModel
# @param Type: 水印类型,可选值:
# image:图片水印。
# @type Type: String
# @param CoordinateOrigin: 原点位置,目前仅支持:
# TopLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角。
# 默认值:TopLeft。
# @type CoordinateOrigin: String
# @param XPos: 水印原点距离视频图像坐标原点的水平位置。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 XPos 为视频宽度指定百分比,如 10% 表示 XPos 为视频宽度的 10%;
# 当字符串以 px 结尾,表示水印 XPos 为指定像素,如 100px 表示 XPos 为 100 像素。
# 默认值:0px。
# @type XPos: String
# @param YPos: 水印原点距离视频图像坐标原点的垂直位置。支持 %、px 两种格式:
# 当字符串以 % 结尾,表示水印 YPos 为视频高度指定百分比,如 10% 表示 YPos 为视频高度的 10%;
# 当字符串以 px 结尾,表示水印 YPos 为指定像素,如 100px 表示 YPos 为 100 像素。
# 默认值:0px。
# @type YPos: String
# @param ImageTemplate: 图片水印模板,当 Type 为 image,该字段必填。当 Type 为 text,该字段无效。
# @type ImageTemplate: :class:`Tencentcloud::Mps.v20190612.models.RawImageWatermarkInput`
attr_accessor :Type, :CoordinateOrigin, :XPos, :YPos, :ImageTemplate
def initialize(type=nil, coordinateorigin=nil, xpos=nil, ypos=nil, imagetemplate=nil)
@Type = type
@CoordinateOrigin = coordinateorigin
@XPos = xpos
@YPos = ypos
@ImageTemplate = imagetemplate
end
def deserialize(params)
@Type = params['Type']
@CoordinateOrigin = params['CoordinateOrigin']
@XPos = params['XPos']
@YPos = params['YPos']
unless params['ImageTemplate'].nil?
@ImageTemplate = RawImageWatermarkInput.new
@ImageTemplate.deserialize(params['ImageTemplate'])
end
end
end
# RecognizeMediaForZhiXue请求参数结构体
class RecognizeMediaForZhiXueRequest < TencentCloud::Common::AbstractModel
# @param InputInfo: 输入媒体文件存储信息。
# @type InputInfo: :class:`Tencentcloud::Mps.v20190612.models.MediaInputInfo`
# @param ExpressionConfig: 表情识别参数配置。默认开启。
# @type ExpressionConfig: :class:`Tencentcloud::Mps.v20190612.models.ExpressionConfigInfo`
# @param ActionConfig: 动作识别参数配置。默认开启。
# @type ActionConfig: :class:`Tencentcloud::Mps.v20190612.models.ActionConfigInfo`
attr_accessor :InputInfo, :ExpressionConfig, :ActionConfig
def initialize(inputinfo=nil, expressionconfig=nil, actionconfig=nil)
@InputInfo = inputinfo
@ExpressionConfig = expressionconfig
@ActionConfig = actionconfig
end
def deserialize(params)
unless params['InputInfo'].nil?
@InputInfo = MediaInputInfo.new
@InputInfo.deserialize(params['InputInfo'])
end
unless params['ExpressionConfig'].nil?
@ExpressionConfig = ExpressionConfigInfo.new
@ExpressionConfig.deserialize(params['ExpressionConfig'])
end
unless params['ActionConfig'].nil?
@ActionConfig = ActionConfigInfo.new
@ActionConfig.deserialize(params['ActionConfig'])
end
end
end
# RecognizeMediaForZhiXue返回参数结构体
class RecognizeMediaForZhiXueResponse < TencentCloud::Common::AbstractModel
# @param TaskId: 任务 ID,可以通过该 ID 查询任务状态和结果。
# @type TaskId: String
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TaskId, :RequestId
def initialize(taskid=nil, requestid=nil)
@TaskId = taskid
@RequestId = requestid
end
def deserialize(params)
@TaskId = params['TaskId']
@RequestId = params['RequestId']
end
end
# 地区信息。
class RegionInfo < TencentCloud::Common::AbstractModel
# @param Name: 地区名称。
# @type Name: String
attr_accessor :Name
def initialize(name=nil)
@Name = name
end
def deserialize(params)
@Name = params['Name']
end
end
# ResetWorkflow请求参数结构体
class ResetWorkflowRequest < TencentCloud::Common::AbstractModel
# @param WorkflowId: 工作流 ID。
# @type WorkflowId: Integer
# @param WorkflowName: 工作流名称,最多128字符。同一个用户该名称唯一。
# @type WorkflowName: String
# @param Trigger: 工作流绑定的触发规则,当上传视频命中该规则到该对象时即触发工作流。
# @type Trigger: :class:`Tencentcloud::Mps.v20190612.models.WorkflowTrigger`
# @param OutputStorage: 视频处理的文件输出配置。不填则继承 Trigger 中的存储位置。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputDir: 视频处理生成的文件输出的目标目录,如`/movie/201907/`。如果不填,表示与触发文件所在的目录一致,即`{inputDir}`。
# @type OutputDir: String
# @param MediaProcessTask: 视频处理类型任务参数。
# @type MediaProcessTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskInput`
# @param AiContentReviewTask: 视频内容审核类型任务参数。
# @type AiContentReviewTask: :class:`Tencentcloud::Mps.v20190612.models.AiContentReviewTaskInput`
# @param AiAnalysisTask: 视频内容分析类型任务参数。
# @type AiAnalysisTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskInput`
# @param AiRecognitionTask: 视频内容识别类型任务参数。
# @type AiRecognitionTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskInput`
# @param TaskPriority: 工作流的优先级,数值越大优先级越高,取值范围是 -10 到 10,不填代表 0。
# @type TaskPriority: Integer
# @param TaskNotifyConfig: 任务的事件通知信息,不填代表不获取事件通知。
# @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.TaskNotifyConfig`
attr_accessor :WorkflowId, :WorkflowName, :Trigger, :OutputStorage, :OutputDir, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTask, :TaskPriority, :TaskNotifyConfig
def initialize(workflowid=nil, workflowname=nil, trigger=nil, outputstorage=nil, outputdir=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontask=nil, taskpriority=nil, tasknotifyconfig=nil)
@WorkflowId = workflowid
@WorkflowName = workflowname
@Trigger = trigger
@OutputStorage = outputstorage
@OutputDir = outputdir
@MediaProcessTask = mediaprocesstask
@AiContentReviewTask = aicontentreviewtask
@AiAnalysisTask = aianalysistask
@AiRecognitionTask = airecognitiontask
@TaskPriority = taskpriority
@TaskNotifyConfig = tasknotifyconfig
end
def deserialize(params)
@WorkflowId = params['WorkflowId']
@WorkflowName = params['WorkflowName']
unless params['Trigger'].nil?
@Trigger = WorkflowTrigger.new
@Trigger.deserialize(params['Trigger'])
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputDir = params['OutputDir']
unless params['MediaProcessTask'].nil?
@MediaProcessTask = MediaProcessTaskInput.new
@MediaProcessTask.deserialize(params['MediaProcessTask'])
end
unless params['AiContentReviewTask'].nil?
@AiContentReviewTask = AiContentReviewTaskInput.new
@AiContentReviewTask.deserialize(params['AiContentReviewTask'])
end
unless params['AiAnalysisTask'].nil?
@AiAnalysisTask = AiAnalysisTaskInput.new
@AiAnalysisTask.deserialize(params['AiAnalysisTask'])
end
unless params['AiRecognitionTask'].nil?
@AiRecognitionTask = AiRecognitionTaskInput.new
@AiRecognitionTask.deserialize(params['AiRecognitionTask'])
end
@TaskPriority = params['TaskPriority']
unless params['TaskNotifyConfig'].nil?
@TaskNotifyConfig = TaskNotifyConfig.new
@TaskNotifyConfig.deserialize(params['TaskNotifyConfig'])
end
end
end
# ResetWorkflow返回参数结构体
class ResetWorkflowResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# 延播平滑吐流配置。
class ResilientStreamConf < TencentCloud::Common::AbstractModel
# @param Enable: 是否开启延播平滑吐流,true开启,false不开启,默认不开启。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Enable: Boolean
# @param BufferTime: 延播时间,单位秒,目前支持的范围为10~300秒。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type BufferTime: Integer
attr_accessor :Enable, :BufferTime
def initialize(enable=nil, buffertime=nil)
@Enable = enable
@BufferTime = buffertime
end
def deserialize(params)
@Enable = params['Enable']
@BufferTime = params['BufferTime']
end
end
# AWS S3存储输入
class S3InputInfo < TencentCloud::Common::AbstractModel
# @param S3Bucket: S3 bucket。
# @type S3Bucket: String
# @param S3Region: S3 bucket 对应的区域,目前支持:
# us-east-1
# eu-west-3
# @type S3Region: String
# @param S3Object: S3 bucket 中的媒体资源路径。
# @type S3Object: String
# @param S3SecretId: AWS 内网访问 媒体资源的秘钥id。
# @type S3SecretId: String
# @param S3SecretKey: AWS 内网访问 媒体资源的秘钥key。
# @type S3SecretKey: String
attr_accessor :S3Bucket, :S3Region, :S3Object, :S3SecretId, :S3SecretKey
def initialize(s3bucket=nil, s3region=nil, s3object=nil, s3secretid=nil, s3secretkey=nil)
@S3Bucket = s3bucket
@S3Region = s3region
@S3Object = s3object
@S3SecretId = s3secretid
@S3SecretKey = s3secretkey
end
def deserialize(params)
@S3Bucket = params['S3Bucket']
@S3Region = params['S3Region']
@S3Object = params['S3Object']
@S3SecretId = params['S3SecretId']
@S3SecretKey = params['S3SecretKey']
end
end
# AWS S3 输出位置
class S3OutputStorage < TencentCloud::Common::AbstractModel
# @param S3Bucket: S3 bucket。
# @type S3Bucket: String
# @param S3Region: S3 bucket 对应的区域。
# @type S3Region: String
# @param S3SecretId: AWS 内网上传 媒体资源的秘钥id。
# @type S3SecretId: String
# @param S3SecretKey: AWS 内网上传 媒体资源的秘钥key。
# @type S3SecretKey: String
attr_accessor :S3Bucket, :S3Region, :S3SecretId, :S3SecretKey
def initialize(s3bucket=nil, s3region=nil, s3secretid=nil, s3secretkey=nil)
@S3Bucket = s3bucket
@S3Region = s3region
@S3SecretId = s3secretid
@S3SecretKey = s3secretkey
end
def deserialize(params)
@S3Bucket = params['S3Bucket']
@S3Region = params['S3Region']
@S3SecretId = params['S3SecretId']
@S3SecretKey = params['S3SecretKey']
end
end
# 转推的目标地址信息。
class SRTAddressDestination < TencentCloud::Common::AbstractModel
# @param Ip: 目标地址的IP。
# @type Ip: String
# @param Port: 目标地址的端口。
# @type Port: Integer
attr_accessor :Ip, :Port
def initialize(ip=nil, port=nil)
@Ip = ip
@Port = port
end
def deserialize(params)
@Ip = params['Ip']
@Port = params['Port']
end
end
# SRT输入源地址。
class SRTSourceAddressReq < TencentCloud::Common::AbstractModel
# @param Ip: 对端IP。
# @type Ip: String
# @param Port: 对端端口。
# @type Port: Integer
attr_accessor :Ip, :Port
def initialize(ip=nil, port=nil)
@Ip = ip
@Port = port
end
def deserialize(params)
@Ip = params['Ip']
@Port = params['Port']
end
end
# SRT输入源地址。
class SRTSourceAddressResp < TencentCloud::Common::AbstractModel
# @param Ip: 对端IP。
# @type Ip: String
# @param Port: 对端端口。
# @type Port: Integer
attr_accessor :Ip, :Port
def initialize(ip=nil, port=nil)
@Ip = ip
@Port = port
end
def deserialize(params)
@Ip = params['Ip']
@Port = params['Port']
end
end
# 对视频做采样截图任务输入参数类型。
class SampleSnapshotTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 采样截图模板 ID。
# @type Definition: Integer
# @param WatermarkSet: 水印列表,支持多张图片或文字水印,最大可支持 10 张。
# @type WatermarkSet: Array
# @param OutputStorage: 采样截图后文件的目标存储,不填则继承上层的 OutputStorage 值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputObjectPath: 采样截图后图片文件的输出路径,可以为相对路径或者绝对路径。如果不填,则默认为相对路径:`{inputName}_sampleSnapshot_{definition}_{number}.{format}`。
# @type OutputObjectPath: String
# @param ObjectNumberFormat: 采样截图后输出路径中的`{number}`变量的规则。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ObjectNumberFormat: :class:`Tencentcloud::Mps.v20190612.models.NumberFormat`
attr_accessor :Definition, :WatermarkSet, :OutputStorage, :OutputObjectPath, :ObjectNumberFormat
def initialize(definition=nil, watermarkset=nil, outputstorage=nil, outputobjectpath=nil, objectnumberformat=nil)
@Definition = definition
@WatermarkSet = watermarkset
@OutputStorage = outputstorage
@OutputObjectPath = outputobjectpath
@ObjectNumberFormat = objectnumberformat
end
def deserialize(params)
@Definition = params['Definition']
unless params['WatermarkSet'].nil?
@WatermarkSet = []
params['WatermarkSet'].each do |i|
watermarkinput_tmp = WatermarkInput.new
watermarkinput_tmp.deserialize(i)
@WatermarkSet << watermarkinput_tmp
end
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputObjectPath = params['OutputObjectPath']
unless params['ObjectNumberFormat'].nil?
@ObjectNumberFormat = NumberFormat.new
@ObjectNumberFormat.deserialize(params['ObjectNumberFormat'])
end
end
end
# 采样截图模板详情
class SampleSnapshotTemplate < TencentCloud::Common::AbstractModel
# @param Definition: 采样截图模板唯一标识。
# @type Definition: Integer
# @param Type: 模板类型,取值范围:
# Preset:系统预置模板;
# Custom:用户自定义模板。
# @type Type: String
# @param Name: 采样截图模板名称。
# @type Name: String
# @param Comment: 模板描述信息。
# @type Comment: String
# @param Width: 截图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 截图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# @type ResolutionAdaptive: String
# @param Format: 图片格式。
# @type Format: String
# @param SampleType: 采样截图类型。
# @type SampleType: String
# @param SampleInterval: 采样间隔。
# @type SampleInterval: Integer
# @param CreateTime: 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type UpdateTime: String
# @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
# stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;
# black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。
# white:留白,保持视频宽高比不变,边缘剩余部分使用白色填充。
# gauss:高斯模糊,保持视频宽高比不变,边缘剩余部分使用高斯模糊。
# 默认值:black 。
# @type FillType: String
attr_accessor :Definition, :Type, :Name, :Comment, :Width, :Height, :ResolutionAdaptive, :Format, :SampleType, :SampleInterval, :CreateTime, :UpdateTime, :FillType
def initialize(definition=nil, type=nil, name=nil, comment=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil, sampletype=nil, sampleinterval=nil, createtime=nil, updatetime=nil, filltype=nil)
@Definition = definition
@Type = type
@Name = name
@Comment = comment
@Width = width
@Height = height
@ResolutionAdaptive = resolutionadaptive
@Format = format
@SampleType = sampletype
@SampleInterval = sampleinterval
@CreateTime = createtime
@UpdateTime = updatetime
@FillType = filltype
end
def deserialize(params)
@Definition = params['Definition']
@Type = params['Type']
@Name = params['Name']
@Comment = params['Comment']
@Width = params['Width']
@Height = params['Height']
@ResolutionAdaptive = params['ResolutionAdaptive']
@Format = params['Format']
@SampleType = params['SampleType']
@SampleInterval = params['SampleInterval']
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
@FillType = params['FillType']
end
end
# 编排视频分析任务结果类型
class ScheduleAnalysisTaskResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 分析任务的输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskInput`
# @param Output: 分析任务的输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: Array
# @param BeginProcessTime: 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type BeginProcessTime: String
# @param FinishTime: 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FinishTime: String
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output, :BeginProcessTime, :FinishTime
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil, beginprocesstime=nil, finishtime=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
@BeginProcessTime = beginprocesstime
@FinishTime = finishtime
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiAnalysisTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = []
params['Output'].each do |i|
aianalysisresult_tmp = AiAnalysisResult.new
aianalysisresult_tmp.deserialize(i)
@Output << aianalysisresult_tmp
end
end
@BeginProcessTime = params['BeginProcessTime']
@FinishTime = params['FinishTime']
end
end
# 质检任务结果类型
class ScheduleQualityControlTaskResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 质检任务的输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiQualityControlTaskInput`
# @param Output: 质检任务的输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: :class:`Tencentcloud::Mps.v20190612.models.QualityControlData`
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiQualityControlTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = QualityControlData.new
@Output.deserialize(params['Output'])
end
end
end
# 编排视频识别任务结果类型
class ScheduleRecognitionTaskResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 识别任务的输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskInput`
# @param Output: 识别任务的输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: Array
# @param BeginProcessTime: 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type BeginProcessTime: String
# @param FinishTime: 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FinishTime: String
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output, :BeginProcessTime, :FinishTime
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil, beginprocesstime=nil, finishtime=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
@BeginProcessTime = beginprocesstime
@FinishTime = finishtime
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiRecognitionTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = []
params['Output'].each do |i|
airecognitionresult_tmp = AiRecognitionResult.new
airecognitionresult_tmp.deserialize(i)
@Output << airecognitionresult_tmp
end
end
@BeginProcessTime = params['BeginProcessTime']
@FinishTime = params['FinishTime']
end
end
# 编排视频审核任务结果类型
class ScheduleReviewTaskResult < TencentCloud::Common::AbstractModel
# @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
# @type Status: String
# @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
# @type ErrCodeExt: String
# @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
# @type ErrCode: Integer
# @param Message: 错误信息。
# @type Message: String
# @param Input: 审核任务的输入。
# @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiContentReviewTaskInput`
# @param Output: 审核任务的输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Output: Array
# @param BeginProcessTime: 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type BeginProcessTime: String
# @param FinishTime: 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FinishTime: String
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output, :BeginProcessTime, :FinishTime
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil, beginprocesstime=nil, finishtime=nil)
@Status = status
@ErrCodeExt = errcodeext
@ErrCode = errcode
@Message = message
@Input = input
@Output = output
@BeginProcessTime = beginprocesstime
@FinishTime = finishtime
end
def deserialize(params)
@Status = params['Status']
@ErrCodeExt = params['ErrCodeExt']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['Input'].nil?
@Input = AiContentReviewTaskInput.new
@Input.deserialize(params['Input'])
end
unless params['Output'].nil?
@Output = []
params['Output'].each do |i|
aicontentreviewresult_tmp = AiContentReviewResult.new
aicontentreviewresult_tmp.deserialize(i)
@Output << aicontentreviewresult_tmp
end
end
@BeginProcessTime = params['BeginProcessTime']
@FinishTime = params['FinishTime']
end
end
# 编排任务信息
class ScheduleTask < TencentCloud::Common::AbstractModel
# @param TaskId: 编排任务 ID。
# @type TaskId: String
# @param Status: 任务流状态,取值:
# PROCESSING:处理中;
# FINISH:已完成。
# @type Status: String
# @param ErrCode: 源异常时返回非0错误码,返回0 时请使用各个具体任务的 ErrCode。
# @type ErrCode: Integer
# @param Message: 源异常时返回对应异常Message,否则请使用各个具体任务的 Message。
# @type Message: String
# @param InputInfo: 媒体处理的目标文件信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type InputInfo: :class:`Tencentcloud::Mps.v20190612.models.MediaInputInfo`
# @param MetaData: 原始视频的元信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type MetaData: :class:`Tencentcloud::Mps.v20190612.models.MediaMetaData`
# @param ActivityResultSet: 编排任务输出。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ActivityResultSet: Array
attr_accessor :TaskId, :Status, :ErrCode, :Message, :InputInfo, :MetaData, :ActivityResultSet
def initialize(taskid=nil, status=nil, errcode=nil, message=nil, inputinfo=nil, metadata=nil, activityresultset=nil)
@TaskId = taskid
@Status = status
@ErrCode = errcode
@Message = message
@InputInfo = inputinfo
@MetaData = metadata
@ActivityResultSet = activityresultset
end
def deserialize(params)
@TaskId = params['TaskId']
@Status = params['Status']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['InputInfo'].nil?
@InputInfo = MediaInputInfo.new
@InputInfo.deserialize(params['InputInfo'])
end
unless params['MetaData'].nil?
@MetaData = MediaMetaData.new
@MetaData.deserialize(params['MetaData'])
end
unless params['ActivityResultSet'].nil?
@ActivityResultSet = []
params['ActivityResultSet'].each do |i|
activityresult_tmp = ActivityResult.new
activityresult_tmp.deserialize(i)
@ActivityResultSet << activityresult_tmp
end
end
end
end
# 编排详情。
class SchedulesInfo < TencentCloud::Common::AbstractModel
# @param ScheduleId: 编排唯一标识。
# @type ScheduleId: Integer
# @param ScheduleName: 编排名称。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ScheduleName: String
# @param Status: 编排状态,取值范围:
# Enabled:已启用,
# Disabled:已禁用。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Status: String
# @param Trigger: 编排绑定的触发规则。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Trigger: :class:`Tencentcloud::Mps.v20190612.models.WorkflowTrigger`
# @param Activities: 编排任务列表。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Activities: Array
# @param OutputStorage: 媒体处理的文件输出存储位置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputDir: 媒体处理生成的文件输出的目标目录。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OutputDir: String
# @param TaskNotifyConfig: 任务的事件通知配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.TaskNotifyConfig`
# @param CreateTime: 创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type CreateTime: String
# @param UpdateTime: 最后编辑时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type UpdateTime: String
attr_accessor :ScheduleId, :ScheduleName, :Status, :Trigger, :Activities, :OutputStorage, :OutputDir, :TaskNotifyConfig, :CreateTime, :UpdateTime
def initialize(scheduleid=nil, schedulename=nil, status=nil, trigger=nil, activities=nil, outputstorage=nil, outputdir=nil, tasknotifyconfig=nil, createtime=nil, updatetime=nil)
@ScheduleId = scheduleid
@ScheduleName = schedulename
@Status = status
@Trigger = trigger
@Activities = activities
@OutputStorage = outputstorage
@OutputDir = outputdir
@TaskNotifyConfig = tasknotifyconfig
@CreateTime = createtime
@UpdateTime = updatetime
end
def deserialize(params)
@ScheduleId = params['ScheduleId']
@ScheduleName = params['ScheduleName']
@Status = params['Status']
unless params['Trigger'].nil?
@Trigger = WorkflowTrigger.new
@Trigger.deserialize(params['Trigger'])
end
unless params['Activities'].nil?
@Activities = []
params['Activities'].each do |i|
activity_tmp = Activity.new
activity_tmp.deserialize(i)
@Activities << activity_tmp
end
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputDir = params['OutputDir']
unless params['TaskNotifyConfig'].nil?
@TaskNotifyConfig = TaskNotifyConfig.new
@TaskNotifyConfig.deserialize(params['TaskNotifyConfig'])
end
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
end
end
# 去划痕配置
class ScratchRepairConfig < TencentCloud::Common::AbstractModel
# @param Switch: 能力配置开关,可选值:
# ON:开启;
# OFF:关闭。
# 默认值:ON。
# @type Switch: String
# @param Intensity: 强度,取值范围:0.0~1.0。
# 默认:0.0。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Intensity: Float
attr_accessor :Switch, :Intensity
def initialize(switch=nil, intensity=nil)
@Switch = switch
@Intensity = intensity
end
def deserialize(params)
@Switch = params['Switch']
@Intensity = params['Intensity']
end
end
# 智能拆条片段。
class SegmentRecognitionItem < TencentCloud::Common::AbstractModel
# @param Confidence: 置信度。
# @type Confidence: Float
# @param StartTimeOffset: 片段起始时间偏移。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 片段结束时间偏移。
# @type EndTimeOffset: Float
# @param SegmentUrl: 拆条片段URL。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SegmentUrl: String
attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset, :SegmentUrl
def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil, segmenturl=nil)
@Confidence = confidence
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@SegmentUrl = segmenturl
end
def deserialize(params)
@Confidence = params['Confidence']
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
@SegmentUrl = params['SegmentUrl']
end
end
# 细节增强配置
class SharpEnhanceConfig < TencentCloud::Common::AbstractModel
# @param Switch: 能力配置开关,可选值:
# ON:开启;
# OFF:关闭。
# 默认值:ON。
# @type Switch: String
# @param Intensity: 强度,取值范围:0.0~1.0。
# 默认:0.0。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Intensity: Float
attr_accessor :Switch, :Intensity
def initialize(switch=nil, intensity=nil)
@Switch = switch
@Intensity = intensity
end
def deserialize(params)
@Switch = params['Switch']
@Intensity = params['Intensity']
end
end
# 对视频按指定时间点截图任务输入参数类型
class SnapshotByTimeOffsetTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 指定时间点截图模板 ID。
# @type Definition: Integer
# @param ExtTimeOffsetSet: 截图时间点列表,时间点支持 s、% 两种格式:
# 当字符串以 s 结尾,表示时间点单位为秒,如 3.5s 表示时间点为第3.5秒;
# 当字符串以 % 结尾,表示时间点为视频时长的百分比大小,如10%表示时间点为视频前第10%的时间。
# @type ExtTimeOffsetSet: Array
# @param TimeOffsetSet: 截图时间点列表,单位为秒。此参数已不再建议使用,建议您使用 ExtTimeOffsetSet 参数。
# @type TimeOffsetSet: Array
# @param WatermarkSet: 水印列表,支持多张图片或文字水印,最大可支持 10 张。
# @type WatermarkSet: Array
# @param OutputStorage: 时间点截图后文件的目标存储,不填则继承上层的 OutputStorage 值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputObjectPath: 时间点截图后图片文件的输出路径,可以为相对路径或者绝对路径。如果不填,则默认为相对路径:`{inputName}_snapshotByTimeOffset_{definition}_{number}.{format}`。
# @type OutputObjectPath: String
# @param ObjectNumberFormat: 时间点截图后输出路径中的`{number}`变量的规则。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ObjectNumberFormat: :class:`Tencentcloud::Mps.v20190612.models.NumberFormat`
attr_accessor :Definition, :ExtTimeOffsetSet, :TimeOffsetSet, :WatermarkSet, :OutputStorage, :OutputObjectPath, :ObjectNumberFormat
def initialize(definition=nil, exttimeoffsetset=nil, timeoffsetset=nil, watermarkset=nil, outputstorage=nil, outputobjectpath=nil, objectnumberformat=nil)
@Definition = definition
@ExtTimeOffsetSet = exttimeoffsetset
@TimeOffsetSet = timeoffsetset
@WatermarkSet = watermarkset
@OutputStorage = outputstorage
@OutputObjectPath = outputobjectpath
@ObjectNumberFormat = objectnumberformat
end
def deserialize(params)
@Definition = params['Definition']
@ExtTimeOffsetSet = params['ExtTimeOffsetSet']
@TimeOffsetSet = params['TimeOffsetSet']
unless params['WatermarkSet'].nil?
@WatermarkSet = []
params['WatermarkSet'].each do |i|
watermarkinput_tmp = WatermarkInput.new
watermarkinput_tmp.deserialize(i)
@WatermarkSet << watermarkinput_tmp
end
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputObjectPath = params['OutputObjectPath']
unless params['ObjectNumberFormat'].nil?
@ObjectNumberFormat = NumberFormat.new
@ObjectNumberFormat.deserialize(params['ObjectNumberFormat'])
end
end
end
# 时间点截图模板详情
class SnapshotByTimeOffsetTemplate < TencentCloud::Common::AbstractModel
# @param Definition: 时间点截图模板唯一标识。
# @type Definition: Integer
# @param Type: 模板类型,取值范围:
# Preset:系统预置模板;
# Custom:用户自定义模板。
# @type Type: String
# @param Name: 时间点截图模板名称。
# @type Name: String
# @param Comment: 模板描述信息。
# @type Comment: String
# @param Width: 截图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 截图高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# @type ResolutionAdaptive: String
# @param Format: 图片格式。
# @type Format: String
# @param CreateTime: 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type UpdateTime: String
# @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
# stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;
# black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。
# black:留白,保持视频宽高比不变,边缘剩余部分使用白色填充。
# black:高斯模糊,保持视频宽高比不变,边缘剩余部分使用高斯模糊。
# 默认值:black 。
# @type FillType: String
attr_accessor :Definition, :Type, :Name, :Comment, :Width, :Height, :ResolutionAdaptive, :Format, :CreateTime, :UpdateTime, :FillType
def initialize(definition=nil, type=nil, name=nil, comment=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil, createtime=nil, updatetime=nil, filltype=nil)
@Definition = definition
@Type = type
@Name = name
@Comment = comment
@Width = width
@Height = height
@ResolutionAdaptive = resolutionadaptive
@Format = format
@CreateTime = createtime
@UpdateTime = updatetime
@FillType = filltype
end
def deserialize(params)
@Definition = params['Definition']
@Type = params['Type']
@Name = params['Name']
@Comment = params['Comment']
@Width = params['Width']
@Height = params['Height']
@ResolutionAdaptive = params['ResolutionAdaptive']
@Format = params['Format']
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
@FillType = params['FillType']
end
end
# StartStreamLinkFlow请求参数结构体
class StartStreamLinkFlowRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 流Id。
# @type FlowId: String
attr_accessor :FlowId
def initialize(flowid=nil)
@FlowId = flowid
end
def deserialize(params)
@FlowId = params['FlowId']
end
end
# StartStreamLinkFlow返回参数结构体
class StartStreamLinkFlowResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# StopStreamLinkFlow请求参数结构体
class StopStreamLinkFlowRequest < TencentCloud::Common::AbstractModel
# @param FlowId: 流Id。
# @type FlowId: String
attr_accessor :FlowId
def initialize(flowid=nil)
@FlowId = flowid
end
def deserialize(params)
@FlowId = params['FlowId']
end
end
# StopStreamLinkFlow返回参数结构体
class StopStreamLinkFlowResponse < TencentCloud::Common::AbstractModel
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :RequestId
def initialize(requestid=nil)
@RequestId = requestid
end
def deserialize(params)
@RequestId = params['RequestId']
end
end
# 媒体传输的地区信息。
class StreamLinkRegionInfo < TencentCloud::Common::AbstractModel
# @param Regions: 媒体直传输的地区信息列表。
# @type Regions: Array
attr_accessor :Regions
def initialize(regions=nil)
@Regions = regions
end
def deserialize(params)
unless params['Regions'].nil?
@Regions = []
params['Regions'].each do |i|
regioninfo_tmp = RegionInfo.new
regioninfo_tmp.deserialize(i)
@Regions << regioninfo_tmp
end
end
end
end
# 字幕流配置参数。
class SubtitleTemplate < TencentCloud::Common::AbstractModel
# @param Path: 要压制到视频中的字幕文件地址。
# @type Path: String
# @param StreamIndex: 指定要压制到视频中的字幕轨道,如果有指定Path,则Path 优先级更高。Path 和 StreamIndex 至少指定一个。
# @type StreamIndex: Integer
# @param FontType: 字体类型,
# hei.ttf:黑体
# song.ttf:宋体
# simkai.ttf:楷体
# arial.ttf:仅支持英文
# 默认hei.ttf
# @type FontType: String
# @param FontSize: 字体大小,格式:Npx,N 为数值,不指定则以字幕文件中为准。
# @type FontSize: String
# @param FontColor: 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)
# @type FontColor: String
# @param FontAlpha: 文字透明度,取值范围:(0, 1]
# 0:完全透明
# 1:完全不透明
# 默认值:1。
# @type FontAlpha: Float
attr_accessor :Path, :StreamIndex, :FontType, :FontSize, :FontColor, :FontAlpha
def initialize(path=nil, streamindex=nil, fonttype=nil, fontsize=nil, fontcolor=nil, fontalpha=nil)
@Path = path
@StreamIndex = streamindex
@FontType = fonttype
@FontSize = fontsize
@FontColor = fontcolor
@FontAlpha = fontalpha
end
def deserialize(params)
@Path = params['Path']
@StreamIndex = params['StreamIndex']
@FontType = params['FontType']
@FontSize = params['FontSize']
@FontColor = params['FontColor']
@FontAlpha = params['FontAlpha']
end
end
# 超分配置
class SuperResolutionConfig < TencentCloud::Common::AbstractModel
# @param Switch: 能力配置开关,可选值:
# ON:开启;
# OFF:关闭。
# 默认值:ON。
# @type Switch: String
# @param Type: 类型,可选值:
# lq:针对低清晰度有较多噪声视频的超分;
# hq:针对高清晰度视频超分。
# 默认值:lq。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Type: String
# @param Size: 超分倍数,可选值:
# 2:目前只支持 2 倍超分。
# 默认值:2。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Size: Integer
attr_accessor :Switch, :Type, :Size
def initialize(switch=nil, type=nil, size=nil)
@Switch = switch
@Type = type
@Size = size
end
def deserialize(params)
@Switch = params['Switch']
@Type = params['Type']
@Size = params['Size']
end
end
# SVG水印模板输入参数
class SvgWatermarkInput < TencentCloud::Common::AbstractModel
# @param Width: 水印的宽度,支持 px,%,W%,H%,S%,L% 六种格式:
# 当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素;当填 0px 且
# Height 不为 0px 时,表示水印的宽度按原始 SVG 图像等比缩放;当 Width、Height 都填 0px 时,表示水印的宽度取原始 SVG 图像的宽度;
# 当字符串以 W% 结尾,表示水印 Width 为视频宽度的百分比大小,如 10W% 表示 Width 为视频宽度的 10%;
# 当字符串以 H% 结尾,表示水印 Width 为视频高度的百分比大小,如 10H% 表示 Width 为视频高度的 10%;
# 当字符串以 S% 结尾,表示水印 Width 为视频短边的百分比大小,如 10S% 表示 Width 为视频短边的 10%;
# 当字符串以 L% 结尾,表示水印 Width 为视频长边的百分比大小,如 10L% 表示 Width 为视频长边的 10%;
# 当字符串以 % 结尾时,含义同 W%。
# 默认值为 10W%。
# @type Width: String
# @param Height: 水印的高度,支持 px,W%,H%,S%,L% 六种格式:
# 当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素;当填 0px 且
# Width 不为 0px 时,表示水印的高度按原始 SVG 图像等比缩放;当 Width、Height 都填 0px 时,表示水印的高度取原始 SVG 图像的高度;
# 当字符串以 W% 结尾,表示水印 Height 为视频宽度的百分比大小,如 10W% 表示 Height 为视频宽度的 10%;
# 当字符串以 H% 结尾,表示水印 Height 为视频高度的百分比大小,如 10H% 表示 Height 为视频高度的 10%;
# 当字符串以 S% 结尾,表示水印 Height 为视频短边的百分比大小,如 10S% 表示 Height 为视频短边的 10%;
# 当字符串以 L% 结尾,表示水印 Height 为视频长边的百分比大小,如 10L% 表示 Height 为视频长边的 10%;
# 当字符串以 % 结尾时,含义同 H%。
# 默认值为 0px。
# @type Height: String
attr_accessor :Width, :Height
def initialize(width=nil, height=nil)
@Width = width
@Height = height
end
def deserialize(params)
@Width = params['Width']
@Height = params['Height']
end
end
# SVG水印模板输入参数
class SvgWatermarkInputForUpdate < TencentCloud::Common::AbstractModel
# @param Width: 水印的宽度,支持 px,%,W%,H%,S%,L% 六种格式:
# 当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素;当填 0px 且
# Height 不为 0px 时,表示水印的宽度按原始 SVG 图像等比缩放;当 Width、Height 都填 0px 时,表示水印的宽度取原始 SVG 图像的宽度;
# 当字符串以 W% 结尾,表示水印 Width 为视频宽度的百分比大小,如 10W% 表示 Width 为视频宽度的 10%;
# 当字符串以 H% 结尾,表示水印 Width 为视频高度的百分比大小,如 10H% 表示 Width 为视频高度的 10%;
# 当字符串以 S% 结尾,表示水印 Width 为视频短边的百分比大小,如 10S% 表示 Width 为视频短边的 10%;
# 当字符串以 L% 结尾,表示水印 Width 为视频长边的百分比大小,如 10L% 表示 Width 为视频长边的 10%;
# 当字符串以 % 结尾时,含义同 W%。
# 默认值为 10W%。
# @type Width: String
# @param Height: 水印的高度,支持 px,%,W%,H%,S%,L% 六种格式:
# 当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素;当填 0px 且
# Width 不为 0px 时,表示水印的高度按原始 SVG 图像等比缩放;当 Width、Height 都填 0px 时,表示水印的高度取原始 SVG 图像的高度;
# 当字符串以 W% 结尾,表示水印 Height 为视频宽度的百分比大小,如 10W% 表示 Height 为视频宽度的 10%;
# 当字符串以 H% 结尾,表示水印 Height 为视频高度的百分比大小,如 10H% 表示 Height 为视频高度的 10%;
# 当字符串以 S% 结尾,表示水印 Height 为视频短边的百分比大小,如 10S% 表示 Height 为视频短边的 10%;
# 当字符串以 L% 结尾,表示水印 Height 为视频长边的百分比大小,如 10L% 表示 Height 为视频长边的 10%;
# 当字符串以 % 结尾时,含义同 H%。
# 默认值为 0px。
# @type Height: String
attr_accessor :Width, :Height
def initialize(width=nil, height=nil)
@Width = width
@Height = height
end
def deserialize(params)
@Width = params['Width']
@Height = params['Height']
end
end
# 极速高清参数配置。
class TEHDConfig < TencentCloud::Common::AbstractModel
# @param Type: 极速高清类型,可选值:
# TEHD-100:极速高清-100(视频极速高清)。
# TEHD-200:极速高清-200(音频极速高清)。
# 不填代表不启用极速高清。
# @type Type: String
# @param MaxVideoBitrate: 视频码率上限,当 Type 指定了极速高清类型时有效。
# 不填或填0表示不设视频码率上限。
# @type MaxVideoBitrate: Integer
attr_accessor :Type, :MaxVideoBitrate
def initialize(type=nil, maxvideobitrate=nil)
@Type = type
@MaxVideoBitrate = maxvideobitrate
end
def deserialize(params)
@Type = params['Type']
@MaxVideoBitrate = params['MaxVideoBitrate']
end
end
# 极速高清参数配置。
class TEHDConfigForUpdate < TencentCloud::Common::AbstractModel
# @param Type: 极速高清类型,可选值:
# TEHD-100:极速高清-100(视频极速高清)。
# TEHD-200:极速高清-200(音频极速高清)。
# 不填代表不修改。
# @type Type: String
# @param MaxVideoBitrate: 视频码率上限,不填代表不修改。
# @type MaxVideoBitrate: Integer
attr_accessor :Type, :MaxVideoBitrate
def initialize(type=nil, maxvideobitrate=nil)
@Type = type
@MaxVideoBitrate = maxvideobitrate
end
def deserialize(params)
@Type = params['Type']
@MaxVideoBitrate = params['MaxVideoBitrate']
end
end
# 智能标签任务控制参数
class TagConfigureInfo < TencentCloud::Common::AbstractModel
# @param Switch: 智能标签任务开关,可选值:
# ON:开启智能标签任务;
# OFF:关闭智能标签任务。
# @type Switch: String
attr_accessor :Switch
def initialize(switch=nil)
@Switch = switch
end
def deserialize(params)
@Switch = params['Switch']
end
end
# 智能标签任务控制参数
class TagConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 智能标签任务开关,可选值:
# ON:开启智能标签任务;
# OFF:关闭智能标签任务。
# @type Switch: String
attr_accessor :Switch
def initialize(switch=nil)
@Switch = switch
end
def deserialize(params)
@Switch = params['Switch']
end
end
# 任务的事件通知配置。
class TaskNotifyConfig < TencentCloud::Common::AbstractModel
# @param CmqModel: CMQ或TDMQ-CMQ 的模型,有 Queue 和 Topic 两种。
# @type CmqModel: String
# @param CmqRegion: CMQ或TDMQ-CMQ 的园区,如 sh,bj 等。
# @type CmqRegion: String
# @param TopicName: 当模型为 Topic 时有效,表示接收事件通知的 CMQ 或 TDMQ-CMQ 的主题名。
# @type TopicName: String
# @param QueueName: 当模型为 Queue 时有效,表示接收事件通知的 CMQ 或 TDMQ-CMQ 的队列名。
# @type QueueName: String
# @param NotifyMode: 工作流通知的模式,可取值有 Finish 和 Change,不填代表 Finish。
# @type NotifyMode: String
# @param NotifyType: 通知类型,可选值:
# CMQ:已下线,建议切换到TDMQ-CMQ
# TDMQ-CMQ:消息队列
# URL:指定URL时HTTP回调推送到 NotifyUrl 指定的地址,回调协议http+json,包体内容同解析事件通知接口的输出参数
# SCF:不推荐使用,需要在控制台额外配置SCF
# AWS-SQS:AWS 队列,只适用于 AWS 任务,且要求同区域
# 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。
# @type NotifyType: String
# @param NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
# @type NotifyUrl: String
# @param AwsSQS: AWS SQS 回调,NotifyType为 AWS-SQS 时必填。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AwsSQS: :class:`Tencentcloud::Mps.v20190612.models.AwsSQS`
attr_accessor :CmqModel, :CmqRegion, :TopicName, :QueueName, :NotifyMode, :NotifyType, :NotifyUrl, :AwsSQS
def initialize(cmqmodel=nil, cmqregion=nil, topicname=nil, queuename=nil, notifymode=nil, notifytype=nil, notifyurl=nil, awssqs=nil)
@CmqModel = cmqmodel
@CmqRegion = cmqregion
@TopicName = topicname
@QueueName = queuename
@NotifyMode = notifymode
@NotifyType = notifytype
@NotifyUrl = notifyurl
@AwsSQS = awssqs
end
def deserialize(params)
@CmqModel = params['CmqModel']
@CmqRegion = params['CmqRegion']
@TopicName = params['TopicName']
@QueueName = params['QueueName']
@NotifyMode = params['NotifyMode']
@NotifyType = params['NotifyType']
@NotifyUrl = params['NotifyUrl']
unless params['AwsSQS'].nil?
@AwsSQS = AwsSQS.new
@AwsSQS.deserialize(params['AwsSQS'])
end
end
end
# 媒体处理输出对象信息。
class TaskOutputStorage < TencentCloud::Common::AbstractModel
# @param Type: 媒体处理输出对象存储位置的类型,支持:
# COS:COS存储
# AWS-S3:AWS 存储,只适用于AWS任务,且要求同区域
# @type Type: String
# @param CosOutputStorage: 当 Type 为 COS 时有效,则该项为必填,表示媒体处理 COS 输出位置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type CosOutputStorage: :class:`Tencentcloud::Mps.v20190612.models.CosOutputStorage`
# @param S3OutputStorage: 当 Type 为 AWS-S3 时有效,则该项为必填,表示媒体处理 AWS S3 输出位置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type S3OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.S3OutputStorage`
attr_accessor :Type, :CosOutputStorage, :S3OutputStorage
def initialize(type=nil, cosoutputstorage=nil, s3outputstorage=nil)
@Type = type
@CosOutputStorage = cosoutputstorage
@S3OutputStorage = s3outputstorage
end
def deserialize(params)
@Type = params['Type']
unless params['CosOutputStorage'].nil?
@CosOutputStorage = CosOutputStorage.new
@CosOutputStorage.deserialize(params['CosOutputStorage'])
end
unless params['S3OutputStorage'].nil?
@S3OutputStorage = S3OutputStorage.new
@S3OutputStorage.deserialize(params['S3OutputStorage'])
end
end
end
# 任务概要信息
class TaskSimpleInfo < TencentCloud::Common::AbstractModel
# @param TaskId: 任务 ID。
# @type TaskId: String
# @param TaskType: 任务类型,包含:
# WorkflowTask:工作流处理任务;
# EditMediaTask:视频编辑任务;
# LiveProcessTask:直播处理任务。
# @type TaskType: String
# @param CreateTime: 任务创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param BeginProcessTime: 任务开始执行时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。若任务尚未开始,该字段为:0000-00-00T00:00:00Z。
# @type BeginProcessTime: String
# @param FinishTime: 任务结束时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。若任务尚未完成,该字段为:0000-00-00T00:00:00Z。
# @type FinishTime: String
# @param SubTaskTypes: 子任务类型。
# @type SubTaskTypes: Array
attr_accessor :TaskId, :TaskType, :CreateTime, :BeginProcessTime, :FinishTime, :SubTaskTypes
def initialize(taskid=nil, tasktype=nil, createtime=nil, beginprocesstime=nil, finishtime=nil, subtasktypes=nil)
@TaskId = taskid
@TaskType = tasktype
@CreateTime = createtime
@BeginProcessTime = beginprocesstime
@FinishTime = finishtime
@SubTaskTypes = subtasktypes
end
def deserialize(params)
@TaskId = params['TaskId']
@TaskType = params['TaskType']
@CreateTime = params['CreateTime']
@BeginProcessTime = params['BeginProcessTime']
@FinishTime = params['FinishTime']
@SubTaskTypes = params['SubTaskTypes']
end
end
# 涉敏任务控制参数
class TerrorismConfigureInfo < TencentCloud::Common::AbstractModel
# @param ImgReviewInfo: 画面涉敏任务控制参数。
# @type ImgReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.TerrorismImgReviewTemplateInfo`
# @param OcrReviewInfo: 文本涉敏任务控制参数。
# @type OcrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.TerrorismOcrReviewTemplateInfo`
attr_accessor :ImgReviewInfo, :OcrReviewInfo
def initialize(imgreviewinfo=nil, ocrreviewinfo=nil)
@ImgReviewInfo = imgreviewinfo
@OcrReviewInfo = ocrreviewinfo
end
def deserialize(params)
unless params['ImgReviewInfo'].nil?
@ImgReviewInfo = TerrorismImgReviewTemplateInfo.new
@ImgReviewInfo.deserialize(params['ImgReviewInfo'])
end
unless params['OcrReviewInfo'].nil?
@OcrReviewInfo = TerrorismOcrReviewTemplateInfo.new
@OcrReviewInfo.deserialize(params['OcrReviewInfo'])
end
end
end
# 涉敏任务控制参数。
class TerrorismConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param ImgReviewInfo: 画面涉敏任务控制参数。
# @type ImgReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.TerrorismImgReviewTemplateInfoForUpdate`
# @param OcrReviewInfo: 文本涉敏任务控制参数。
# @type OcrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.TerrorismOcrReviewTemplateInfoForUpdate`
attr_accessor :ImgReviewInfo, :OcrReviewInfo
def initialize(imgreviewinfo=nil, ocrreviewinfo=nil)
@ImgReviewInfo = imgreviewinfo
@OcrReviewInfo = ocrreviewinfo
end
def deserialize(params)
unless params['ImgReviewInfo'].nil?
@ImgReviewInfo = TerrorismImgReviewTemplateInfoForUpdate.new
@ImgReviewInfo.deserialize(params['ImgReviewInfo'])
end
unless params['OcrReviewInfo'].nil?
@OcrReviewInfo = TerrorismOcrReviewTemplateInfoForUpdate.new
@OcrReviewInfo.deserialize(params['OcrReviewInfo'])
end
end
end
# 画面涉敏任务控制参数
class TerrorismImgReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 画面涉敏任务开关,可选值:
# ON:开启画面涉敏任务;
# OFF:关闭画面涉敏任务。
# @type Switch: String
# @param LabelSet: 画面涉敏过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回,可选值为:
# guns:武器枪支;
# crowd:人群聚集;
# bloody:血腥画面;
# police:警察部队;
# banners:涉敏旗帜;
# militant:武装分子;
# explosion:爆炸火灾;
# terrorists:涉敏人物;
# scenario:涉敏画面。
# @type LabelSet: Array
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 90 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 80 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :LabelSet, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, labelset=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@LabelSet = labelset
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 画面涉敏任务控制参数。
class TerrorismImgReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 画面涉敏任务开关,可选值:
# ON:开启画面涉敏任务;
# OFF:关闭画面涉敏任务。
# @type Switch: String
# @param LabelSet: 画面涉敏过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回,可选值为:
# guns:武器枪支;
# crowd:人群聚集;
# bloody:血腥画面;
# police:警察部队;
# banners:涉敏旗帜;
# militant:武装分子;
# explosion:爆炸火灾;
# terrorists:涉敏人物;
# scenario:涉敏画面。
# @type LabelSet: Array
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :LabelSet, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, labelset=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@LabelSet = labelset
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 文本涉敏任务控制参数
class TerrorismOcrReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 文本涉敏任务开关,可选值:
# ON:开启文本涉敏任务;
# OFF:关闭文本涉敏任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 文本涉敏任务控制参数
class TerrorismOcrReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 文本涉敏任务开关,可选值:
# ON:开启文本涉敏任务;
# OFF:关闭文本涉敏任务。
# @type Switch: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 文字水印模板
class TextWatermarkTemplateInput < TencentCloud::Common::AbstractModel
# @param FontType: 字体类型,目前可以支持两种:
# simkai.ttf:可以支持中文和英文;
# arial.ttf:仅支持英文。
# @type FontType: String
# @param FontSize: 字体大小,格式:Npx,N 为数值。
# @type FontSize: String
# @param FontColor: 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
# @type FontColor: String
# @param FontAlpha: 文字透明度,取值范围:(0, 1]
# 0:完全透明
# 1:完全不透明
# 默认值:1。
# @type FontAlpha: Float
attr_accessor :FontType, :FontSize, :FontColor, :FontAlpha
def initialize(fonttype=nil, fontsize=nil, fontcolor=nil, fontalpha=nil)
@FontType = fonttype
@FontSize = fontsize
@FontColor = fontcolor
@FontAlpha = fontalpha
end
def deserialize(params)
@FontType = params['FontType']
@FontSize = params['FontSize']
@FontColor = params['FontColor']
@FontAlpha = params['FontAlpha']
end
end
# 文字水印模板
class TextWatermarkTemplateInputForUpdate < TencentCloud::Common::AbstractModel
# @param FontType: 字体类型,目前可以支持两种:
# simkai.ttf:可以支持中文和英文;
# arial.ttf:仅支持英文。
# @type FontType: String
# @param FontSize: 字体大小,格式:Npx,N 为数值。
# @type FontSize: String
# @param FontColor: 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
# @type FontColor: String
# @param FontAlpha: 文字透明度,取值范围:(0, 1]
# 0:完全透明
# 1:完全不透明
# @type FontAlpha: Float
attr_accessor :FontType, :FontSize, :FontColor, :FontAlpha
def initialize(fonttype=nil, fontsize=nil, fontcolor=nil, fontalpha=nil)
@FontType = fonttype
@FontSize = fontsize
@FontColor = fontcolor
@FontAlpha = fontalpha
end
def deserialize(params)
@FontType = params['FontType']
@FontSize = params['FontSize']
@FontColor = params['FontColor']
@FontAlpha = params['FontAlpha']
end
end
# 转码任务输入参数类型
class TranscodeTaskInput < TencentCloud::Common::AbstractModel
# @param Definition: 视频转码模板 ID。
# @type Definition: Integer
# @param RawParameter: 视频转码自定义参数,当 Definition 填 0 时有效。
# 该参数用于高度定制场景,建议您优先使用 Definition 指定转码参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type RawParameter: :class:`Tencentcloud::Mps.v20190612.models.RawTranscodeParameter`
# @param OverrideParameter: 视频转码自定义参数,当 Definition 不填 0 时有效。
# 当填写了该结构中的部分转码参数时,将使用填写的参数覆盖转码模板中的参数。
# 该参数用于高度定制场景,建议您仅使用 Definition 指定转码参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OverrideParameter: :class:`Tencentcloud::Mps.v20190612.models.OverrideTranscodeParameter`
# @param WatermarkSet: 水印列表,支持多张图片或文字水印,最大可支持 10 张。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type WatermarkSet: Array
# @param MosaicSet: 马赛克列表,最大可支持 10 张。
# @type MosaicSet: Array
# @param StartTimeOffset: 转码后的视频的起始时间偏移,单位:秒。
# 不填或填0,表示转码后的视频从原始视频的起始位置开始;
# 当数值大于0时(假设为 n),表示转码后的视频从原始视频的第 n 秒位置开始;
# 当数值小于0时(假设为 -n),表示转码后的视频从原始视频结束 n 秒前的位置开始。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 转码后视频的终止时间偏移,单位:秒。
# 不填或填0,表示转码后的视频持续到原始视频的末尾终止;
# 当数值大于0时(假设为 n),表示转码后的视频持续到原始视频第 n 秒时终止;
# 当数值小于0时(假设为 -n),表示转码后的视频持续到原始视频结束 n 秒前终止。
# @type EndTimeOffset: Float
# @param OutputStorage: 转码后文件的目标存储,不填则继承上层的 OutputStorage 值。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param OutputObjectPath: 转码后主文件的输出路径,可以为相对路径或者绝对路径。如果不填,则默认为相对路径:`{inputName}_transcode_{definition}.{format}`。
# @type OutputObjectPath: String
# @param SegmentObjectName: 转码后分片文件的输出路径(转码 HLS 时 ts 的路径),只能为相对路径。如果不填,则默认为:`{inputName}_transcode_{definition}_{number}.{format}`。
# @type SegmentObjectName: String
# @param ObjectNumberFormat: 转码后输出路径中的`{number}`变量的规则。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ObjectNumberFormat: :class:`Tencentcloud::Mps.v20190612.models.NumberFormat`
# @param HeadTailParameter: 片头片尾参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type HeadTailParameter: :class:`Tencentcloud::Mps.v20190612.models.HeadTailParameter`
attr_accessor :Definition, :RawParameter, :OverrideParameter, :WatermarkSet, :MosaicSet, :StartTimeOffset, :EndTimeOffset, :OutputStorage, :OutputObjectPath, :SegmentObjectName, :ObjectNumberFormat, :HeadTailParameter
def initialize(definition=nil, rawparameter=nil, overrideparameter=nil, watermarkset=nil, mosaicset=nil, starttimeoffset=nil, endtimeoffset=nil, outputstorage=nil, outputobjectpath=nil, segmentobjectname=nil, objectnumberformat=nil, headtailparameter=nil)
@Definition = definition
@RawParameter = rawparameter
@OverrideParameter = overrideparameter
@WatermarkSet = watermarkset
@MosaicSet = mosaicset
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
@OutputStorage = outputstorage
@OutputObjectPath = outputobjectpath
@SegmentObjectName = segmentobjectname
@ObjectNumberFormat = objectnumberformat
@HeadTailParameter = headtailparameter
end
def deserialize(params)
@Definition = params['Definition']
unless params['RawParameter'].nil?
@RawParameter = RawTranscodeParameter.new
@RawParameter.deserialize(params['RawParameter'])
end
unless params['OverrideParameter'].nil?
@OverrideParameter = OverrideTranscodeParameter.new
@OverrideParameter.deserialize(params['OverrideParameter'])
end
unless params['WatermarkSet'].nil?
@WatermarkSet = []
params['WatermarkSet'].each do |i|
watermarkinput_tmp = WatermarkInput.new
watermarkinput_tmp.deserialize(i)
@WatermarkSet << watermarkinput_tmp
end
end
unless params['MosaicSet'].nil?
@MosaicSet = []
params['MosaicSet'].each do |i|
mosaicinput_tmp = MosaicInput.new
mosaicinput_tmp.deserialize(i)
@MosaicSet << mosaicinput_tmp
end
end
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
@OutputObjectPath = params['OutputObjectPath']
@SegmentObjectName = params['SegmentObjectName']
unless params['ObjectNumberFormat'].nil?
@ObjectNumberFormat = NumberFormat.new
@ObjectNumberFormat.deserialize(params['ObjectNumberFormat'])
end
unless params['HeadTailParameter'].nil?
@HeadTailParameter = HeadTailParameter.new
@HeadTailParameter.deserialize(params['HeadTailParameter'])
end
end
end
# 转码模板详情
class TranscodeTemplate < TencentCloud::Common::AbstractModel
# @param Definition: 转码模板唯一标识。
# @type Definition: String
# @param Container: 封装格式,取值:mp4、flv、hls、mp3、flac、ogg。
# @type Container: String
# @param Name: 转码模板名称。
# @type Name: String
# @param Comment: 模板描述信息。
# @type Comment: String
# @param Type: 模板类型,取值:
# Preset:系统预置模板;
# Custom:用户自定义模板。
# @type Type: String
# @param RemoveVideo: 是否去除视频数据,取值:
# 0:保留;
# 1:去除。
# @type RemoveVideo: Integer
# @param RemoveAudio: 是否去除音频数据,取值:
# 0:保留;
# 1:去除。
# @type RemoveAudio: Integer
# @param VideoTemplate: 视频流配置参数,仅当 RemoveVideo 为 0,该字段有效。
# @type VideoTemplate: :class:`Tencentcloud::Mps.v20190612.models.VideoTemplateInfo`
# @param AudioTemplate: 音频流配置参数,仅当 RemoveAudio 为 0,该字段有效 。
# @type AudioTemplate: :class:`Tencentcloud::Mps.v20190612.models.AudioTemplateInfo`
# @param TEHDConfig: 极速高清转码参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TEHDConfig: :class:`Tencentcloud::Mps.v20190612.models.TEHDConfig`
# @param ContainerType: 封装格式过滤条件,可选值:
# Video:视频格式,可以同时包含视频流和音频流的封装格式;
# PureAudio:纯音频格式,只能包含音频流的封装格式板。
# @type ContainerType: String
# @param CreateTime: 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type UpdateTime: String
# @param EnhanceConfig: 音视频增强配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type EnhanceConfig: :class:`Tencentcloud::Mps.v20190612.models.EnhanceConfig`
attr_accessor :Definition, :Container, :Name, :Comment, :Type, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig, :ContainerType, :CreateTime, :UpdateTime, :EnhanceConfig
def initialize(definition=nil, container=nil, name=nil, comment=nil, type=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil, containertype=nil, createtime=nil, updatetime=nil, enhanceconfig=nil)
@Definition = definition
@Container = container
@Name = name
@Comment = comment
@Type = type
@RemoveVideo = removevideo
@RemoveAudio = removeaudio
@VideoTemplate = videotemplate
@AudioTemplate = audiotemplate
@TEHDConfig = tehdconfig
@ContainerType = containertype
@CreateTime = createtime
@UpdateTime = updatetime
@EnhanceConfig = enhanceconfig
end
def deserialize(params)
@Definition = params['Definition']
@Container = params['Container']
@Name = params['Name']
@Comment = params['Comment']
@Type = params['Type']
@RemoveVideo = params['RemoveVideo']
@RemoveAudio = params['RemoveAudio']
unless params['VideoTemplate'].nil?
@VideoTemplate = VideoTemplateInfo.new
@VideoTemplate.deserialize(params['VideoTemplate'])
end
unless params['AudioTemplate'].nil?
@AudioTemplate = AudioTemplateInfo.new
@AudioTemplate.deserialize(params['AudioTemplate'])
end
unless params['TEHDConfig'].nil?
@TEHDConfig = TEHDConfig.new
@TEHDConfig.deserialize(params['TEHDConfig'])
end
@ContainerType = params['ContainerType']
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
unless params['EnhanceConfig'].nil?
@EnhanceConfig = EnhanceConfig.new
@EnhanceConfig.deserialize(params['EnhanceConfig'])
end
end
end
# 语音翻译任务控制参数
class TranslateConfigureInfo < TencentCloud::Common::AbstractModel
# @param Switch: 语音翻译任务开关,可选值:
# ON:开启智能语音翻译任务;
# OFF:关闭智能语音翻译任务。
# @type Switch: String
# @param SourceLanguage: 视频源语言。
# @type SourceLanguage: String
# @param DestinationLanguage: 翻译目标语言。
# @type DestinationLanguage: String
attr_accessor :Switch, :SourceLanguage, :DestinationLanguage
def initialize(switch=nil, sourcelanguage=nil, destinationlanguage=nil)
@Switch = switch
@SourceLanguage = sourcelanguage
@DestinationLanguage = destinationlanguage
end
def deserialize(params)
@Switch = params['Switch']
@SourceLanguage = params['SourceLanguage']
@DestinationLanguage = params['DestinationLanguage']
end
end
# 语音翻译任务控制参数
class TranslateConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 语音翻译任务开关,可选值:
# ON:开启智能语音翻译任务;
# OFF:关闭智能语音翻译任务。
# @type Switch: String
# @param SourceLanguage: 视频源语言。
# @type SourceLanguage: String
# @param DestinationLanguage: 翻译目标语言。
# @type DestinationLanguage: String
attr_accessor :Switch, :SourceLanguage, :DestinationLanguage
def initialize(switch=nil, sourcelanguage=nil, destinationlanguage=nil)
@Switch = switch
@SourceLanguage = sourcelanguage
@DestinationLanguage = destinationlanguage
end
def deserialize(params)
@Switch = params['Switch']
@SourceLanguage = params['SourceLanguage']
@DestinationLanguage = params['DestinationLanguage']
end
end
# 媒体处理 URL 对象信息。
class UrlInputInfo < TencentCloud::Common::AbstractModel
# @param Url: 视频的 URL。
# @type Url: String
attr_accessor :Url
def initialize(url=nil)
@Url = url
end
def deserialize(params)
@Url = params['Url']
end
end
# 用户自定义语音审核任务控制参数
class UserDefineAsrTextReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 用户自定语音审核任务开关,可选值:
# ON:开启自定义语音审核任务;
# OFF:关闭自定义语音审核任务。
# @type Switch: String
# @param LabelSet: 用户自定义语音过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义语音关键词素材时需要添加对应标签。
# 标签个数最多 10 个,每个标签长度最多 16 个字符。
# @type LabelSet: Array
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :LabelSet, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, labelset=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@LabelSet = labelset
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 用户自定义语音审核任务控制参数
class UserDefineAsrTextReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 用户自定语音审核任务开关,可选值:
# ON:开启自定义语音审核任务;
# OFF:关闭自定义语音审核任务。
# @type Switch: String
# @param LabelSet: 用户自定义语音过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义语音关键词素材时需要添加对应标签。
# 标签个数最多 10 个,每个标签长度最多 16 个字符。
# @type LabelSet: Array
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :LabelSet, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, labelset=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@LabelSet = labelset
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 用户自定义审核任务控制参数
class UserDefineConfigureInfo < TencentCloud::Common::AbstractModel
# @param FaceReviewInfo: 用户自定义人物审核控制参数。
# @type FaceReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.UserDefineFaceReviewTemplateInfo`
# @param AsrReviewInfo: 用户自定义语音审核控制参数。
# @type AsrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.UserDefineAsrTextReviewTemplateInfo`
# @param OcrReviewInfo: 用户自定义文本审核控制参数。
# @type OcrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.UserDefineOcrTextReviewTemplateInfo`
attr_accessor :FaceReviewInfo, :AsrReviewInfo, :OcrReviewInfo
def initialize(facereviewinfo=nil, asrreviewinfo=nil, ocrreviewinfo=nil)
@FaceReviewInfo = facereviewinfo
@AsrReviewInfo = asrreviewinfo
@OcrReviewInfo = ocrreviewinfo
end
def deserialize(params)
unless params['FaceReviewInfo'].nil?
@FaceReviewInfo = UserDefineFaceReviewTemplateInfo.new
@FaceReviewInfo.deserialize(params['FaceReviewInfo'])
end
unless params['AsrReviewInfo'].nil?
@AsrReviewInfo = UserDefineAsrTextReviewTemplateInfo.new
@AsrReviewInfo.deserialize(params['AsrReviewInfo'])
end
unless params['OcrReviewInfo'].nil?
@OcrReviewInfo = UserDefineOcrTextReviewTemplateInfo.new
@OcrReviewInfo.deserialize(params['OcrReviewInfo'])
end
end
end
# 用户自定义审核任务控制参数。
class UserDefineConfigureInfoForUpdate < TencentCloud::Common::AbstractModel
# @param FaceReviewInfo: 用户自定义人物审核控制参数。
# @type FaceReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.UserDefineFaceReviewTemplateInfoForUpdate`
# @param AsrReviewInfo: 用户自定义语音审核控制参数。
# @type AsrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.UserDefineAsrTextReviewTemplateInfoForUpdate`
# @param OcrReviewInfo: 用户自定义文本审核控制参数。
# @type OcrReviewInfo: :class:`Tencentcloud::Mps.v20190612.models.UserDefineOcrTextReviewTemplateInfoForUpdate`
attr_accessor :FaceReviewInfo, :AsrReviewInfo, :OcrReviewInfo
def initialize(facereviewinfo=nil, asrreviewinfo=nil, ocrreviewinfo=nil)
@FaceReviewInfo = facereviewinfo
@AsrReviewInfo = asrreviewinfo
@OcrReviewInfo = ocrreviewinfo
end
def deserialize(params)
unless params['FaceReviewInfo'].nil?
@FaceReviewInfo = UserDefineFaceReviewTemplateInfoForUpdate.new
@FaceReviewInfo.deserialize(params['FaceReviewInfo'])
end
unless params['AsrReviewInfo'].nil?
@AsrReviewInfo = UserDefineAsrTextReviewTemplateInfoForUpdate.new
@AsrReviewInfo.deserialize(params['AsrReviewInfo'])
end
unless params['OcrReviewInfo'].nil?
@OcrReviewInfo = UserDefineOcrTextReviewTemplateInfoForUpdate.new
@OcrReviewInfo.deserialize(params['OcrReviewInfo'])
end
end
end
# 用户自定义人物审核任务控制参数
class UserDefineFaceReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 用户自定义人物审核任务开关,可选值:
# ON:开启自定义人物审核任务;
# OFF:关闭自定义人物审核任务。
# @type Switch: String
# @param LabelSet: 用户自定义人物过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义人物库的时,需要添加对应人物标签。
# 标签个数最多 10 个,每个标签长度最多 16 个字符。
# @type LabelSet: Array
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 97 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 95 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :LabelSet, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, labelset=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@LabelSet = labelset
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 用户自定义人物审核任务控制参数。
class UserDefineFaceReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 用户自定义人物审核任务开关,可选值:
# ON:开启自定义人物审核任务;
# OFF:关闭自定义人物审核任务。
# @type Switch: String
# @param LabelSet: 用户自定义人物过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义人物库的时,需要添加对应人物标签。
# 标签个数最多 10 个,每个标签长度最多 16 个字符。
# @type LabelSet: Array
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :LabelSet, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, labelset=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@LabelSet = labelset
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 用户自定义文本审核任务控制参数
class UserDefineOcrTextReviewTemplateInfo < TencentCloud::Common::AbstractModel
# @param Switch: 用户自定文本审核任务开关,可选值:
# ON:开启自定义文本审核任务;
# OFF:关闭自定义文本审核任务。
# @type Switch: String
# @param LabelSet: 用户自定义文本过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义文本关键词素材时需要添加对应标签。
# 标签个数最多 10 个,每个标签长度最多 16 个字符。
# @type LabelSet: Array
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :LabelSet, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, labelset=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@LabelSet = labelset
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 用户自定义文本审核任务控制参数。
class UserDefineOcrTextReviewTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Switch: 用户自定文本审核任务开关,可选值:
# ON:开启自定义文本审核任务;
# OFF:关闭自定义文本审核任务。
# @type Switch: String
# @param LabelSet: 用户自定义文本过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义文本关键词素材时需要添加对应标签。
# 标签个数最多 10 个,每个标签长度最多 16 个字符。
# @type LabelSet: String
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
# @type BlockConfidence: Integer
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
# @type ReviewConfidence: Integer
attr_accessor :Switch, :LabelSet, :BlockConfidence, :ReviewConfidence
def initialize(switch=nil, labelset=nil, blockconfidence=nil, reviewconfidence=nil)
@Switch = switch
@LabelSet = labelset
@BlockConfidence = blockconfidence
@ReviewConfidence = reviewconfidence
end
def deserialize(params)
@Switch = params['Switch']
@LabelSet = params['LabelSet']
@BlockConfidence = params['BlockConfidence']
@ReviewConfidence = params['ReviewConfidence']
end
end
# 视频降噪配置
class VideoDenoiseConfig < TencentCloud::Common::AbstractModel
# @param Switch: 能力配置开关,可选值:
# ON:开启;
# OFF:关闭。
# 默认值:ON。
# @type Switch: String
# @param Type: 类型,可选值:
# weak
# strong
# 默认值:weak。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Type: String
attr_accessor :Switch, :Type
def initialize(switch=nil, type=nil)
@Switch = switch
@Type = type
end
def deserialize(params)
@Switch = params['Switch']
@Type = params['Type']
end
end
# 视频增强配置
class VideoEnhanceConfig < TencentCloud::Common::AbstractModel
# @param FrameRate: 插帧帧率配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FrameRate: :class:`Tencentcloud::Mps.v20190612.models.FrameRateConfig`
# @param SuperResolution: 超分配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SuperResolution: :class:`Tencentcloud::Mps.v20190612.models.SuperResolutionConfig`
# @param Hdr: HDR配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Hdr: :class:`Tencentcloud::Mps.v20190612.models.HdrConfig`
# @param Denoise: 视频降噪配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type Denoise: :class:`Tencentcloud::Mps.v20190612.models.VideoDenoiseConfig`
# @param ImageQualityEnhance: 综合增强配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ImageQualityEnhance: :class:`Tencentcloud::Mps.v20190612.models.ImageQualityEnhanceConfig`
# @param ColorEnhance: 色彩增强配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ColorEnhance: :class:`Tencentcloud::Mps.v20190612.models.ColorEnhanceConfig`
# @param SharpEnhance: 细节增强配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SharpEnhance: :class:`Tencentcloud::Mps.v20190612.models.SharpEnhanceConfig`
# @param FaceEnhance: 人脸增强配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type FaceEnhance: :class:`Tencentcloud::Mps.v20190612.models.FaceEnhanceConfig`
# @param LowLightEnhance: 低光照增强配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type LowLightEnhance: :class:`Tencentcloud::Mps.v20190612.models.LowLightEnhanceConfig`
# @param ScratchRepair: 去划痕配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ScratchRepair: :class:`Tencentcloud::Mps.v20190612.models.ScratchRepairConfig`
# @param ArtifactRepair: 去伪影(毛刺)配置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ArtifactRepair: :class:`Tencentcloud::Mps.v20190612.models.ArtifactRepairConfig`
attr_accessor :FrameRate, :SuperResolution, :Hdr, :Denoise, :ImageQualityEnhance, :ColorEnhance, :SharpEnhance, :FaceEnhance, :LowLightEnhance, :ScratchRepair, :ArtifactRepair
def initialize(framerate=nil, superresolution=nil, hdr=nil, denoise=nil, imagequalityenhance=nil, colorenhance=nil, sharpenhance=nil, faceenhance=nil, lowlightenhance=nil, scratchrepair=nil, artifactrepair=nil)
@FrameRate = framerate
@SuperResolution = superresolution
@Hdr = hdr
@Denoise = denoise
@ImageQualityEnhance = imagequalityenhance
@ColorEnhance = colorenhance
@SharpEnhance = sharpenhance
@FaceEnhance = faceenhance
@LowLightEnhance = lowlightenhance
@ScratchRepair = scratchrepair
@ArtifactRepair = artifactrepair
end
def deserialize(params)
unless params['FrameRate'].nil?
@FrameRate = FrameRateConfig.new
@FrameRate.deserialize(params['FrameRate'])
end
unless params['SuperResolution'].nil?
@SuperResolution = SuperResolutionConfig.new
@SuperResolution.deserialize(params['SuperResolution'])
end
unless params['Hdr'].nil?
@Hdr = HdrConfig.new
@Hdr.deserialize(params['Hdr'])
end
unless params['Denoise'].nil?
@Denoise = VideoDenoiseConfig.new
@Denoise.deserialize(params['Denoise'])
end
unless params['ImageQualityEnhance'].nil?
@ImageQualityEnhance = ImageQualityEnhanceConfig.new
@ImageQualityEnhance.deserialize(params['ImageQualityEnhance'])
end
unless params['ColorEnhance'].nil?
@ColorEnhance = ColorEnhanceConfig.new
@ColorEnhance.deserialize(params['ColorEnhance'])
end
unless params['SharpEnhance'].nil?
@SharpEnhance = SharpEnhanceConfig.new
@SharpEnhance.deserialize(params['SharpEnhance'])
end
unless params['FaceEnhance'].nil?
@FaceEnhance = FaceEnhanceConfig.new
@FaceEnhance.deserialize(params['FaceEnhance'])
end
unless params['LowLightEnhance'].nil?
@LowLightEnhance = LowLightEnhanceConfig.new
@LowLightEnhance.deserialize(params['LowLightEnhance'])
end
unless params['ScratchRepair'].nil?
@ScratchRepair = ScratchRepairConfig.new
@ScratchRepair.deserialize(params['ScratchRepair'])
end
unless params['ArtifactRepair'].nil?
@ArtifactRepair = ArtifactRepairConfig.new
@ArtifactRepair.deserialize(params['ArtifactRepair'])
end
end
end
# 视频流配置参数
class VideoTemplateInfo < TencentCloud::Common::AbstractModel
# @param Codec: 视频流的编码格式,可选值:
# libx264:H.264 编码
# libx265:H.265 编码
# av1:AOMedia Video 1 编码
# 注意:目前 H.265 编码必须指定分辨率,并且需要在 640*480 以内。
# 注意:av1 编码容器目前只支持 mp4 。
# @type Codec: String
# @param Fps: 视频帧率,取值范围:[0, 100],单位:Hz。
# 当取值为 0,表示帧率和原始视频保持一致。
# 注意:自适应码率时取值范围是 [0, 60]
# @type Fps: Integer
# @param Bitrate: 视频流的码率,取值范围:0 和 [128, 35000],单位:kbps。
# 当取值为 0,表示视频码率和原始视频保持一致。
# @type Bitrate: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 默认值:open。
# 注意:自适应模式时,Width不能小于Height。
# @type ResolutionAdaptive: String
# @param Width: 视频流宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Width: Integer
# @param Height: 视频流高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# 默认值:0。
# @type Height: Integer
# @param Gop: 关键帧 I 帧之间的间隔,取值范围:0 和 [1, 100000],单位:帧数。
# 当填 0 或不填时,系统将自动设置 gop 长度。
# @type Gop: Integer
# @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
# stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;
# black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。
# white:留白,保持视频宽高比不变,边缘剩余部分使用白色填充。
# gauss:高斯模糊,保持视频宽高比不变,边缘剩余部分使用高斯模糊填充。
# 默认值:black 。
# 注意:自适应码流只支持 stretch、black。
# @type FillType: String
# @param Vcrf: 视频恒定码率控制因子,取值范围为[1, 51]。
# 如果指定该参数,将使用 CRF 的码率控制方式做转码(视频码率将不再生效)。
# 如果没有特殊需求,不建议指定该参数。
# @type Vcrf: Integer
attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf
def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil)
@Codec = codec
@Fps = fps
@Bitrate = bitrate
@ResolutionAdaptive = resolutionadaptive
@Width = width
@Height = height
@Gop = gop
@FillType = filltype
@Vcrf = vcrf
end
def deserialize(params)
@Codec = params['Codec']
@Fps = params['Fps']
@Bitrate = params['Bitrate']
@ResolutionAdaptive = params['ResolutionAdaptive']
@Width = params['Width']
@Height = params['Height']
@Gop = params['Gop']
@FillType = params['FillType']
@Vcrf = params['Vcrf']
end
end
# 视频流配置参数
class VideoTemplateInfoForUpdate < TencentCloud::Common::AbstractModel
# @param Codec: 视频流的编码格式,可选值:
# libx264:H.264 编码
# libx265:H.265 编码
# av1:AOMedia Video 1 编码
# 注意:目前 H.265 编码必须指定分辨率,并且需要在 640*480 以内。
# 注意:av1 编码容器目前只支持 mp4 。
# @type Codec: String
# @param Fps: 视频帧率,取值范围:[0, 100],单位:Hz。
# 当取值为 0,表示帧率和原始视频保持一致。
# @type Fps: Integer
# @param Bitrate: 视频流的码率,取值范围:0 和 [128, 35000],单位:kbps。
# 当取值为 0,表示视频码率和原始视频保持一致。
# @type Bitrate: Integer
# @param ResolutionAdaptive: 分辨率自适应,可选值:
# open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;
# close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。
# 注意:自适应模式时,Width不能小于Height。
# @type ResolutionAdaptive: String
# @param Width: 视频流宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# 当 Width、Height 均为 0,则分辨率同源;
# 当 Width 为 0,Height 非 0,则 Width 按比例缩放;
# 当 Width 非 0,Height 为 0,则 Height 按比例缩放;
# 当 Width、Height 均非 0,则分辨率按用户指定。
# @type Width: Integer
# @param Height: 视频流高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
# @type Height: Integer
# @param Gop: 关键帧 I 帧之间的间隔,取值范围:0 和 [1, 100000],单位:帧数。当填 0 时,系统将自动设置 gop 长度。
# @type Gop: Integer
# @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
# stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;
# black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。
# white:留白,保持视频宽高比不变,边缘剩余部分使用白色填充。
# gauss:高斯模糊,保持视频宽高比不变,边缘剩余部分使用高斯模糊填充。
# @type FillType: String
# @param Vcrf: 视频恒定码率控制因子。取值范围为[0, 51],填0表示禁用该参数。
# 如果没有特殊需求,不建议指定该参数。
# @type Vcrf: Integer
# @param ContentAdaptStream: 内容自适应编码。可选值:
# 0:不开启
# 1:开启
# 默认值: 0. 当开启该参数时,将会自适应生成多个不同分辨率,不同码率的码流, 其中VideoTemplate的宽和高为多个码流中的最大分辨率,VideoTemplate中的码率为多个码流中的最高码率, VideoTemplate中的vcrf为多个码流中的最高质量。 当不设置分辨率、码率和vcrf时, ContentAdaptStream 参数生成的最高分辨率为视频源的分辨率,视频质量为接近vmaf95分。 若要开启该参数或了解计费细节, 请联系您的腾讯云商务。
# @type ContentAdaptStream: Integer
attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :ContentAdaptStream
def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil, contentadaptstream=nil)
@Codec = codec
@Fps = fps
@Bitrate = bitrate
@ResolutionAdaptive = resolutionadaptive
@Width = width
@Height = height
@Gop = gop
@FillType = filltype
@Vcrf = vcrf
@ContentAdaptStream = contentadaptstream
end
def deserialize(params)
@Codec = params['Codec']
@Fps = params['Fps']
@Bitrate = params['Bitrate']
@ResolutionAdaptive = params['ResolutionAdaptive']
@Width = params['Width']
@Height = params['Height']
@Gop = params['Gop']
@FillType = params['FillType']
@Vcrf = params['Vcrf']
@ContentAdaptStream = params['ContentAdaptStream']
end
end
# 媒体处理任务中的水印参数类型
class WatermarkInput < TencentCloud::Common::AbstractModel
# @param Definition: 水印模板 ID。
# @type Definition: Integer
# @param RawParameter: 水印自定义参数,当 Definition 填 0 时有效。
# 该参数用于高度定制场景,建议您优先使用 Definition 指定水印参数。
# 水印自定义参数不支持截图打水印。
# @type RawParameter: :class:`Tencentcloud::Mps.v20190612.models.RawWatermarkParameter`
# @param TextContent: 文字内容,长度不超过100个字符。仅当水印类型为文字水印时填写。
# 文字水印不支持截图打水印。
# @type TextContent: String
# @param SvgContent: SVG 内容。长度不超过 2000000 个字符。仅当水印类型为 SVG 水印时填写。
# SVG 水印不支持截图打水印。
# @type SvgContent: String
# @param StartTimeOffset: 水印的起始时间偏移,单位:秒。不填或填0,表示水印从画面出现时开始显现。
# 不填或填0,表示水印从画面开始就出现;
# 当数值大于0时(假设为 n),表示水印从画面开始的第 n 秒出现;
# 当数值小于0时(假设为 -n),表示水印从离画面结束 n 秒前开始出现。
# @type StartTimeOffset: Float
# @param EndTimeOffset: 水印的结束时间偏移,单位:秒。
# 不填或填0,表示水印持续到画面结束;
# 当数值大于0时(假设为 n),表示水印持续到第 n 秒时消失;
# 当数值小于0时(假设为 -n),表示水印持续到离画面结束 n 秒前消失。
# @type EndTimeOffset: Float
attr_accessor :Definition, :RawParameter, :TextContent, :SvgContent, :StartTimeOffset, :EndTimeOffset
def initialize(definition=nil, rawparameter=nil, textcontent=nil, svgcontent=nil, starttimeoffset=nil, endtimeoffset=nil)
@Definition = definition
@RawParameter = rawparameter
@TextContent = textcontent
@SvgContent = svgcontent
@StartTimeOffset = starttimeoffset
@EndTimeOffset = endtimeoffset
end
def deserialize(params)
@Definition = params['Definition']
unless params['RawParameter'].nil?
@RawParameter = RawWatermarkParameter.new
@RawParameter.deserialize(params['RawParameter'])
end
@TextContent = params['TextContent']
@SvgContent = params['SvgContent']
@StartTimeOffset = params['StartTimeOffset']
@EndTimeOffset = params['EndTimeOffset']
end
end
# 水印模板详情
class WatermarkTemplate < TencentCloud::Common::AbstractModel
# @param Definition: 水印模板唯一标识。
# @type Definition: Integer
# @param Type: 水印类型,取值:
# image:图片水印;
# text:文字水印。
# @type Type: String
# @param Name: 水印模板名称。
# @type Name: String
# @param Comment: 模板描述信息。
# @type Comment: String
# @param XPos: 水印图片原点距离视频图像原点的水平位置。
# 当字符串以 % 结尾,表示水印 Left 为视频宽度指定百分比的位置,如 10% 表示 Left 为视频宽度的 10%;
# 当字符串以 px 结尾,表示水印 Left 为视频宽度指定像素的位置,如 100px 表示 Left 为 100 像素。
# @type XPos: String
# @param YPos: 水印图片原点距离视频图像原点的垂直位置。
# 当字符串以 % 结尾,表示水印 Top 为视频高度指定百分比的位置,如 10% 表示 Top 为视频高度的 10%;
# 当字符串以 px 结尾,表示水印 Top 为视频高度指定像素的位置,如 100px 表示 Top 为 100 像素。
# @type YPos: String
# @param ImageTemplate: 图片水印模板,仅当 Type 为 image,该字段有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type ImageTemplate: :class:`Tencentcloud::Mps.v20190612.models.ImageWatermarkTemplate`
# @param TextTemplate: 文字水印模板,仅当 Type 为 text,该字段有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TextTemplate: :class:`Tencentcloud::Mps.v20190612.models.TextWatermarkTemplateInput`
# @param SvgTemplate: SVG 水印模板,当 Type 为 svg,该字段有效。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type SvgTemplate: :class:`Tencentcloud::Mps.v20190612.models.SvgWatermarkInput`
# @param CreateTime: 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type UpdateTime: String
# @param CoordinateOrigin: 原点位置,可选值:
# topLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;
# topRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;
# bottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;
# bottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下。;
# @type CoordinateOrigin: String
attr_accessor :Definition, :Type, :Name, :Comment, :XPos, :YPos, :ImageTemplate, :TextTemplate, :SvgTemplate, :CreateTime, :UpdateTime, :CoordinateOrigin
def initialize(definition=nil, type=nil, name=nil, comment=nil, xpos=nil, ypos=nil, imagetemplate=nil, texttemplate=nil, svgtemplate=nil, createtime=nil, updatetime=nil, coordinateorigin=nil)
@Definition = definition
@Type = type
@Name = name
@Comment = comment
@XPos = xpos
@YPos = ypos
@ImageTemplate = imagetemplate
@TextTemplate = texttemplate
@SvgTemplate = svgtemplate
@CreateTime = createtime
@UpdateTime = updatetime
@CoordinateOrigin = coordinateorigin
end
def deserialize(params)
@Definition = params['Definition']
@Type = params['Type']
@Name = params['Name']
@Comment = params['Comment']
@XPos = params['XPos']
@YPos = params['YPos']
unless params['ImageTemplate'].nil?
@ImageTemplate = ImageWatermarkTemplate.new
@ImageTemplate.deserialize(params['ImageTemplate'])
end
unless params['TextTemplate'].nil?
@TextTemplate = TextWatermarkTemplateInput.new
@TextTemplate.deserialize(params['TextTemplate'])
end
unless params['SvgTemplate'].nil?
@SvgTemplate = SvgWatermarkInput.new
@SvgTemplate.deserialize(params['SvgTemplate'])
end
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
@CoordinateOrigin = params['CoordinateOrigin']
end
end
# WithdrawsWatermark请求参数结构体
class WithdrawsWatermarkRequest < TencentCloud::Common::AbstractModel
# @param InputInfo: 输入媒体文件存储信息。
# @type InputInfo: :class:`Tencentcloud::Mps.v20190612.models.MediaInputInfo`
# @param TaskNotifyConfig: 任务的事件通知信息,不填代表不获取事件通知。
# @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.TaskNotifyConfig`
# @param SessionContext: 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
# @type SessionContext: String
attr_accessor :InputInfo, :TaskNotifyConfig, :SessionContext
def initialize(inputinfo=nil, tasknotifyconfig=nil, sessioncontext=nil)
@InputInfo = inputinfo
@TaskNotifyConfig = tasknotifyconfig
@SessionContext = sessioncontext
end
def deserialize(params)
unless params['InputInfo'].nil?
@InputInfo = MediaInputInfo.new
@InputInfo.deserialize(params['InputInfo'])
end
unless params['TaskNotifyConfig'].nil?
@TaskNotifyConfig = TaskNotifyConfig.new
@TaskNotifyConfig.deserialize(params['TaskNotifyConfig'])
end
@SessionContext = params['SessionContext']
end
end
# WithdrawsWatermark返回参数结构体
class WithdrawsWatermarkResponse < TencentCloud::Common::AbstractModel
# @param TaskId: 任务 ID,可以通过该 ID 查询任务状态和结果。
# @type TaskId: String
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
# @type RequestId: String
attr_accessor :TaskId, :RequestId
def initialize(taskid=nil, requestid=nil)
@TaskId = taskid
@RequestId = requestid
end
def deserialize(params)
@TaskId = params['TaskId']
@RequestId = params['RequestId']
end
end
# 工作流信息详情。
class WorkflowInfo < TencentCloud::Common::AbstractModel
# @param WorkflowId: 工作流 ID。
# @type WorkflowId: Integer
# @param WorkflowName: 工作流名称。
# @type WorkflowName: String
# @param Status: 工作流状态,取值范围:
# Enabled:已启用,
# Disabled:已禁用。
# @type Status: String
# @param Trigger: 工作流绑定的输入规则,当上传视频命中该规则到该对象时即触发工作流。
# @type Trigger: :class:`Tencentcloud::Mps.v20190612.models.WorkflowTrigger`
# @param OutputStorage: 媒体处理的文件输出存储位置。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
# @param MediaProcessTask: 媒体处理类型任务参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type MediaProcessTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskInput`
# @param AiContentReviewTask: 视频内容审核类型任务参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AiContentReviewTask: :class:`Tencentcloud::Mps.v20190612.models.AiContentReviewTaskInput`
# @param AiAnalysisTask: 视频内容分析类型任务参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AiAnalysisTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskInput`
# @param AiRecognitionTask: 视频内容识别类型任务参数。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AiRecognitionTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskInput`
# @param TaskNotifyConfig: 任务的事件通知信息,不填代表不获取事件通知。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.TaskNotifyConfig`
# @param TaskPriority: 任务流的优先级,数值越大优先级越高,取值范围是 -10 到 10,不填代表 0。
# @type TaskPriority: Integer
# @param OutputDir: 媒体处理生成的文件输出的目标目录,如`/movie/201907/`。
# @type OutputDir: String
# @param CreateTime: 工作流创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type CreateTime: String
# @param UpdateTime: 工作流最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
# @type UpdateTime: String
attr_accessor :WorkflowId, :WorkflowName, :Status, :Trigger, :OutputStorage, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTask, :TaskNotifyConfig, :TaskPriority, :OutputDir, :CreateTime, :UpdateTime
def initialize(workflowid=nil, workflowname=nil, status=nil, trigger=nil, outputstorage=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontask=nil, tasknotifyconfig=nil, taskpriority=nil, outputdir=nil, createtime=nil, updatetime=nil)
@WorkflowId = workflowid
@WorkflowName = workflowname
@Status = status
@Trigger = trigger
@OutputStorage = outputstorage
@MediaProcessTask = mediaprocesstask
@AiContentReviewTask = aicontentreviewtask
@AiAnalysisTask = aianalysistask
@AiRecognitionTask = airecognitiontask
@TaskNotifyConfig = tasknotifyconfig
@TaskPriority = taskpriority
@OutputDir = outputdir
@CreateTime = createtime
@UpdateTime = updatetime
end
def deserialize(params)
@WorkflowId = params['WorkflowId']
@WorkflowName = params['WorkflowName']
@Status = params['Status']
unless params['Trigger'].nil?
@Trigger = WorkflowTrigger.new
@Trigger.deserialize(params['Trigger'])
end
unless params['OutputStorage'].nil?
@OutputStorage = TaskOutputStorage.new
@OutputStorage.deserialize(params['OutputStorage'])
end
unless params['MediaProcessTask'].nil?
@MediaProcessTask = MediaProcessTaskInput.new
@MediaProcessTask.deserialize(params['MediaProcessTask'])
end
unless params['AiContentReviewTask'].nil?
@AiContentReviewTask = AiContentReviewTaskInput.new
@AiContentReviewTask.deserialize(params['AiContentReviewTask'])
end
unless params['AiAnalysisTask'].nil?
@AiAnalysisTask = AiAnalysisTaskInput.new
@AiAnalysisTask.deserialize(params['AiAnalysisTask'])
end
unless params['AiRecognitionTask'].nil?
@AiRecognitionTask = AiRecognitionTaskInput.new
@AiRecognitionTask.deserialize(params['AiRecognitionTask'])
end
unless params['TaskNotifyConfig'].nil?
@TaskNotifyConfig = TaskNotifyConfig.new
@TaskNotifyConfig.deserialize(params['TaskNotifyConfig'])
end
@TaskPriority = params['TaskPriority']
@OutputDir = params['OutputDir']
@CreateTime = params['CreateTime']
@UpdateTime = params['UpdateTime']
end
end
# 媒体处理任务信息
class WorkflowTask < TencentCloud::Common::AbstractModel
# @param TaskId: 媒体处理任务 ID。
# @type TaskId: String
# @param Status: 任务流状态,取值:
# PROCESSING:处理中;
# FINISH:已完成。
# @type Status: String
# @param ErrCode: 源异常时返回非0错误码,返回0 时请使用各个具体任务的 ErrCode。
# @type ErrCode: Integer
# @param Message: 源异常时返回对应异常Message,否则请使用各个具体任务的 Message。
# @type Message: String
# @param InputInfo: 媒体处理的目标文件信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type InputInfo: :class:`Tencentcloud::Mps.v20190612.models.MediaInputInfo`
# @param MetaData: 原始视频的元信息。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type MetaData: :class:`Tencentcloud::Mps.v20190612.models.MediaMetaData`
# @param MediaProcessResultSet: 媒体处理任务的执行状态与结果。
# @type MediaProcessResultSet: Array
# @param AiContentReviewResultSet: 视频内容审核任务的执行状态与结果。
# @type AiContentReviewResultSet: Array
# @param AiAnalysisResultSet: 视频内容分析任务的执行状态与结果。
# @type AiAnalysisResultSet: Array
# @param AiRecognitionResultSet: 视频内容识别任务的执行状态与结果。
# @type AiRecognitionResultSet: Array
# @param AiQualityControlTaskResult: 视频质检任务的执行状态与结果。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AiQualityControlTaskResult: :class:`Tencentcloud::Mps.v20190612.models.ScheduleQualityControlTaskResult`
attr_accessor :TaskId, :Status, :ErrCode, :Message, :InputInfo, :MetaData, :MediaProcessResultSet, :AiContentReviewResultSet, :AiAnalysisResultSet, :AiRecognitionResultSet, :AiQualityControlTaskResult
def initialize(taskid=nil, status=nil, errcode=nil, message=nil, inputinfo=nil, metadata=nil, mediaprocessresultset=nil, aicontentreviewresultset=nil, aianalysisresultset=nil, airecognitionresultset=nil, aiqualitycontroltaskresult=nil)
@TaskId = taskid
@Status = status
@ErrCode = errcode
@Message = message
@InputInfo = inputinfo
@MetaData = metadata
@MediaProcessResultSet = mediaprocessresultset
@AiContentReviewResultSet = aicontentreviewresultset
@AiAnalysisResultSet = aianalysisresultset
@AiRecognitionResultSet = airecognitionresultset
@AiQualityControlTaskResult = aiqualitycontroltaskresult
end
def deserialize(params)
@TaskId = params['TaskId']
@Status = params['Status']
@ErrCode = params['ErrCode']
@Message = params['Message']
unless params['InputInfo'].nil?
@InputInfo = MediaInputInfo.new
@InputInfo.deserialize(params['InputInfo'])
end
unless params['MetaData'].nil?
@MetaData = MediaMetaData.new
@MetaData.deserialize(params['MetaData'])
end
unless params['MediaProcessResultSet'].nil?
@MediaProcessResultSet = []
params['MediaProcessResultSet'].each do |i|
mediaprocesstaskresult_tmp = MediaProcessTaskResult.new
mediaprocesstaskresult_tmp.deserialize(i)
@MediaProcessResultSet << mediaprocesstaskresult_tmp
end
end
unless params['AiContentReviewResultSet'].nil?
@AiContentReviewResultSet = []
params['AiContentReviewResultSet'].each do |i|
aicontentreviewresult_tmp = AiContentReviewResult.new
aicontentreviewresult_tmp.deserialize(i)
@AiContentReviewResultSet << aicontentreviewresult_tmp
end
end
unless params['AiAnalysisResultSet'].nil?
@AiAnalysisResultSet = []
params['AiAnalysisResultSet'].each do |i|
aianalysisresult_tmp = AiAnalysisResult.new
aianalysisresult_tmp.deserialize(i)
@AiAnalysisResultSet << aianalysisresult_tmp
end
end
unless params['AiRecognitionResultSet'].nil?
@AiRecognitionResultSet = []
params['AiRecognitionResultSet'].each do |i|
airecognitionresult_tmp = AiRecognitionResult.new
airecognitionresult_tmp.deserialize(i)
@AiRecognitionResultSet << airecognitionresult_tmp
end
end
unless params['AiQualityControlTaskResult'].nil?
@AiQualityControlTaskResult = ScheduleQualityControlTaskResult.new
@AiQualityControlTaskResult.deserialize(params['AiQualityControlTaskResult'])
end
end
end
# 输入规则,当上传视频命中该规则时,即触发工作流。
class WorkflowTrigger < TencentCloud::Common::AbstractModel
# @param Type: 触发器的类型,可选值:
# CosFileUpload:COS触发
# AwsS3FileUpload:AWS触发,目前只支持转码任务。只有编排支持,工作流不支持。
# @type Type: String
# @param CosFileUploadTrigger: 当 Type 为 CosFileUpload 时必填且有效,为 COS 触发规则。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type CosFileUploadTrigger: :class:`Tencentcloud::Mps.v20190612.models.CosFileUploadTrigger`
# @param AwsS3FileUploadTrigger: 当 Type 为 AwsS3FileUpload 时必填且有效,为 AWS S3 触发规则。
# 注意:目前AWS的S3、对应触发队列SQS、回调队列SQS的秘钥需要一致。
# 注意:此字段可能返回 null,表示取不到有效值。
# @type AwsS3FileUploadTrigger: :class:`Tencentcloud::Mps.v20190612.models.AwsS3FileUploadTrigger`
attr_accessor :Type, :CosFileUploadTrigger, :AwsS3FileUploadTrigger
def initialize(type=nil, cosfileuploadtrigger=nil, awss3fileuploadtrigger=nil)
@Type = type
@CosFileUploadTrigger = cosfileuploadtrigger
@AwsS3FileUploadTrigger = awss3fileuploadtrigger
end
def deserialize(params)
@Type = params['Type']
unless params['CosFileUploadTrigger'].nil?
@CosFileUploadTrigger = CosFileUploadTrigger.new
@CosFileUploadTrigger.deserialize(params['CosFileUploadTrigger'])
end
unless params['AwsS3FileUploadTrigger'].nil?
@AwsS3FileUploadTrigger = AwsS3FileUploadTrigger.new
@AwsS3FileUploadTrigger.deserialize(params['AwsS3FileUploadTrigger'])
end
end
end
end
end
end