lib/v20180717/models.rb in tencentcloud-sdk-vod-3.0.575 vs lib/v20180717/models.rb in tencentcloud-sdk-vod-3.0.576

- old
+ new

@@ -11573,22 +11573,28 @@ # <li>当 Width 为 0,Height 非 0,则 Width 按基准分辨率比例缩放;</li> # <li>当 Width 非 0,Height 为 0,则 Height 按基准分辨率比例缩放;</li> # <li>当 Width、Height 均非 0,则分辨率按用户指定。</li> # 默认值:0。 # @type Height: Integer + # @param Fps: 视频帧率,取值范围:[0, 100],单位:Hz。 + # 当取值为0,将自动为视频设置帧率。 + # 默认值为 0。 + # @type Fps: Integer - attr_accessor :ResolutionAdaptive, :Width, :Height + attr_accessor :ResolutionAdaptive, :Width, :Height, :Fps - def initialize(resolutionadaptive=nil, width=nil, height=nil) + def initialize(resolutionadaptive=nil, width=nil, height=nil, fps=nil) @ResolutionAdaptive = resolutionadaptive @Width = width @Height = height + @Fps = fps end def deserialize(params) @ResolutionAdaptive = params['ResolutionAdaptive'] @Width = params['Width'] @Height = params['Height'] + @Fps = params['Fps'] end end # 空的轨道片段,用来进行时间轴的占位。如需要两个音频片段之间有一段时间的静音,可以用 EmptyTrackItem 来进行占位。 class EmptyTrackItem < TencentCloud::Common::AbstractModel