#[repr(i32)]pub enum AudioEncoding {
EncodingUnspecified = 0,
Linear16 = 1,
Flac = 2,
Mulaw = 3,
Amr = 4,
AmrWb = 5,
OggOpus = 6,
SpeexWithHeaderByte = 7,
Mp3 = 8,
WebmOpus = 9,
}
Expand description
The encoding of the audio data sent in the request.
All encodings support only 1 channel (mono) audio, unless the
audio_channel_count
and enable_separate_recognition_per_channel
fields
are set.
For best results, the audio source should be captured and transmitted using
a lossless encoding (FLAC
or LINEAR16
). The accuracy of the speech
recognition can be reduced if lossy codecs are used to capture or transmit
audio, particularly if background noise is present. Lossy codecs include
MULAW
, AMR
, AMR_WB
, OGG_OPUS
, SPEEX_WITH_HEADER_BYTE
, MP3
,
and WEBM_OPUS
.
The FLAC
and WAV
audio file formats include a header that describes the
included audio content. You can request recognition for WAV
files that
contain either LINEAR16
or MULAW
encoded audio.
If you send FLAC
or WAV
audio file format in
your request, you do not need to specify an AudioEncoding
; the audio
encoding format is determined from the file header. If you specify
an AudioEncoding
when you send send FLAC
or WAV
audio, the
encoding configuration must match the encoding described in the audio
header; otherwise the request returns an
[google.rpc.Code.INVALID_ARGUMENT][google.rpc.Code.INVALID_ARGUMENT] error
code.
Variants§
EncodingUnspecified = 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 one of 8000, 12000, 16000, 24000, or 48000.
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
Cloud Speech 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.
Mp3 = 8
MP3 audio. MP3 encoding is a Beta feature and only available in
v1p1beta1. Support all standard MP3 bitrates (which range from 32-320
kbps). When using this encoding, sample_rate_hertz
has to match the
sample rate of the file being used.
WebmOpus = 9
Opus encoded audio frames in WebM container
(OggOpus). sample_rate_hertz
must be
one of 8000, 12000, 16000, 24000, or 48000.
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