# Copyright 2019 Google LLC # # 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. # NOTE: This file is auto generated by the elixir code generator program. # Do not edit this file manually. defmodule GoogleApi.Transcoder.V1.Model.AudioStream do @moduledoc """ Audio stream resource. ## Attributes * `bitrateBps` (*type:* `integer()`, *default:* `nil`) - Required. Audio bitrate in bits per second. Must be between 1 and 10,000,000. * `channelCount` (*type:* `integer()`, *default:* `nil`) - Number of audio channels. Must be between 1 and 6. The default is 2. * `channelLayout` (*type:* `list(String.t)`, *default:* `nil`) - A list of channel names specifying layout of the audio channels. This only affects the metadata embedded in the container headers, if supported by the specified format. The default is `["fl", "fr"]`. Supported channel names: - `fl` - Front left channel - `fr` - Front right channel - `sl` - Side left channel - `sr` - Side right channel - `fc` - Front center channel - `lfe` - Low frequency * `codec` (*type:* `String.t`, *default:* `nil`) - The codec for this audio stream. The default is `aac`. Supported audio codecs: - `aac` - `aac-he` - `aac-he-v2` - `mp3` - `ac3` - `eac3` - `vorbis` * `displayName` (*type:* `String.t`, *default:* `nil`) - The name for this particular audio stream that will be added to the HLS/DASH manifest. Not supported in MP4 files. * `languageCode` (*type:* `String.t`, *default:* `nil`) - The BCP-47 language code, such as `en-US` or `sr-Latn`. For more information, see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. Not supported in MP4 files. * `mapping` (*type:* `list(GoogleApi.Transcoder.V1.Model.AudioMapping.t)`, *default:* `nil`) - The mapping for the JobConfig.edit_list atoms with audio EditAtom.inputs. * `sampleRateHertz` (*type:* `integer()`, *default:* `nil`) - The audio sample rate in Hertz. The default is 48000 Hertz. """ use GoogleApi.Gax.ModelBase @type t :: %__MODULE__{ :bitrateBps => integer() | nil, :channelCount => integer() | nil, :channelLayout => list(String.t()) | nil, :codec => String.t() | nil, :displayName => String.t() | nil, :languageCode => String.t() | nil, :mapping => list(GoogleApi.Transcoder.V1.Model.AudioMapping.t()) | nil, :sampleRateHertz => integer() | nil } field(:bitrateBps) field(:channelCount) field(:channelLayout, type: :list) field(:codec) field(:displayName) field(:languageCode) field(:mapping, as: GoogleApi.Transcoder.V1.Model.AudioMapping, type: :list) field(:sampleRateHertz) end defimpl Poison.Decoder, for: GoogleApi.Transcoder.V1.Model.AudioStream do def decode(value, options) do GoogleApi.Transcoder.V1.Model.AudioStream.decode(value, options) end end defimpl Poison.Encoder, for: GoogleApi.Transcoder.V1.Model.AudioStream do def encode(value, options) do GoogleApi.Gax.ModelBase.encode(value, options) end end