Project

cuechapter

0.0
No commit activity in last 3 years
No release in over 3 years
Converts a cuesheet file into a chapter XML file that can be used by ChatperX or GarageBand/ChapterTool to add chapters to an m4a/m4b file
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 3.1.4
>= 0.0.1
 Project Readme

cuechapter: Library to convert a cuesheet to an xml for use with Chapter X

cuechatper is a Ruby library to convert CUE files into XML that can be used with ChapterX or GarageBand/ChapterTools.

Usage

CLI

Just convert a CUE to an XML with the same name

cuechapter -c your_cue.CUE

Convert a CUE to an XML with a specific name

cuechapter -c your_cue.CUE -x xml_converted.xml

Specify a picture of link

cuechapter -c your_cue.CUE -p \path\to\picture.jpg -l http:\\www.yourlink.net

In Code

require 'cuechapter'

cue\_file = "path\to\cue_file.CUE"
xml\_file = "path\to\xml_file.xml"
picture   = "path\to\picture.jpg"
link      = "http:\\www.yourlink.net"

cuechapter = CueChapter::CueChapter.new(cue_file, xml_file, picture, link)
cuechapter.convert