class Mkv2m4v::Track

Attributes

info[R]

Public Class Methods

new(track_info) click to toggle source
# File lib/mkv2m4v/track.rb, line 11
def initialize(track_info)
  @info = track_info
end

Public Instance Methods

format_description() click to toggle source
# File lib/mkv2m4v/track.rb, line 23
def format_description
  "#{format} (#{info.format_info}, #{info.codec_id})"
end
language() click to toggle source
# File lib/mkv2m4v/track.rb, line 15
def language
  Iso639[info["language"]]
end
title() click to toggle source
# File lib/mkv2m4v/track.rb, line 19
def title
  info["title"]
end