public class MediaAudioStreamItem extends AbstractModel
| Constructor and Description | 
|---|
| MediaAudioStreamItem() | 
| MediaAudioStreamItem(MediaAudioStreamItem source)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. | 
| Modifier and Type | Method and Description | 
|---|---|
| Long | getBitrate()Get Bitrate of an audio stream in bps. | 
| Long | getChannel()Get Number of sound channels, e.g., 2
Note: this field may return `null`, indicating that no valid value was found. | 
| String | getCodec()Get Audio stream codec, such as aac. | 
| Long | getSamplingRate()Get Sample rate of an audio stream in Hz. | 
| void | setBitrate(Long Bitrate)Set Bitrate of an audio stream in bps. | 
| void | setChannel(Long Channel)Set Number of sound channels, e.g., 2
Note: this field may return `null`, indicating that no valid value was found. | 
| void | setCodec(String Codec)Set Audio stream codec, such as aac. | 
| void | setSamplingRate(Long SamplingRate)Set Sample rate of an audio stream in Hz. | 
| void | toMap(HashMap<String,String> map,
     String prefix)Internal implementation, normal users should not use it. | 
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonStringpublic MediaAudioStreamItem()
public MediaAudioStreamItem(MediaAudioStreamItem source)
public Long getBitrate()
public void setBitrate(Long Bitrate)
Bitrate - Bitrate of an audio stream in bps.
Note: This field may return null, indicating that no valid values can be obtained.public Long getSamplingRate()
public void setSamplingRate(Long SamplingRate)
SamplingRate - Sample rate of an audio stream in Hz.
Note: This field may return null, indicating that no valid values can be obtained.public String getCodec()
public void setCodec(String Codec)
Codec - Audio stream codec, such as aac.
Note: This field may return null, indicating that no valid values can be obtained.public Long getChannel()
public void setChannel(Long Channel)
Channel - Number of sound channels, e.g., 2
Note: this field may return `null`, indicating that no valid value was found.Copyright © 2023. All rights reserved.