Difference between revisions of "Rubyripper"

From Hydrogenaudio Knowledgebase
Jump to: navigation, search
m (Automatic Installation on Ubuntu/Debian)
m (External links: Category Software added)
 
(21 intermediate revisions by 6 users not shown)
Line 2: Line 2:
 
| name = Rubyripper
 
| name = Rubyripper
 
| logo =
 
| logo =
| screenshot = [[Image:Rubyripper-screenshot.png|100px]]
+
| screenshot = [[File:Rubyripper-screenshot.png|100px]]
| caption = Open-source secure ripper for Linux
+
| caption = Screenshot of legacy version 0.2
 
| maintainer = Bouke Woudstra
 
| maintainer = Bouke Woudstra
| stable_release = 0.5.7
+
| stable_release = 0.6.0
| preview_release = 0.6.0
+
| preview_release = 0.6.2
| operating_system = Linux, Mac OS/X
+
| operating_system = GNU/Linux, Mac OS/X (CLI)
 
| use = Digital Audio Extraction
 
| use = Digital Audio Extraction
 
| license = GPL
 
| license = GPL
| website = [http://code.google.com/p/rubyripper/ Rubyripper website (hosted by Google Code)]
+
| website = [https://github.com/bleskodev/rubyripper github.com/bleskodev/rubyripper]
 
}}
 
}}
  
= Introduction =
+
'''Rubyripper''' is a secure digital audio extraction application ("cd ripper") for Unix-like operating systems.
Rubyripper is a digital audio extraction algorithm that uses [[cdparanoia]] error correcting power and it's own secure ripping algorithm to make sure that a CD rip is done successfully and accurately. It is very similar to and inspired by [[EAC]]. Rubyripper is written in the ruby programming language.
+
It uses [[cdparanoia]] error correcting power and its own secure ripping algorithm to make sure that a CD rip is done successfully and accurately. It is very similar to and inspired by [[EAC]]. Rubyripper is written in the ruby programming language.
  
It's currently available for Linux, BSD should work but is untested. Mac OS/X is supported for the CLI frontend. The source (same as executable) is published under the GPL3 license.
+
It's currently available for GNU/Linux, BSD should work but is untested. Mac OS/X is supported for the CLI version. For GNU/Linux systems it may be the most mature native secure ripping application available.
 +
The source (same as executable) is published as Free Software under the terms of the GPL version 3.
 
   
 
   
 
 
== Features ==
 
== Features ==
* A GTK2 user interface
 
 
* Sophisticated error correction mechanism
 
* Sophisticated error correction mechanism
* A command line interface (CLI) available
+
* Direct read offset support
* CDDB-info is fetched via the ''cd-discid'' module
+
* Detection of pregaps
* Info can be edited after fetching
+
* Detection of pre-emphasis
* The codecs supported are FLAC, Vorbis, MP3, and WAV
+
* Create disc images with [[cue sheet]]s
 +
* Create m3u playlists
 +
* A GTK2 user interface
 +
* A command line interface (CLI)
 +
* Metadata (CDDB-info) is fetched via the ''cd-discid'' module. Data can be edited after fetching
 +
* The codecs supported are FLAC, Vorbis, MP3, WAV, and arbitrary command line encoders
 
* Multiple codecs can be used in one run
 
* Multiple codecs can be used in one run
* Direct offset support
 
 
* Detailed logfile creation
 
* Detailed logfile creation
 
* A detailed overview of hard-to-correct positions
 
* A detailed overview of hard-to-correct positions
* Create m3u playlists
 
  
== Correction mechanism ==
+
=== Error correction mechanism ===
 
Rubyripper correction mechanism goes beyond that of [[cdparanoia]]. Every track gets ripped at least twice and is byte compared with the <code>Ruby cmp</code> feature. If any differences are found, each of the 1,000 bytes of the two files is compared. The next trial run looks to see if differing positions or a match can be found. ''(1,000 bytes is about 0.006 seconds)''. The main underlying Philosophy is that an erroneous read of an underlying ripper will produce random results. This seems so far to be correct. A possibility still exists that with random results the same result will be wrong.
 
Rubyripper correction mechanism goes beyond that of [[cdparanoia]]. Every track gets ripped at least twice and is byte compared with the <code>Ruby cmp</code> feature. If any differences are found, each of the 1,000 bytes of the two files is compared. The next trial run looks to see if differing positions or a match can be found. ''(1,000 bytes is about 0.006 seconds)''. The main underlying Philosophy is that an erroneous read of an underlying ripper will produce random results. This seems so far to be correct. A possibility still exists that with random results the same result will be wrong.
  
In theory if the full 1,000 bytes are erroneous, than a false repair seems to be highly unlikely since there are <math>256^{1000} = 1.73 * 10^{2408}</math> combinations. (As a byte consists of 8 bits, <math>2^8 = 256</math>). The main principle however is, the more trials that are needed, consequently the higher a chance of a false repair. Suppose only 3 bytes in a sample of 1,000 bytes give random information. This would still mean <math>256^3 = 16.7M</math> possibilities for these bytes; really 2 bits in each byte could be a problem. This reduces the possibilities to <math>2^{3*2} = 64</math>. A correct repair at this point may be possible. One has to wonder though: can 3 bytes actually be heard in a wav file that produces 180.000 bytes per second?  
+
In theory if the full 1,000 bytes are erroneous, then a false repair seems to be highly unlikely since there are <math>256^{1000} = 1.73 * 10^{2408}</math> combinations. (As a byte consists of 8 bits, <math>2^8 = 256</math>). The main principle however is, the more trials that are needed, the higher the chance of a false repair. Suppose only 3 bytes in a sample of 1,000 bytes give random information. This would still mean <math>256^3 = 16.7M</math> possibilities for these bytes; really 2 bits in each byte could be a problem. This reduces the possibilities to <math>2^{3*2} = 64</math>. A correct repair at this point may be possible. One has to wonder though: can 3 bytes actually be heard in a wav file that produces 180.000 bytes per second?  
  
 
In conclusion: Rubyripper won't guarantee a consequent ''MD5 checksum hash'' on tracks that needed correction. However it will repair any files so that it's impossible to successfully blind-test with the original via an [[ABX]] test for example. The log file will optionally report any position that needed more than 3 trials, so you can check the position yourself.
 
In conclusion: Rubyripper won't guarantee a consequent ''MD5 checksum hash'' on tracks that needed correction. However it will repair any files so that it's impossible to successfully blind-test with the original via an [[ABX]] test for example. The log file will optionally report any position that needed more than 3 trials, so you can check the position yourself.
  
 
== Installation ==
 
== Installation ==
 
+
=== General Installation from Source ===  
===General Installation===  
+
 
Make sure to have <code>cd-discid, ruby-libglade2, libglade2-ruby</code> and [[cdparanoia]] installed as a minimum. You can optionally choose for Lame, Vorbis or FLAC, and others via command-line configurations depending upon which codecs you want to encode with i.e Wavpack or Nero AAC (See the official Ubuntu forums for more information).   
 
Make sure to have <code>cd-discid, ruby-libglade2, libglade2-ruby</code> and [[cdparanoia]] installed as a minimum. You can optionally choose for Lame, Vorbis or FLAC, and others via command-line configurations depending upon which codecs you want to encode with i.e Wavpack or Nero AAC (See the official Ubuntu forums for more information).   
  
Line 51: Line 52:
 
If Rubyripper doesn't start make sure the dependencies are ok. When launched from the terminal window Rubyripper should tell you which dependency it's missing.
 
If Rubyripper doesn't start make sure the dependencies are ok. When launched from the terminal window Rubyripper should tell you which dependency it's missing.
  
'''Notes:'''
+
=== Automatic Installation on Ubuntu/Debian ===
* If you are using Ubuntu 9.10 (Karmic Koala) and below it's important to update all of the necessary dependencies that are required for Rubyripper if you are building from the source! i.e Vorbis-tools package 1.4.0 (as of March 2010) or LAME 3.98 and above. Newer versions are not included via synaptic or in repository channels for Jaunty or Karmic and need to be built manually by downloading from appropriate websites and following the README files within the tarballs. One other solution to fixing this problem is changing the software repository channels from which you are downloading (See the official Ubuntu forums for more information).
+
[http://www.getdeb.net/ GetDeb] has recent versions of Rubyripper packaged for Ubuntu systems. After teaching your system to use the GetDeb software repositories you can conveniently install using your favourite package manager frontend. Read their [http://www.getdeb.net/updates#how_to_install instructions] on how to easily install their package repositories.
  
===Manual Installation on Ubuntu===  
+
You can alternatively use the Debian "Sid Marrilat" repositories.
'''It is strongly recommended you use Ubuntu 10.04 (Lucid Lynx) or greater when compiling from the source! ''' <br>  
+
 
 +
* [http://linuxappfinder.com/package/rubyripper Rubyripper 32-bit and 64-bit] The latest releases for i386 and x86_64 architecturess.
 +
 
 +
=== Automatic Installation on Fedora/Red Hat ===
 +
Starting with Fedora 20 Rubyripper, is no longer packaged with Fedora/Red Hat repositories due it no longer being updated. The easiest way to install it is to build it from the source above. This requires downloading the source code from the Rubyripper code archive on the Google Code website or the GitHub repository fork listed at the end of the wiki.
 +
 
 +
=== Older Manual Installation on Ubuntu/Debian ===  
 +
'''It is strongly recommended you use Ubuntu 10.04 (Lucid Lynx) or greater when compiling from the source! ''' <br />  
 
'''These instructions were tested with Ubuntu 9.04 ("Jaunty Jackalope“), Gnome 2.26.1, and Rubyripper 0.5.7.'''
 
'''These instructions were tested with Ubuntu 9.04 ("Jaunty Jackalope“), Gnome 2.26.1, and Rubyripper 0.5.7.'''
  
#Make sure Rubyripper has these dependencies as a bare mininum. They can be installed by typing in the terminal window:<br><code>&nbsp;$ sudo apt-get install cd-discid cdparanoia</code><br>as a bare mininum or<br><code>&nbsp;$ sudo apt-get install cd-discid cdparanoia flac lame mp3gain normalize-audio ruby-gnome2 ruby vorbisgain</code><br>to get the most out of the currently available distros.<br>For internationalization: instead of the mentioned <code>ruby-gettext</code> install <code>gettext</code> and <code>libgettext-ruby1.8</code>.
+
#Make sure Rubyripper has these dependencies as a bare mininum. They can be installed by typing in the terminal window:<br /><code>&nbsp;$ sudo apt-get install cd-discid cdparanoia</code><br>as a bare mininum or<br><code>&nbsp;$ sudo apt-get install cd-discid cdparanoia flac lame mp3gain normalize-audio ruby-gnome2 ruby vorbisgain</code><br />to get the most out of the currently available distros.<br>For internationalization: instead of the mentioned <code>ruby-gettext</code> install <code>gettext</code> and <code>libgettext-ruby1.8</code>.
 
#Download the Rubyripper archive (see above) from the official website.  
 
#Download the Rubyripper archive (see above) from the official website.  
 
#Extract the files in the Rubyripper archive (bzipped tarball) into a temporary directory.
 
#Extract the files in the Rubyripper archive (bzipped tarball) into a temporary directory.
#Navigate to the directory in which you extracted the Rubyripper archive (Most likely which will be your desktop) or the directory in which you extracted the archive in, e.&nbsp;g. by typing in terminal window:<br><code>&nbsp;$ cd /home/USERNAME/Desktop/rubyripper-0.x.x/</code>
+
#Navigate to the directory in which you extracted the Rubyripper archive (Most likely which will be your desktop) or the directory in which you extracted the archive in, e.&nbsp;g. by typing in terminal window:<br /><code>&nbsp;$ cd /home/USERNAME/Desktop/rubyripper-0.x.x/</code>
 
#Rubyripper needs to know what features need to be installed. Install both the GUI and command-line version for to get the most out of the application by typing in the terminal window:<br><code>&nbsp;$ ./configure --enable-lang-all --enable-gtk2 --enable-cli</code><br>Note: This only prepares/&#8203;configures installation.
 
#Rubyripper needs to know what features need to be installed. Install both the GUI and command-line version for to get the most out of the application by typing in the terminal window:<br><code>&nbsp;$ ./configure --enable-lang-all --enable-gtk2 --enable-cli</code><br>Note: This only prepares/&#8203;configures installation.
 
#In order to install the application, type in the terminal window:<br><code>&nbsp;$ sudo make install</code>
 
#In order to install the application, type in the terminal window:<br><code>&nbsp;$ sudo make install</code>
Line 73: Line 81:
 
* You can run the command-line version of Rubyripper be navigating to the source directory and typing in <code>./rubyripper_cli.rb</code> into the terminal (This is useful if you want to use it conjunction with shell scripts like BASH and KSH to automate the ripping process for instance)'''
 
* You can run the command-line version of Rubyripper be navigating to the source directory and typing in <code>./rubyripper_cli.rb</code> into the terminal (This is useful if you want to use it conjunction with shell scripts like BASH and KSH to automate the ripping process for instance)'''
  
===Automatic Installation on Ubuntu/Debian===
+
=== Setup ===
 +
To point to the correct cdrom drive, you will need to specify both the Cdrom device & Cdrom offset.
 +
* Cd rom device
 +
** To print a list of installed drives:
 +
<nowiki>$ cd-drive | grep Drive</nowiki>
 +
 
 +
*Cd rom offset
 +
** Click the [http://accuraterip.com/driveoffsets.htm List with offsets] link to lookup the required Correction Offset
 +
** To print a list of installed drives:
 +
<nowiki>$ cd-drive | grep Model</nowiki>
 +
 
 +
'''Example'''
 +
 
 +
''Terminal:''
 +
 
 +
<nowiki>[user@name ~]$ cd-drive | grep Drive
 +
Drivers available...
 +
                      Drive: /dev/cdrom
 +
                      Drive: /dev/sr1
 +
[user@name ~]$ cd-drive | grep Model
 +
Model                      : DVDRW LH-20A1L 
 +
Model                      : iHAS324  W </nowiki>
 +
''Retrieved from the website 3/31/2014:''
 +
{| style="text-align:left"
 +
! CD Drive                     
 +
! Correction Offset !! Submitted By !! Percentage Agree
 +
|-
 +
| LITE-ON - DVDRW LH-20A1L
 +
| +6
 +
| 706
 +
| 100%
 +
|-
 +
| ATAPI - iHAS324 W
 +
| +48
 +
| 19
 +
| 100%
 +
|}
 +
 
 +
 
 +
''Option 1:''
 +
 
 +
<tt>
 +
 
 +
Cdrom device: /dev/cdrom
 +
 
 +
Cdrom offset: 6
 +
 
 +
</tt>
 +
 
 +
 
 +
''Option 2:''
  
Older Rubyripper compiles and dependencies come packaged with Rarewares GNU / Debian Linux [http://www.rarewares.org/debian.php repository]
+
<tt>
  
In addition to the unstable Rarewares repositories above there are newer and previous compiles of Rubyripper in Debian "Sid Marrilat" repositories.
+
Cdrom device: /dev/sr1
  
* [http://linuxappfinder.com/package/rubyripper Rubyripper 32-bit and 64-bit] The latest releases for i386 and AMD64 architectures.
+
Cdrom offset: 48
  
===Automatic Installation on Fedora/Red Hat===
+
</tt>
Starting with Fedora 15 Rawhide packages Rubyripper 0.6.0 comes packaged under "Add/Remove Software". In order to look for it search for
+
'rubyripper'. Once it is found you then have the option of installing the GTK+ GUI or CLI interface optionally (depending upon your personal
+
preferences). After you have selected either interface and click apply it will then find all of the necessary dependencies for you i.e some
+
ruby packages, vorbisgain, libvorbis, etc if they are not installed and will reconfigure your packages and install them one by one. Rubyripper should
+
now be installed under <code>Applications -> Sound & Video</code> on your main menu.
+
  
== Screenshots ==
 
These screenshots are taken with the 0.5.5 release:
 
* [http://www.opendesktop.org/content/preview.php?preview=1&id=88595&file1=88595-1.png&file2=885952.png&file3=&name=Rubyripper&PHPSESSID=2419fd006ef409c1e96a34b45c34d5f2 Screenshot #1]
 
* [http://www.opendesktop.org/content/preview.php?preview=2&id=88595&file1=88595-1.png&file2=885952.png&file3=&name=Rubyripper&PHPSESSID=2419fd006ef409c1e96a34b45c34d5f2 Screenshot #2]
 
  
 
== Known bugs & new features ==
 
== Known bugs & new features ==
Line 97: Line 146:
 
* [http://code.google.com/p/rubyripper/issues/list Known bugs and new features]
 
* [http://code.google.com/p/rubyripper/issues/list Known bugs and new features]
  
= Development API =
+
== Development API ==
 
This section will give some technical information, which should be useful for interested developers. It will outline how the code is structured and what the API of Rubyripper codebase is for adding new user interfaces. Since version 0.2 it is quite simple to add new frontends to the current codebase. Currently there are CLI and GTK2 frontends. A Qt frontend or a Cocoa Mac OS frontend, should not be terribly difficult to implement. The developer won't implement this himself though, due to the fact that he is more interested in fine tuning the Rubyripper logic codebase.
 
This section will give some technical information, which should be useful for interested developers. It will outline how the code is structured and what the API of Rubyripper codebase is for adding new user interfaces. Since version 0.2 it is quite simple to add new frontends to the current codebase. Currently there are CLI and GTK2 frontends. A Qt frontend or a Cocoa Mac OS frontend, should not be terribly difficult to implement. The developer won't implement this himself though, due to the fact that he is more interested in fine tuning the Rubyripper logic codebase.
  
Line 130: Line 179:
  
 
== External links ==
 
== External links ==
* [http://code.google.com/p/rubyripper/ Rubyripper] The official Google code website
+
* [https://github.com/bleskodev/rubyripper Rubyripper] The next best repository since Google Code closed down.
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=38418 Hydrogenaudio forum thread] the first public release of Rubyripper
+
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=38418 Hydrogenaudio forum thread] the first public release of Rubyripper.
* [http://linuxappfinder.com/package/rubyripper Sid Marillat] unstable 32 and 64-bit compiles of Rubyripper for Debian multimedia packages.  
+
* [https://plus.google.com/communities/103961841006414793555 Google Plus] Google Plus community group for questions related to older releases of Rubyripper.  
 
* [http://ubuntuforums.org/showthread.php?t=799621 Ubuntu Forums] a thread that's consistently updated for installing Rubyripper in Ubuntu including troubleshooting.   
 
* [http://ubuntuforums.org/showthread.php?t=799621 Ubuntu Forums] a thread that's consistently updated for installing Rubyripper in Ubuntu including troubleshooting.   
  
  
 
[[Category:CD Rippers]]
 
[[Category:CD Rippers]]
 +
[[Category:Software]]

Latest revision as of 18:46, 13 November 2021

Rubyripper
Rubyripper-screenshot.png
Screenshot of legacy version 0.2
Developer(s) Bouke Woudstra
Release information
Initial release {{{released}}}
Stable release 0.6.0
Preview release 0.6.2
Compatibility
Operating system GNU/Linux, Mac OS/X (CLI)
Additional information
Use Digital Audio Extraction
License GPL
Website github.com/bleskodev/rubyripper

Rubyripper is a secure digital audio extraction application ("cd ripper") for Unix-like operating systems. It uses cdparanoia error correcting power and its own secure ripping algorithm to make sure that a CD rip is done successfully and accurately. It is very similar to and inspired by EAC. Rubyripper is written in the ruby programming language.

It's currently available for GNU/Linux, BSD should work but is untested. Mac OS/X is supported for the CLI version. For GNU/Linux systems it may be the most mature native secure ripping application available. The source (same as executable) is published as Free Software under the terms of the GPL version 3.

Features

  • Sophisticated error correction mechanism
  • Direct read offset support
  • Detection of pregaps
  • Detection of pre-emphasis
  • Create disc images with cue sheets
  • Create m3u playlists
  • A GTK2 user interface
  • A command line interface (CLI)
  • Metadata (CDDB-info) is fetched via the cd-discid module. Data can be edited after fetching
  • The codecs supported are FLAC, Vorbis, MP3, WAV, and arbitrary command line encoders
  • Multiple codecs can be used in one run
  • Detailed logfile creation
  • A detailed overview of hard-to-correct positions

Error correction mechanism

Rubyripper correction mechanism goes beyond that of cdparanoia. Every track gets ripped at least twice and is byte compared with the Ruby cmp feature. If any differences are found, each of the 1,000 bytes of the two files is compared. The next trial run looks to see if differing positions or a match can be found. (1,000 bytes is about 0.006 seconds). The main underlying Philosophy is that an erroneous read of an underlying ripper will produce random results. This seems so far to be correct. A possibility still exists that with random results the same result will be wrong.

In theory if the full 1,000 bytes are erroneous, then a false repair seems to be highly unlikely since there are 256^{1000} = 1.73 * 10^{2408} combinations. (As a byte consists of 8 bits, 2^8 = 256). The main principle however is, the more trials that are needed, the higher the chance of a false repair. Suppose only 3 bytes in a sample of 1,000 bytes give random information. This would still mean 256^3 = 16.7M possibilities for these bytes; really 2 bits in each byte could be a problem. This reduces the possibilities to 2^{3*2} = 64. A correct repair at this point may be possible. One has to wonder though: can 3 bytes actually be heard in a wav file that produces 180.000 bytes per second?

In conclusion: Rubyripper won't guarantee a consequent MD5 checksum hash on tracks that needed correction. However it will repair any files so that it's impossible to successfully blind-test with the original via an ABX test for example. The log file will optionally report any position that needed more than 3 trials, so you can check the position yourself.

Installation

General Installation from Source

Make sure to have cd-discid, ruby-libglade2, libglade2-ruby and cdparanoia installed as a minimum. You can optionally choose for Lame, Vorbis or FLAC, and others via command-line configurations depending upon which codecs you want to encode with i.e Wavpack or Nero AAC (See the official Ubuntu forums for more information).

Then download Rubyripper: http://code.google.com/p/rubyripper/downloads/list

See the README file for installation instructions or just type: $sudo make install

If Rubyripper doesn't start make sure the dependencies are ok. When launched from the terminal window Rubyripper should tell you which dependency it's missing.

Automatic Installation on Ubuntu/Debian

GetDeb has recent versions of Rubyripper packaged for Ubuntu systems. After teaching your system to use the GetDeb software repositories you can conveniently install using your favourite package manager frontend. Read their instructions on how to easily install their package repositories.

You can alternatively use the Debian "Sid Marrilat" repositories.

Automatic Installation on Fedora/Red Hat

Starting with Fedora 20 Rubyripper, is no longer packaged with Fedora/Red Hat repositories due it no longer being updated. The easiest way to install it is to build it from the source above. This requires downloading the source code from the Rubyripper code archive on the Google Code website or the GitHub repository fork listed at the end of the wiki.

Older Manual Installation on Ubuntu/Debian

It is strongly recommended you use Ubuntu 10.04 (Lucid Lynx) or greater when compiling from the source!
These instructions were tested with Ubuntu 9.04 ("Jaunty Jackalope“), Gnome 2.26.1, and Rubyripper 0.5.7.

  1. Make sure Rubyripper has these dependencies as a bare mininum. They can be installed by typing in the terminal window:
     $ sudo apt-get install cd-discid cdparanoia
    as a bare mininum or
     $ sudo apt-get install cd-discid cdparanoia flac lame mp3gain normalize-audio ruby-gnome2 ruby vorbisgain
    to get the most out of the currently available distros.
    For internationalization: instead of the mentioned ruby-gettext install gettext and libgettext-ruby1.8.
  2. Download the Rubyripper archive (see above) from the official website.
  3. Extract the files in the Rubyripper archive (bzipped tarball) into a temporary directory.
  4. Navigate to the directory in which you extracted the Rubyripper archive (Most likely which will be your desktop) or the directory in which you extracted the archive in, e. g. by typing in terminal window:
     $ cd /home/USERNAME/Desktop/rubyripper-0.x.x/
  5. Rubyripper needs to know what features need to be installed. Install both the GUI and command-line version for to get the most out of the application by typing in the terminal window:
     $ ./configure --enable-lang-all --enable-gtk2 --enable-cli
    Note: This only prepares/​configures installation.
  6. In order to install the application, type in the terminal window:
     $ sudo make install
  7. Rubyripper should now be installed with your applications under Applications -> Sound & Video
  8. If it runs according to your needs you may remove the temporary directory.

Notes:

  • If you have CD-ROM drive problems it is recommended you read this thread
  • You can add or drop dependencies as you see fit depending upon what packages you need or already have
  • Substitute 'x' above with the latest version of Rubyripper
  • You can run the command-line version of Rubyripper be navigating to the source directory and typing in ./rubyripper_cli.rb into the terminal (This is useful if you want to use it conjunction with shell scripts like BASH and KSH to automate the ripping process for instance)

Setup

To point to the correct cdrom drive, you will need to specify both the Cdrom device & Cdrom offset.

  • Cd rom device
    • To print a list of installed drives:
$ cd-drive | grep Drive
  • Cd rom offset
    • Click the List with offsets link to lookup the required Correction Offset
    • To print a list of installed drives:
$ cd-drive | grep Model

Example

Terminal:

[user@name ~]$ cd-drive | grep Drive
Drivers available...
                       Drive: /dev/cdrom
                       Drive: /dev/sr1
[user@name ~]$ cd-drive | grep Model
Model                       : DVDRW LH-20A1L  
Model                       : iHAS324   W 

Retrieved from the website 3/31/2014:

CD Drive Correction Offset Submitted By Percentage Agree
LITE-ON - DVDRW LH-20A1L +6 706 100%
ATAPI - iHAS324 W +48 19 100%


Option 1:

Cdrom device: /dev/cdrom

Cdrom offset: 6


Option 2:

Cdrom device: /dev/sr1

Cdrom offset: 48


Known bugs & new features

Add an issue in the bugtracker to discuss any new feature requests:

Development API

This section will give some technical information, which should be useful for interested developers. It will outline how the code is structured and what the API of Rubyripper codebase is for adding new user interfaces. Since version 0.2 it is quite simple to add new frontends to the current codebase. Currently there are CLI and GTK2 frontends. A Qt frontend or a Cocoa Mac OS frontend, should not be terribly difficult to implement. The developer won't implement this himself though, due to the fact that he is more interested in fine tuning the Rubyripper logic codebase.

Becoming a Rubyripper developer

To become a developer you should have:

  • Some basic knowledge of the Ruby programming language. Read for instance the free online book, at least until the chapter "Until Trouble Strikes". This is a somewhat dated version, but still perfectly usable. The lead developer doesn't use any new features, therefore it should be fine.
  • Some basic knowledge of a GUI-toolkit in case you want to add a new frontend.

SVN Checkout now possible.
Use: $svn checkout http://rubyripper.googlecode.com/svn/trunk/ rubyripper to get the latest source code.

If you're interested in becoming a developer, please contact him at rubyripperdev@nospam@gmail.com. You can leave out the @nospam part.

Data files and class structures

The 0.5 release has three ruby files and one glade file included:

  • rr_lib.rb. This contains the Rubyripper codebase. It consists of five classes:
    • Gui_Support. This class handles all feedback communication with the user interface and is used a lot by the other classes (except Cddb). This is were log file is generated and the error analysis takes place.
    • Cddb. This class handles the freedb fetching. It uses the Freedb class (dependent on ruby-freedb) to get info about the disc. The server contact is handled in the Cddb class itself. Some problems of the Freedb class made it impossible to rely on it. The biggest problem with using Freedb class is that, it's using an old contact protocol and never gives away any information on the current year. This is the main reason why the Cddb class handles all server contact.
    • Secure_rip. As might be expected, all error correction logic is put in here.
    • Encode. As might be expected, this handles the encoding of the different formats supported.
    • Rubyripper. Handles the usage of the different classes. It also performs some logical checks before starting at all.
  • rubyripper_cli.rb. It has one class that contains the code for the command line interface frontend.
  • rubyripper_gtk.rb.M It has one class that contains the code for the GTK2 user interface frontend.
  • rubyripper.glade. This is a help file for the GTK interface. It's made with Glade, a program for designing user interfaces for GTK2.

Adding a new frontend

New frontends are encouraged and aren't difficult to make, once you know your GUI toolkit. Take for instance, the current GTK2 frontend, which consists of only 350 lines of code (+ the glade file, but this code is automatically created)'. From a starting point it would be best to use the current GTK2 or CLI code and just plainly rewrite it for the other toolkit. The basic ideas should be more or less the same.

The basic idea is that the GUI first presents the info of a Cddb instance. When the user wants to start, a new Rubyripper instance is started with all the settings in a Hash as a parameter. You can copy most of the code from the other user interfaces. The user interface should also have an update function. The update function is used as a communication channel for the Rubyripper instance.

  1. Using a new thread for launching instances is an effective way of getting a responsive GUI.

External links

  • Rubyripper The next best repository since Google Code closed down.
  • Hydrogenaudio forum thread the first public release of Rubyripper.
  • Google Plus Google Plus community group for questions related to older releases of Rubyripper.
  • Ubuntu Forums a thread that's consistently updated for installing Rubyripper in Ubuntu including troubleshooting.