Files

90 lines
3.3 KiB
C#
Raw Permalink Normal View History

/*
* 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.Vod.V20180717.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class TransitionOpertion : AbstractModel
{
/// <summary>
/// 转场类型,取值有:
/// <ul>
/// <li>图像的转场操作,用于两个视频片段图像间的转场处理:
/// <ul>
/// <li>ImageFadeInFadeOut图像淡入淡出。 </li>
/// <li>BowTieHorizontal水平蝴蝶结。 </li>
/// <li>BowTieVertical垂直蝴蝶结。 </li>
/// <li>ButterflyWaveScrawler晃动。 </li>
/// <li>Cannabisleaf枫叶。 </li>
/// <li>Circle弧形收放。 </li>
/// <li>CircleCrop圆环聚拢。 </li>
/// <li>Circleopen椭圆聚拢。 </li>
/// <li>Crosswarp横向翘曲。 </li>
/// <li>Cube立方体。 </li>
/// <li>DoomScreenTransition幕布。 </li>
/// <li>Doorway门廊。 </li>
/// <li>Dreamy波浪。 </li>
/// <li>DreamyZoom水平聚拢。 </li>
/// <li>FilmBurn火烧云。 </li>
/// <li>GlitchMemories抖动。 </li>
/// <li>Heart心形。 </li>
/// <li>InvertedPageCurl翻页。 </li>
/// <li>Luma腐蚀。 </li>
/// <li>Mosaic九宫格。 </li>
/// <li>Pinwheel风车。 </li>
/// <li>PolarFunction椭圆扩散。 </li>
/// <li>PolkaDotsCurtain弧形扩散。 </li>
/// <li>Radial雷达扫描 </li>
/// <li>RotateScaleFade上下收放。 </li>
/// <li>Squeeze上下聚拢。 </li>
/// <li>Swap放大切换。 </li>
/// <li>Swirl螺旋。 </li>
/// <li>UndulatingBurnOutSwirl水流蔓延。 </li>
/// <li>Windowblinds百叶窗。 </li>
/// <li>WipeDown向下收起。 </li>
/// <li>WipeLeft向左收起。 </li>
/// <li>WipeRight向右收起。 </li>
/// <li>WipeUp向上收起。 </li>
/// <li>ZoomInCircles水波纹。 </li>
/// </ul>
/// </li>
/// <li>音频的转场操作,用于两个音频片段间的转场处理:
/// <ul>
/// <li>AudioFadeInFadeOut声音淡入淡出。 </li>
/// </ul>
/// </li>
/// </ul>
/// </summary>
[JsonProperty("Type")]
public string Type{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Type", this.Type);
}
}
}