Class: Google::Apis::YoutubeV3::VideoFileDetailsAudioStream
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::YoutubeV3::VideoFileDetailsAudioStream
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/youtube_v3/classes.rb,
generated/google/apis/youtube_v3/representations.rb,
generated/google/apis/youtube_v3/representations.rb 
Overview
Information about an audio stream.
Instance Attribute Summary collapse
- 
  
    
      #bitrate_bps  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The audio stream's bitrate, in bits per second.
 - 
  
    
      #channel_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of audio channels that the stream contains.
 - 
  
    
      #codec  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The audio codec that the stream uses.
 - 
  
    
      #vendor  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A value that uniquely identifies a video vendor.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ VideoFileDetailsAudioStream 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of VideoFileDetailsAudioStream.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ VideoFileDetailsAudioStream
Returns a new instance of VideoFileDetailsAudioStream
      7573 7574 7575  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 7573 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#bitrate_bps ⇒ Fixnum
The audio stream's bitrate, in bits per second.
Corresponds to the JSON property bitrateBps
      7555 7556 7557  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 7555 def bitrate_bps @bitrate_bps end  | 
  
#channel_count ⇒ Fixnum
The number of audio channels that the stream contains.
Corresponds to the JSON property channelCount
      7560 7561 7562  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 7560 def channel_count @channel_count end  | 
  
#codec ⇒ String
The audio codec that the stream uses.
Corresponds to the JSON property codec
      7565 7566 7567  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 7565 def codec @codec end  | 
  
#vendor ⇒ String
A value that uniquely identifies a video vendor. Typically, the value is a
four-letter vendor code.
Corresponds to the JSON property vendor
      7571 7572 7573  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 7571 def vendor @vendor end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7578 7579 7580 7581 7582 7583  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 7578 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  |