com.tencentcloudapi.vod.v20180717.models.MediaMetaData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-vod Show documentation
Show all versions of tencentcloud-sdk-java-vod Show documentation
Tencent Cloud Open API SDK for Java
/*
* 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.
*/
package com.tencentcloudapi.vod.v20180717.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class MediaMetaData extends AbstractModel{
/**
* 上传的媒体文件大小(视频为 HLS 时,大小是 m3u8 和 ts 文件大小的总和),单位:字节。
*/
@SerializedName("Size")
@Expose
private Long Size;
/**
* 容器类型,例如 m4a,mp4 等。
*/
@SerializedName("Container")
@Expose
private String Container;
/**
* 视频流码率平均值与音频流码率平均值之和,单位:bps。
*/
@SerializedName("Bitrate")
@Expose
private Long Bitrate;
/**
* 视频流高度的最大值,单位:px。
*/
@SerializedName("Height")
@Expose
private Long Height;
/**
* 视频流宽度的最大值,单位:px。
*/
@SerializedName("Width")
@Expose
private Long Width;
/**
* 视频时长,单位:秒。
*/
@SerializedName("Duration")
@Expose
private Float Duration;
/**
* 视频拍摄时的选择角度,单位:度。
*/
@SerializedName("Rotate")
@Expose
private Long Rotate;
/**
* 视频流信息。
*/
@SerializedName("VideoStreamSet")
@Expose
private MediaVideoStreamItem [] VideoStreamSet;
/**
* 音频流信息。
*/
@SerializedName("AudioStreamSet")
@Expose
private MediaAudioStreamItem [] AudioStreamSet;
/**
* 视频时长,单位:秒。
*/
@SerializedName("VideoDuration")
@Expose
private Float VideoDuration;
/**
* 音频时长,单位:秒。
*/
@SerializedName("AudioDuration")
@Expose
private Float AudioDuration;
/**
* Get 上传的媒体文件大小(视频为 HLS 时,大小是 m3u8 和 ts 文件大小的总和),单位:字节。
* @return Size 上传的媒体文件大小(视频为 HLS 时,大小是 m3u8 和 ts 文件大小的总和),单位:字节。
*/
public Long getSize() {
return this.Size;
}
/**
* Set 上传的媒体文件大小(视频为 HLS 时,大小是 m3u8 和 ts 文件大小的总和),单位:字节。
* @param Size 上传的媒体文件大小(视频为 HLS 时,大小是 m3u8 和 ts 文件大小的总和),单位:字节。
*/
public void setSize(Long Size) {
this.Size = Size;
}
/**
* Get 容器类型,例如 m4a,mp4 等。
* @return Container 容器类型,例如 m4a,mp4 等。
*/
public String getContainer() {
return this.Container;
}
/**
* Set 容器类型,例如 m4a,mp4 等。
* @param Container 容器类型,例如 m4a,mp4 等。
*/
public void setContainer(String Container) {
this.Container = Container;
}
/**
* Get 视频流码率平均值与音频流码率平均值之和,单位:bps。
* @return Bitrate 视频流码率平均值与音频流码率平均值之和,单位:bps。
*/
public Long getBitrate() {
return this.Bitrate;
}
/**
* Set 视频流码率平均值与音频流码率平均值之和,单位:bps。
* @param Bitrate 视频流码率平均值与音频流码率平均值之和,单位:bps。
*/
public void setBitrate(Long Bitrate) {
this.Bitrate = Bitrate;
}
/**
* Get 视频流高度的最大值,单位:px。
* @return Height 视频流高度的最大值,单位:px。
*/
public Long getHeight() {
return this.Height;
}
/**
* Set 视频流高度的最大值,单位:px。
* @param Height 视频流高度的最大值,单位:px。
*/
public void setHeight(Long Height) {
this.Height = Height;
}
/**
* Get 视频流宽度的最大值,单位:px。
* @return Width 视频流宽度的最大值,单位:px。
*/
public Long getWidth() {
return this.Width;
}
/**
* Set 视频流宽度的最大值,单位:px。
* @param Width 视频流宽度的最大值,单位:px。
*/
public void setWidth(Long Width) {
this.Width = Width;
}
/**
* Get 视频时长,单位:秒。
* @return Duration 视频时长,单位:秒。
*/
public Float getDuration() {
return this.Duration;
}
/**
* Set 视频时长,单位:秒。
* @param Duration 视频时长,单位:秒。
*/
public void setDuration(Float Duration) {
this.Duration = Duration;
}
/**
* Get 视频拍摄时的选择角度,单位:度。
* @return Rotate 视频拍摄时的选择角度,单位:度。
*/
public Long getRotate() {
return this.Rotate;
}
/**
* Set 视频拍摄时的选择角度,单位:度。
* @param Rotate 视频拍摄时的选择角度,单位:度。
*/
public void setRotate(Long Rotate) {
this.Rotate = Rotate;
}
/**
* Get 视频流信息。
* @return VideoStreamSet 视频流信息。
*/
public MediaVideoStreamItem [] getVideoStreamSet() {
return this.VideoStreamSet;
}
/**
* Set 视频流信息。
* @param VideoStreamSet 视频流信息。
*/
public void setVideoStreamSet(MediaVideoStreamItem [] VideoStreamSet) {
this.VideoStreamSet = VideoStreamSet;
}
/**
* Get 音频流信息。
* @return AudioStreamSet 音频流信息。
*/
public MediaAudioStreamItem [] getAudioStreamSet() {
return this.AudioStreamSet;
}
/**
* Set 音频流信息。
* @param AudioStreamSet 音频流信息。
*/
public void setAudioStreamSet(MediaAudioStreamItem [] AudioStreamSet) {
this.AudioStreamSet = AudioStreamSet;
}
/**
* Get 视频时长,单位:秒。
* @return VideoDuration 视频时长,单位:秒。
*/
public Float getVideoDuration() {
return this.VideoDuration;
}
/**
* Set 视频时长,单位:秒。
* @param VideoDuration 视频时长,单位:秒。
*/
public void setVideoDuration(Float VideoDuration) {
this.VideoDuration = VideoDuration;
}
/**
* Get 音频时长,单位:秒。
* @return AudioDuration 音频时长,单位:秒。
*/
public Float getAudioDuration() {
return this.AudioDuration;
}
/**
* Set 音频时长,单位:秒。
* @param AudioDuration 音频时长,单位:秒。
*/
public void setAudioDuration(Float AudioDuration) {
this.AudioDuration = AudioDuration;
}
public MediaMetaData() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public MediaMetaData(MediaMetaData source) {
if (source.Size != null) {
this.Size = new Long(source.Size);
}
if (source.Container != null) {
this.Container = new String(source.Container);
}
if (source.Bitrate != null) {
this.Bitrate = new Long(source.Bitrate);
}
if (source.Height != null) {
this.Height = new Long(source.Height);
}
if (source.Width != null) {
this.Width = new Long(source.Width);
}
if (source.Duration != null) {
this.Duration = new Float(source.Duration);
}
if (source.Rotate != null) {
this.Rotate = new Long(source.Rotate);
}
if (source.VideoStreamSet != null) {
this.VideoStreamSet = new MediaVideoStreamItem[source.VideoStreamSet.length];
for (int i = 0; i < source.VideoStreamSet.length; i++) {
this.VideoStreamSet[i] = new MediaVideoStreamItem(source.VideoStreamSet[i]);
}
}
if (source.AudioStreamSet != null) {
this.AudioStreamSet = new MediaAudioStreamItem[source.AudioStreamSet.length];
for (int i = 0; i < source.AudioStreamSet.length; i++) {
this.AudioStreamSet[i] = new MediaAudioStreamItem(source.AudioStreamSet[i]);
}
}
if (source.VideoDuration != null) {
this.VideoDuration = new Float(source.VideoDuration);
}
if (source.AudioDuration != null) {
this.AudioDuration = new Float(source.AudioDuration);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Size", this.Size);
this.setParamSimple(map, prefix + "Container", this.Container);
this.setParamSimple(map, prefix + "Bitrate", this.Bitrate);
this.setParamSimple(map, prefix + "Height", this.Height);
this.setParamSimple(map, prefix + "Width", this.Width);
this.setParamSimple(map, prefix + "Duration", this.Duration);
this.setParamSimple(map, prefix + "Rotate", this.Rotate);
this.setParamArrayObj(map, prefix + "VideoStreamSet.", this.VideoStreamSet);
this.setParamArrayObj(map, prefix + "AudioStreamSet.", this.AudioStreamSet);
this.setParamSimple(map, prefix + "VideoDuration", this.VideoDuration);
this.setParamSimple(map, prefix + "AudioDuration", this.AudioDuration);
}
}