6 # Advanced CD-ROM ripping program
8 # Copyright 2010, Colin McCabe
13 require 'optparse/time'
16 #-----------------------------------------------------------------
18 #-----------------------------------------------------------------
19 $cd_dev = "/dev/cdrom"
21 #-----------------------------------------------------------------
23 #-----------------------------------------------------------------
26 system(cmd) unless $opts.dry_run
27 ($?.exitstatus == 0) or raise "#{cmd} failed"
30 def die_unless_installed(cmd)
31 system("which #{cmd} > /dev/null")
32 ($?.exitstatus == 0) or raise "you need to install the #{cmd} program"
35 def get_number_of_tracks_on_cd
36 look_for_tracks = false
37 IO.popen("cdda2wav -v summary -J dev=#{$cd_dev} 2>&1", "r") do |io|
38 io.readlines.each do |line|
40 if (line =~ /^AUDIOtrack/) then
41 look_for_tracks = true
42 elsif (look_for_tracks == true) then
43 look_for_tracks = false
44 line =~ /[ \t]*1-([1234567890][1234567890]*)[^1234567890]/ \
45 or raise "couldn't understand cdda2wav output!"
50 raise "couldn't find what we were looking for in cdda2wav output!"
53 def audiorip(track, number)
55 my_system("nice -1 cdparanoia -w -d #{$cd_dev} #{number}")
57 raise "failed to rip track #{number} (#{track.name})"
59 # cdparanoia always outputs to cdda.wav
60 FileUtils.mv("cdda.wav", track.wav_file_name, $fu_args)
62 # TODO: spawn a thread to do this stuff in the background
63 FileUtils.mkdir_p(track.flac_dir, $fu_args)
64 my_system("flac -c #{track.wav_file_name} > #{track.flac_file_name}")
65 my_system("lame -q 1 -b 192 #{track.wav_file_name} > #{track.mp3_file_name}")
66 FileUtils.rm_f(track.wav_file, $fu_args)
69 #-----------------------------------------------------------------
71 #-----------------------------------------------------------------
76 $fu_args = { :verbose => true }
79 parser = OptionParser.new do |myparser|
80 myparser.banner = "Usage: #{ File.basename($0) } [opts]"
81 myparser.separator("Specific options:")
82 myparser.on("--dry-run", "-d",
83 "Show what would be done, without doing it.") do |a|
85 $fu_args = { :verbose => true, :noop => true }
87 myparser.on("--tracklist [FILE]", "-t",
88 "Provide a list of tracks to use.") do |file|
89 opts.manifest_file = file
92 myparser.on("--partial-tracklist [FILE]", "-T",
93 "Provide a partial list of tracks to use.") do |file|
94 opts.manifest_file = file
100 raise "you must provide a tracklist" unless opts.manifest_file != nil
106 attr_accessor :name, :flac_dir, :flac_file_name, :mp3_dir, :mp3_file_name
108 if name =~ /\[LL\]/ then
109 raise "you can't include [LL] in a track name"
111 if name =~ /\.mp3/ then
112 raise "don't include .mp3 in the track name; that will be added"
114 if name =~ /\.flac/ then
115 raise "don't include .flac in the track name; that will be added"
117 (name =~ /([^\/][^\/]*)\/([^\/]*[^\/])/) or \
118 raise "track name must be of the form 'foo/bar'"
120 @flac_dir = "#{1} [LL]"
121 @flac_file_name = "#{@flac_dir}/#{2}.flac"
123 @mp3_file_name = "#{@mp3_dir}/#{2}.mp3"
124 @wav_file_name = "#{1}__#{2}.wav"
133 def initialize(filename)
135 eval(File.new(filename).read)
136 @t.each do |key, val|
137 @t[key] = Track.new(val)
139 # TODO: implement some shortcuts that make manifests easier to type.
140 # Probably avoiding the necessity to continue typing the album name if it is the same as the
141 # previous track's name would make things a lot easier without complicating everything too much.
144 def validate(num_tracks)
146 raise "you must define some tracks"
148 @t.each { |t| t.validate }
149 if (not $opts.partial) then
150 (1..num_tracks).each do |t|
151 if not @t[t].defined?
152 raise "don't know what to do with track #{t}"
156 # TODO: make sure that tracks inside albums are in order
157 # i.e. we don't map track 2 to a name that sorts to before track 1
161 (1..num_tracks).each do |t|
162 next unless @t.defined?(t)
169 @t.keys.sort.each do |key|
170 ret = "#{ret}#{key}:'#{@t[key].inspect()}'\n"
176 #-----------------------------------------------------------------
178 #-----------------------------------------------------------------
182 $opts = MyOptions.parse(ARGV)
183 rescue ArgumentError => msg
184 $stderr.puts("#{msg} Type --help to see usage information.\n")
189 die_unless_installed("lame")
190 die_unless_installed("flac")
191 die_unless_installed("cdparanoia")
192 die_unless_installed("cdda2wav")
194 manifest = Manifest.new($opts.manifest_file)
195 #puts manifest.inspect
196 num_tracks = get_number_of_tracks_on_cd()
197 puts "found #{num_tracks} tracks"
198 #manifest.rip(num_tracks)