All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencentcloudapi.vod.v20180717.models.AudioTemplateInfo Maven / Gradle / Ivy

There is a newer version: 3.0.1034
Show newest version
/*
 * 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 AudioTemplateInfo extends AbstractModel{

    /**
    * Audio stream encoder.
When the outer `Container` parameter is `mp3`, the valid value is:
  • libmp3lame.
  • When the outer `Container` parameter is `ogg` or `flac`, the valid value is:
  • flac.
  • When the outer `Container` parameter is `m4a`, the valid values include:
  • libfdk_aac;
  • libmp3lame;
  • ac3.
  • When the outer `Container` parameter is `mp4` or `flv`, the valid values include:
  • libfdk_aac: more suitable for mp4;
  • libmp3lame: More suitable for flv;
  • mp2.
  • When the outer `Container` parameter is `hls`, the valid values include:
  • libfdk_aac;
  • libmp3lame.
  • */ @SerializedName("Codec") @Expose private String Codec; /** * Audio stream bitrate in Kbps. Value range: 0 and [26, 256]. If the value is 0, the bitrate of the audio stream will be the same as that of the original audio. */ @SerializedName("Bitrate") @Expose private Long Bitrate; /** * Audio stream sample rate. Valid values:
  • 32,000
  • 44,100
  • 48,000
  • In Hz. */ @SerializedName("SampleRate") @Expose private Long SampleRate; /** * Audio channel system. Valid values:
  • 1: mono-channel
  • 2: dual-channel
  • 6: stereo
  • You cannot set the sound channel as stereo for media files in container formats for audios (FLAC, OGG, MP3, M4A). Default value: 2 */ @SerializedName("AudioChannel") @Expose private Long AudioChannel; /** * Get Audio stream encoder. When the outer `Container` parameter is `mp3`, the valid value is:
  • libmp3lame.
  • When the outer `Container` parameter is `ogg` or `flac`, the valid value is:
  • flac.
  • When the outer `Container` parameter is `m4a`, the valid values include:
  • libfdk_aac;
  • libmp3lame;
  • ac3.
  • When the outer `Container` parameter is `mp4` or `flv`, the valid values include:
  • libfdk_aac: more suitable for mp4;
  • libmp3lame: More suitable for flv;
  • mp2.
  • When the outer `Container` parameter is `hls`, the valid values include:
  • libfdk_aac;
  • libmp3lame.
  • * @return Codec Audio stream encoder. When the outer `Container` parameter is `mp3`, the valid value is:
  • libmp3lame.
  • When the outer `Container` parameter is `ogg` or `flac`, the valid value is:
  • flac.
  • When the outer `Container` parameter is `m4a`, the valid values include:
  • libfdk_aac;
  • libmp3lame;
  • ac3.
  • When the outer `Container` parameter is `mp4` or `flv`, the valid values include:
  • libfdk_aac: more suitable for mp4;
  • libmp3lame: More suitable for flv;
  • mp2.
  • When the outer `Container` parameter is `hls`, the valid values include:
  • libfdk_aac;
  • libmp3lame.
  • */ public String getCodec() { return this.Codec; } /** * Set Audio stream encoder. When the outer `Container` parameter is `mp3`, the valid value is:
  • libmp3lame.
  • When the outer `Container` parameter is `ogg` or `flac`, the valid value is:
  • flac.
  • When the outer `Container` parameter is `m4a`, the valid values include:
  • libfdk_aac;
  • libmp3lame;
  • ac3.
  • When the outer `Container` parameter is `mp4` or `flv`, the valid values include:
  • libfdk_aac: more suitable for mp4;
  • libmp3lame: More suitable for flv;
  • mp2.
  • When the outer `Container` parameter is `hls`, the valid values include:
  • libfdk_aac;
  • libmp3lame.
  • * @param Codec Audio stream encoder. When the outer `Container` parameter is `mp3`, the valid value is:
  • libmp3lame.
  • When the outer `Container` parameter is `ogg` or `flac`, the valid value is:
  • flac.
  • When the outer `Container` parameter is `m4a`, the valid values include:
  • libfdk_aac;
  • libmp3lame;
  • ac3.
  • When the outer `Container` parameter is `mp4` or `flv`, the valid values include:
  • libfdk_aac: more suitable for mp4;
  • libmp3lame: More suitable for flv;
  • mp2.
  • When the outer `Container` parameter is `hls`, the valid values include:
  • libfdk_aac;
  • libmp3lame.
  • */ public void setCodec(String Codec) { this.Codec = Codec; } /** * Get Audio stream bitrate in Kbps. Value range: 0 and [26, 256]. If the value is 0, the bitrate of the audio stream will be the same as that of the original audio. * @return Bitrate Audio stream bitrate in Kbps. Value range: 0 and [26, 256]. If the value is 0, the bitrate of the audio stream will be the same as that of the original audio. */ public Long getBitrate() { return this.Bitrate; } /** * Set Audio stream bitrate in Kbps. Value range: 0 and [26, 256]. If the value is 0, the bitrate of the audio stream will be the same as that of the original audio. * @param Bitrate Audio stream bitrate in Kbps. Value range: 0 and [26, 256]. If the value is 0, the bitrate of the audio stream will be the same as that of the original audio. */ public void setBitrate(Long Bitrate) { this.Bitrate = Bitrate; } /** * Get Audio stream sample rate. Valid values:
  • 32,000
  • 44,100
  • 48,000
  • In Hz. * @return SampleRate Audio stream sample rate. Valid values:
  • 32,000
  • 44,100
  • 48,000
  • In Hz. */ public Long getSampleRate() { return this.SampleRate; } /** * Set Audio stream sample rate. Valid values:
  • 32,000
  • 44,100
  • 48,000
  • In Hz. * @param SampleRate Audio stream sample rate. Valid values:
  • 32,000
  • 44,100
  • 48,000
  • In Hz. */ public void setSampleRate(Long SampleRate) { this.SampleRate = SampleRate; } /** * Get Audio channel system. Valid values:
  • 1: mono-channel
  • 2: dual-channel
  • 6: stereo
  • You cannot set the sound channel as stereo for media files in container formats for audios (FLAC, OGG, MP3, M4A). Default value: 2 * @return AudioChannel Audio channel system. Valid values:
  • 1: mono-channel
  • 2: dual-channel
  • 6: stereo
  • You cannot set the sound channel as stereo for media files in container formats for audios (FLAC, OGG, MP3, M4A). Default value: 2 */ public Long getAudioChannel() { return this.AudioChannel; } /** * Set Audio channel system. Valid values:
  • 1: mono-channel
  • 2: dual-channel
  • 6: stereo
  • You cannot set the sound channel as stereo for media files in container formats for audios (FLAC, OGG, MP3, M4A). Default value: 2 * @param AudioChannel Audio channel system. Valid values:
  • 1: mono-channel
  • 2: dual-channel
  • 6: stereo
  • You cannot set the sound channel as stereo for media files in container formats for audios (FLAC, OGG, MP3, M4A). Default value: 2 */ public void setAudioChannel(Long AudioChannel) { this.AudioChannel = AudioChannel; } public AudioTemplateInfo() { } /** * 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 AudioTemplateInfo(AudioTemplateInfo source) { if (source.Codec != null) { this.Codec = new String(source.Codec); } if (source.Bitrate != null) { this.Bitrate = new Long(source.Bitrate); } 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 + "Bitrate", this.Bitrate); this.setParamSimple(map, prefix + "SampleRate", this.SampleRate); this.setParamSimple(map, prefix + "AudioChannel", this.AudioChannel); } }




    © 2015 - 2025 Weber Informatics LLC | Privacy Policy