Method: KodiClient::Types::Player::VideoStream#initialize

Defined in:
lib/kodi_client/types/player/video_stream_type.rb

#initialize(codec, height, index, language, name, width, duration, aspect) ⇒ VideoStream

Returns a new instance of VideoStream.



13
14
15
16
17
18
19
20
21
22
# File 'lib/kodi_client/types/player/video_stream_type.rb', line 13

def initialize(codec, height, index, language, name, width, duration, aspect)
  @codec = codec
  @height = height
  @index = index
  @language = language
  @name = name
  @width = width
  @duration = duration
  @aspect = aspect
end