/* * Copyright (c) 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. */ namespace TencentCloud.Cme.V20191029.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class ExportVideoEditProjectRequest : AbstractModel { /// /// 平台名称,指定访问的平台。 /// [JsonProperty("Platform")] public string Platform{ get; set; } /// /// 项目 Id。 /// [JsonProperty("ProjectId")] public string ProjectId{ get; set; } /// /// 导出模板 Id,目前不支持自定义创建,只支持下面的预置模板 Id。 ///
  • 10:分辨率为 480P,输出视频格式为 MP4;
  • ///
  • 11:分辨率为 720P,输出视频格式为 MP4;
  • ///
  • 12:分辨率为 1080P,输出视频格式为 MP4。
  • ///
    [JsonProperty("Definition")] public ulong? Definition{ get; set; } /// /// 导出目标。 ///
  • CME:云剪,即导出为云剪素材;
  • ///
  • VOD:云点播,即导出为云点播媒资。
  • ///
    [JsonProperty("ExportDestination")] public string ExportDestination{ get; set; } /// /// 导出的云剪素材信息。指定 ExportDestination = CME 时有效。 /// [JsonProperty("CMEExportInfo")] public CMEExportInfo CMEExportInfo{ get; set; } /// /// 导出的云点播媒资信息。指定 ExportDestination = VOD 时有效。 /// [JsonProperty("VODExportInfo")] public VODExportInfo VODExportInfo{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "Platform", this.Platform); this.SetParamSimple(map, prefix + "ProjectId", this.ProjectId); this.SetParamSimple(map, prefix + "Definition", this.Definition); this.SetParamSimple(map, prefix + "ExportDestination", this.ExportDestination); this.SetParamObj(map, prefix + "CMEExportInfo.", this.CMEExportInfo); this.SetParamObj(map, prefix + "VODExportInfo.", this.VODExportInfo); } } }