Differences between revisions 36 and 38 (spanning 2 versions)
Revision 36 as of 2020-01-05 01:06:37
Size: 6205
Editor: ?paulehoffman
Comment: Running abcde is now singificantly easier than in the past
Revision 38 as of 2020-01-05 06:39:15
Size: 5525
Editor: PaulWise
Comment: drop squeeze instructions (obsolete release)
Deletions are marked like this. Additions are marked like this.
Line 53: Line 53:
=== wheezy ===

If you want to rip audio CD's to MP3's with [[WikiPedia:Sound_Juicer|Sound Juicer]], install the [[DebianPkg:wheezy/gstreamer0.10-plugins-ugly|gstreamer0.10-plugins-ugly]] package: {{{
If you want to rip audio CD's to MP3's with [[WikiPedia:Sound_Juicer|Sound Juicer]], install the [[DebianPkg:gstreamer0.10-plugins-ugly|gstreamer0.10-plugins-ugly]] package: {{{
Line 57: Line 55:
}}}

=== squeeze ===

If you want to rip audio CD's to [[WikiPedia:MP3|MP3 files]] with Sound Juicer, you want to have the "gstreamer0.10-lame" package from, e.g., www.deb-multimedia.org.
{{{
# Type these commands for amd64 machines.
wget http://www.deb-multimedia.org/pool/main/g/gst-plugins-ugly/gstreamer0.10-lame_0.10.17-0.0_amd64.deb
dpkg -i gstreamer0.10-lame_0.10.17-0.0_amd64.deb
}}}
{{{
# Type these commands for i386 machines.
wget http://www.deb-multimedia.org/pool/main/g/gst-plugins-ugly/gstreamer0.10-lame_0.10.17-0.0_i386.deb
dpkg -i gstreamer0.10-lame_0.10.17-0.0_i386.deb
Line 75: Line 59:
DebianPkg:abcde (''A Better CD Encoder'') is a performant and reliable commandline tool for ripping audio CDs which can be installed from [[https://packages.debian.org/search?keywords=abcde|package builds]]. For much more information about DebianPkg:abcde, see DebianPkg:abcde (''A Better CD Encoder'') is a performant and reliable commandline tool for ripping audio CDs which can be installed from packages. For much more information about DebianPkg:abcde, see
Line 77: Line 61:
 * its man page (`man abcde`)  * the [[DebianMan:abcde]] manual page



summary

To almost quote Wikipedia, ripping is the process of copying input audio or video content (typically from an optical disc such as a CD or DVD) and outputting to a "normal" storage filesystem. Ripping is typically more difficult than simple file copying (as when copying files from a flash drive or external hard drive) in that

  • the source content (i.e., the audio or video (or both) on the optical disc) typically is not formatted like data in a "normal" filesystem.

  • the source content is often encrypted (e.g., with CSS)

  • writing output audio and video files may require particular codecs.

  • the user may want to include metadata (aka tags, e.g., artist name, work title, release date) in the output. This metadata will typically require some format, e.g., ID3.

Hence ripping audio or video involves at least 3 separate problems:

  1. reading the optical disc
  2. writing to the desired output format
  3. gathering (or authoring) metadata

Fortunately we Debian users have access to many services and software packages to assist us with these problems.

ripping audio CDs

Popular CD rippers with Debian builds include

  • abcde, a commandline ripper and metadata retriever

  • Asunder, a non-GNOME, GTK+ CD ripper/retriever GUI

  • cdparanoia, an audio extraction commandline tool for sampling CDs. Cdparanoia goes to great lengths to try to extract the audio information without any artifacts such as jitter

  • Grip, a GNOME CD ripper/retriever GUI

  • pacpl (the Perl Audio Converter), a commandline ripper and metadata converter

  • ripperx, a GTK-based graphical interface for ripping CD audio tracks (using cdparanoia) and then encoding them into the Ogg, FLAC, or MP2/3 formats

  • Sound Juicer, a GNOME CD ripper/retriever GUI

  • VLC, a multi-platform GUI media player, streamer, and ripper/retriever

  • xcfa, a GUI tool to extract the contens of Audio-CDs and convert it to various audio file formats such as FLAC, WAV, OGG, M4A, MPC, MP3, WavPack and many other

TODO:

  • document examples of use of at least one GUI.
  • document ripping to a non-MP3 format

ripping audio CDs with pacpl

pacpl will rip tracks from the current disc to any of several supported formats with commandlines like

pacpl --rip all --to flac
pacpl --rip 1,3,9,15 --to mp3

Install package=pacpl and read info pacpl (especially section=RIPPING OPTIONS).

ripping audio CDs to MP3s with Sound Juicer

If you want to rip audio CD's to MP3's with Sound Juicer, install the gstreamer0.10-plugins-ugly package:

apt-get install gstreamer0.10-plugins-ugly

ripping audio CDs to MP3s with abcde

abcde (A Better CD Encoder) is a performant and reliable commandline tool for ripping audio CDs which can be installed from packages. For much more information about abcde, see

Modern versions of abcde come with logical defaults. An easy way to change the defaults is to copy /etc/abcde.conf to ~/.abcde.conf and edit the latter. Everything in the configuration file is commented out, so uncomment and change the values you want.

install abcde

Install abcde from packages with your favorite manager, or from source.

As of buster, abcde comes with many suggested packages that support it. One package that it does not come with, but is required for the default configuration is "eyed3"; that needs to be added separately.

running abcde

Put a CD in the CD reader of the system. Start abcde with abcde to execute with all the defaults and any configuration changes you have made. It will ask a few questions but then proceed to rip and save.

ripping video DVDs

  • vobcopy: copy DVD files (.vob) to hard disk. For example, vobcopy -m mirrors the whole DVD to the hard disk inside a created directory (named after the DVD). Then, open the directory with VLC to play the DVD rip.

  • dvdbackup: like vobcopy. dvdbackup -M should produce the same thing as vobcopy -m.

See also


CategorySound CategoryVideo CategorySoftware