Enum google_api_proto::google::cloud::dialogflow::v2beta1::AudioEncoding
source · #[repr(i32)]pub enum AudioEncoding {
Unspecified = 0,
Linear16 = 1,
Flac = 2,
Mulaw = 3,
Amr = 4,
AmrWb = 5,
OggOpus = 6,
SpeexWithHeaderByte = 7,
}
Expand description
Audio encoding of the audio content sent in the conversational query request. Refer to the Cloud Speech API documentation for more details.
Variants§
Unspecified = 0
Not specified.
Linear16 = 1
Uncompressed 16-bit signed little-endian samples (Linear PCM).
Flac = 2
FLAC
(Free Lossless Audio
Codec) is the recommended encoding because it is lossless (therefore
recognition is not compromised) and requires only about half the
bandwidth of LINEAR16
. FLAC
stream encoding supports 16-bit and
24-bit samples, however, not all fields in STREAMINFO
are supported.
Mulaw = 3
8-bit samples that compand 14-bit audio samples using G.711 PCMU/mu-law.
Amr = 4
Adaptive Multi-Rate Narrowband codec. sample_rate_hertz
must be 8000.
AmrWb = 5
Adaptive Multi-Rate Wideband codec. sample_rate_hertz
must be 16000.
OggOpus = 6
Opus encoded audio frames in Ogg container
(OggOpus).
sample_rate_hertz
must be 16000.
SpeexWithHeaderByte = 7
Although the use of lossy encodings is not recommended, if a very low
bitrate encoding is required, OGG_OPUS
is highly preferred over
Speex encoding. The Speex encoding supported by
Dialogflow API has a header byte in each block, as in MIME type
audio/x-speex-with-header-byte
.
It is a variant of the RTP Speex encoding defined in
RFC 5574.
The stream is a sequence of blocks, one block per RTP packet. Each block
starts with a byte containing the length of the block, in bytes, followed
by one or more frames of Speex data, padded to an integral number of
bytes (octets) as specified in RFC 5574. In other words, each RTP header
is replaced with a single byte containing the block length. Only Speex
wideband is supported. sample_rate_hertz
must be 16000.
Implementations§
source§impl AudioEncoding
impl AudioEncoding
source§impl AudioEncoding
impl AudioEncoding
sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
source§impl Clone for AudioEncoding
impl Clone for AudioEncoding
source§fn clone(&self) -> AudioEncoding
fn clone(&self) -> AudioEncoding
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AudioEncoding
impl Debug for AudioEncoding
source§impl Default for AudioEncoding
impl Default for AudioEncoding
source§fn default() -> AudioEncoding
fn default() -> AudioEncoding
source§impl From<AudioEncoding> for i32
impl From<AudioEncoding> for i32
source§fn from(value: AudioEncoding) -> i32
fn from(value: AudioEncoding) -> i32
source§impl Hash for AudioEncoding
impl Hash for AudioEncoding
source§impl Ord for AudioEncoding
impl Ord for AudioEncoding
source§fn cmp(&self, other: &AudioEncoding) -> Ordering
fn cmp(&self, other: &AudioEncoding) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for AudioEncoding
impl PartialEq for AudioEncoding
source§fn eq(&self, other: &AudioEncoding) -> bool
fn eq(&self, other: &AudioEncoding) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for AudioEncoding
impl PartialOrd for AudioEncoding
source§fn partial_cmp(&self, other: &AudioEncoding) -> Option<Ordering>
fn partial_cmp(&self, other: &AudioEncoding) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl TryFrom<i32> for AudioEncoding
impl TryFrom<i32> for AudioEncoding
§type Error = UnknownEnumValue
type Error = UnknownEnumValue
source§fn try_from(value: i32) -> Result<AudioEncoding, UnknownEnumValue>
fn try_from(value: i32) -> Result<AudioEncoding, UnknownEnumValue>
impl Copy for AudioEncoding
impl Eq for AudioEncoding
impl StructuralPartialEq for AudioEncoding
Auto Trait Implementations§
impl Freeze for AudioEncoding
impl RefUnwindSafe for AudioEncoding
impl Send for AudioEncoding
impl Sync for AudioEncoding
impl Unpin for AudioEncoding
impl UnwindSafe for AudioEncoding
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request