com.tencentcloudapi.vod.v20180717.models.OutputAudioStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud 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 OutputAudioStream extends AbstractModel{
/**
* Audio stream encoder. Valid values:
libfdk_aac: suitable for mp4 files.
Default value: libfdk_aac.
*/
@SerializedName("Codec")
@Expose
private String Codec;
/**
* Audio stream sample rate. Valid values:
16,000
32,000
44,100
48,000
In Hz.
Default value: 16,000.
*/
@SerializedName("SampleRate")
@Expose
private Long SampleRate;
/**
* Number of sound channels. Valid values:
1: mono.
2: dual
Default value: 2.
*/
@SerializedName("AudioChannel")
@Expose
private Long AudioChannel;
/**
* Get Audio stream encoder. Valid values:
libfdk_aac: suitable for mp4 files.
Default value: libfdk_aac.
* @return Codec Audio stream encoder. Valid values:
libfdk_aac: suitable for mp4 files.
Default value: libfdk_aac.
*/
public String getCodec() {
return this.Codec;
}
/**
* Set Audio stream encoder. Valid values:
libfdk_aac: suitable for mp4 files.
Default value: libfdk_aac.
* @param Codec Audio stream encoder. Valid values:
libfdk_aac: suitable for mp4 files.
Default value: libfdk_aac.
*/
public void setCodec(String Codec) {
this.Codec = Codec;
}
/**
* Get Audio stream sample rate. Valid values:
16,000
32,000
44,100
48,000
In Hz.
Default value: 16,000.
* @return SampleRate Audio stream sample rate. Valid values:
16,000
32,000
44,100
48,000
In Hz.
Default value: 16,000.
*/
public Long getSampleRate() {
return this.SampleRate;
}
/**
* Set Audio stream sample rate. Valid values:
16,000
32,000
44,100
48,000
In Hz.
Default value: 16,000.
* @param SampleRate Audio stream sample rate. Valid values:
16,000
32,000
44,100
48,000
In Hz.
Default value: 16,000.
*/
public void setSampleRate(Long SampleRate) {
this.SampleRate = SampleRate;
}
/**
* Get Number of sound channels. Valid values:
1: mono.
2: dual
Default value: 2.
* @return AudioChannel Number of sound channels. Valid values:
1: mono.
2: dual
Default value: 2.
*/
public Long getAudioChannel() {
return this.AudioChannel;
}
/**
* Set Number of sound channels. Valid values:
1: mono.
2: dual
Default value: 2.
* @param AudioChannel Number of sound channels. Valid values:
1: mono.
2: dual
Default value: 2.
*/
public void setAudioChannel(Long AudioChannel) {
this.AudioChannel = AudioChannel;
}
public OutputAudioStream() {
}
/**
* 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 OutputAudioStream(OutputAudioStream source) {
if (source.Codec != null) {
this.Codec = new String(source.Codec);
}
if (source.SampleRate != null) {
this.SampleRate = new Long(source.SampleRate);
}
if (source.AudioChannel != null) {
this.AudioChannel = new Long(source.AudioChannel);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Codec", this.Codec);
this.setParamSimple(map, prefix + "SampleRate", this.SampleRate);
this.setParamSimple(map, prefix + "AudioChannel", this.AudioChannel);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy