class Google::Apis::YoutubeV3::VideoFileDetailsAudioStream

Information about an audio stream.

Attributes

bitrate_bps[RW]

The audio stream's bitrate, in bits per second. Corresponds to the JSON property `bitrateBps` @return [Fixnum]

channel_count[RW]

The number of audio channels that the stream contains. Corresponds to the JSON property `channelCount` @return [Fixnum]

codec[RW]

The audio codec that the stream uses. Corresponds to the JSON property `codec` @return [String]

vendor[RW]

A value that uniquely identifies a video vendor. Typically, the value is a four-letter vendor code. Corresponds to the JSON property `vendor` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/youtube_v3/classes.rb, line 7835
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/youtube_v3/classes.rb, line 7840
def update!(**args)
  @bitrate_bps = args[:bitrate_bps] if args.key?(:bitrate_bps)
  @channel_count = args[:channel_count] if args.key?(:channel_count)
  @codec = args[:codec] if args.key?(:codec)
  @vendor = args[:vendor] if args.key?(:vendor)
end