Class: Google::Apis::YoutubeV3::VideoFileDetailsAudioStream

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/youtube_v3/classes.rb,
lib/google/apis/youtube_v3/representations.rb,
lib/google/apis/youtube_v3/representations.rb

Overview

Information about an audio stream.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VideoFileDetailsAudioStream

Returns a new instance of VideoFileDetailsAudioStream.



8006
8007
8008
# File 'lib/google/apis/youtube_v3/classes.rb', line 8006

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bitrate_bpsFixnum

The audio stream's bitrate, in bits per second. Corresponds to the JSON property bitrateBps

Returns:

  • (Fixnum)


7988
7989
7990
# File 'lib/google/apis/youtube_v3/classes.rb', line 7988

def bitrate_bps
  @bitrate_bps
end

#channel_countFixnum

The number of audio channels that the stream contains. Corresponds to the JSON property channelCount

Returns:

  • (Fixnum)


7993
7994
7995
# File 'lib/google/apis/youtube_v3/classes.rb', line 7993

def channel_count
  @channel_count
end

#codecString

The audio codec that the stream uses. Corresponds to the JSON property codec

Returns:

  • (String)


7998
7999
8000
# File 'lib/google/apis/youtube_v3/classes.rb', line 7998

def codec
  @codec
end

#vendorString

A value that uniquely identifies a video vendor. Typically, the value is a four-letter vendor code. Corresponds to the JSON property vendor

Returns:

  • (String)


8004
8005
8006
# File 'lib/google/apis/youtube_v3/classes.rb', line 8004

def vendor
  @vendor
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8011
8012
8013
8014
8015
8016
# File 'lib/google/apis/youtube_v3/classes.rb', line 8011

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