class CueChapter::CueChapter

Public Class Methods

new(cuesheet, xml_file=nil, image_file=nil, link=nil) click to toggle source
Calls superclass method
# File lib/cuechapter.rb, line 6
def initialize(cuesheet, xml_file=nil, image_file=nil, link=nil)
    super(File.read(cuesheet))
  parse!
  
  if @xml_file.nil?
    @xml_file=File.path(cuesheet).gsub(File.extname(cuesheet),".xml")
  else
    @xml_file = xml_file
  end
  
  @image_file = image_file
  @link = link
end

Public Instance Methods

convert() click to toggle source
# File lib/cuechapter.rb, line 20
def convert
    File.open(@xml_file, 'w') { |f| f.write(to_chapter_xml) }
end
to_chapter_xml() click to toggle source
# File lib/cuechapter.rb, line 24
def to_chapter_xml
  xml = Builder::XmlMarkup.new(:indent => 2)

  xml.chapters("version" => "1") {
    songs.each do |song|
      xml.chapter("starttime" => "#{song[:index].minutes}:#{song[:index].seconds}") {
        xml.title "#{song[:performer]} - #{song[:title]}"
        xml.picture "#{@image_file}"
        xml.link "#{@link}"
      }
    end
  }
end