cddb
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 83
CDDB 2.27
CDDB is a Perl module that can read the CDDB entry for an audio CD in your drive. more>>
CDDB is a Perl module that can read the CDDB entry for an audio CD in your drive.
SYNOPSIS
use CDDB_get qw( get_cddb );
my %config;
# following variables just need to be declared if different from defaults
$config{CDDB_HOST}="freedb.freedb.org"; # set cddb host
$config{CDDB_PORT}=8880; # set cddb port
$config{CDDB_MODE}="cddb"; # set cddb mode: cddb or http
$config{CD_DEVICE}="/dev/cdrom"; # set cd device
# user interaction welcome?
$config{input}=1; # 1: ask user if more than one possibility
# 0: no user interaction
# get it on
my %cd=get_cddb(%config);
unless(defined $cd{title}) {
die "no cddb entry found";
}
# do somthing with the results
print "artist: $cd{artist}n";
print "title: $cd{title}n";
print "category: $cd{cat}n";
print "cddbid: $cd{id}n";
print "trackno: $cd{tno}n";
my $n=1;
foreach my $i ( @{$cd{track}} ) {
print "track $n: $in";
$n++;
}
This module/script gets the CDDB info for an audio cd. You need LINUX, SUNOS or *BSD, a cdrom drive and an active internet connection in order to do that.
<<lessSYNOPSIS
use CDDB_get qw( get_cddb );
my %config;
# following variables just need to be declared if different from defaults
$config{CDDB_HOST}="freedb.freedb.org"; # set cddb host
$config{CDDB_PORT}=8880; # set cddb port
$config{CDDB_MODE}="cddb"; # set cddb mode: cddb or http
$config{CD_DEVICE}="/dev/cdrom"; # set cd device
# user interaction welcome?
$config{input}=1; # 1: ask user if more than one possibility
# 0: no user interaction
# get it on
my %cd=get_cddb(%config);
unless(defined $cd{title}) {
die "no cddb entry found";
}
# do somthing with the results
print "artist: $cd{artist}n";
print "title: $cd{title}n";
print "category: $cd{cat}n";
print "cddbid: $cd{id}n";
print "trackno: $cd{tno}n";
my $n=1;
foreach my $i ( @{$cd{track}} ) {
print "track $n: $in";
$n++;
}
This module/script gets the CDDB info for an audio cd. You need LINUX, SUNOS or *BSD, a cdrom drive and an active internet connection in order to do that.
Download (0.021MB)
Added: 2006-06-22 License: Perl Artistic License Price:
1220 downloads
CDDB.py 1.4
CDDB.py provides an easy way for Python programs to fetch track and disc information on audio CDs. more>>
CDDB.py provides an easy way for Python programs to fetch track and disc information on audio CDs. It includes a C extension module to fetch track lengths under Linux, FreeBSD, OpenBSD, Mac OS X, Solaris, and Win32, which is easily ported to other operating systems.
The dynamic duo of CDDB.py and DiscID.py, along with their side-kick C module cdrommodule.so, provide an easy way for Python programs to fetch information on audio CDs from CDDB (http://www.cddb.com/) -- a very large online database of track listings and other information on audio CDs.
Note that for CDDB.py version 1.3 and later, the default CDDB servers have changed to FreeDB, as GraceNote, the owners of the previously-free CDDB archives, have become unreasonably restrictive with access to their database. See http://www.freedb.org/ for more information on FreeDB. UNIX platforms and Windows are both supported by the library.
The old CDDB servers are still usable, but GraceNote has banned all "non-registered" programs -- including CDDB.py -- from accessing their databases. Im not particularly interested in bending over backwards for them, but CDDB.query() can still access any CDDB host you specify, and from version 1.3 on, also allows you to fake the identification string to anything you wish for accessing their servers.
Enhancements:
- Updated FreeDB version field to 5; this allows us to get access to the DYEAR and DGENRE fields in disc info from CDDB.read().
- Added Mac OS X support to cdrommodule.c; thanks to Andre Beckedorf and Jeffrey C. Jacobs.
- Changed default Solaris CD-ROM device to /dev/vol/aliases/cdrom0.
<<lessThe dynamic duo of CDDB.py and DiscID.py, along with their side-kick C module cdrommodule.so, provide an easy way for Python programs to fetch information on audio CDs from CDDB (http://www.cddb.com/) -- a very large online database of track listings and other information on audio CDs.
Note that for CDDB.py version 1.3 and later, the default CDDB servers have changed to FreeDB, as GraceNote, the owners of the previously-free CDDB archives, have become unreasonably restrictive with access to their database. See http://www.freedb.org/ for more information on FreeDB. UNIX platforms and Windows are both supported by the library.
The old CDDB servers are still usable, but GraceNote has banned all "non-registered" programs -- including CDDB.py -- from accessing their databases. Im not particularly interested in bending over backwards for them, but CDDB.query() can still access any CDDB host you specify, and from version 1.3 on, also allows you to fake the identification string to anything you wish for accessing their servers.
Enhancements:
- Updated FreeDB version field to 5; this allows us to get access to the DYEAR and DGENRE fields in disc info from CDDB.read().
- Added Mac OS X support to cdrommodule.c; thanks to Andre Beckedorf and Jeffrey C. Jacobs.
- Changed default Solaris CD-ROM device to /dev/vol/aliases/cdrom0.
Download (0.038MB)
Added: 2006-07-16 License: GPL (GNU General Public License) Price:
1203 downloads
Libcddb 1.3.0
Libcddb is a library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server. more>>
Libcddb is a C library to access data on a CDDB server (freedb.org).
Main features:
- search the database for possible CD matches;
- retrieve detailed information about a specific CD;
- submit new CD entries to the database.
Libcddb supports both the custom CDDB protocol and tunnelling the query and read operations over plain HTTP.
It is also possible to use an HTTP proxy server. If you want to speed things up, you can make use of the built-in caching facility provided by the library.
Enhancements:
- Support was added for text search using the "album" command of the freedb2.org servers.
- Functions were added to influence the behavior of the library when it comes to returning strings.
<<lessMain features:
- search the database for possible CD matches;
- retrieve detailed information about a specific CD;
- submit new CD entries to the database.
Libcddb supports both the custom CDDB protocol and tunnelling the query and read operations over plain HTTP.
It is also possible to use an HTTP proxy server. If you want to speed things up, you can make use of the built-in caching facility provided by the library.
Enhancements:
- Support was added for text search using the "album" command of the freedb2.org servers.
- Functions were added to influence the behavior of the library when it comes to returning strings.
Download (0.32MB)
Added: 2006-10-17 License: LGPL (GNU Lesser General Public License) Price:
1102 downloads
CDDB / CDDB_get 2.27
CDDB/CDDB_get Perl module gets the CDDB info for an audio CD more>>
CDDB/CDDB_get Perl module gets the CDDB info for an audio CD.
The included script was intended as a demo for CDDB_get, but over time it has gained powerful features like the ability to write to a database, offline mode, HTTP mode (including proxy), saving in standard XMCD format, and writing lame commands.
Enhancements:
- default port is now 8880 (not 888 anymore)
- fixes an ioctl perl problem on current redhat/fedora and maybe other systems too
- thanks to Gregory K. Ruiz-Ade and the redhat/fedora guys
<<lessThe included script was intended as a demo for CDDB_get, but over time it has gained powerful features like the ability to write to a database, offline mode, HTTP mode (including proxy), saving in standard XMCD format, and writing lame commands.
Enhancements:
- default port is now 8880 (not 888 anymore)
- fixes an ioctl perl problem on current redhat/fedora and maybe other systems too
- thanks to Gregory K. Ruiz-Ade and the redhat/fedora guys
Download (0.021MB)
Added: 2006-01-04 License: GPL (GNU General Public License) Price:
1395 downloads
MP3::Tag::CDDB_File 0.9708
MP3::Tag::CDDB_File is a Perl module for parsing CDDB files. more>>
MP3::Tag::CDDB_File is a Perl module for parsing CDDB files.
SYNOPSIS
my $db = MP3::Tag::CDDB_File->new($filename, $track); # Name of MP3 file
my $db = MP3::Tag::CDDB_File->new_from($record, $track); # Contents of CDDB
($title, $artist, $album, $year, $comment, $track) = $db->parse();
see MP3::Tag
MP3::Tag::Inf is designed to be called from the MP3::Tag module.
It parses the content of CDDB file.
The file is found in the same directory as MP3 file; the list of possible file names is taken from the field cddb_files if set by MP3::Tag config() method.
parse()
($title, $artist, $album, $year, $comment, $track) =
$db->parse($what);
parse_filename() extracts information about artist, title, track number, album and year from the CDDB record. $what is optional; it maybe title, track, artist, album, year, genre or comment. If $what is defined parse() will return only this element.
Additionally, $what can take values artist_collection (returns the value of artist in the disk-info field DTITLE, but only if author is specified in the track-info field TTITLE), title_track (returns the title specifically from track-info field - the track may fall back to the info from disk-info field), comment_collection (processed EXTD comment), comment_track (processed EXTT comment).
The returned year and genre is taken from DYEAR, DGENRE, EXTT, EXTD fields; recognized prefixes in the two last fields are YEAR, ID3Y, ID3G. The declarations of this form are stripped from the returned comment.
An alternative syntax "Recorded"/"Recorded on"/"Recorded in"/ is also supported; the format of the date recognized by ID3v2::year(), or just a date field without a prefix.
title()
$title = $db->title();
Returns the title, obtained from the Tracktitle entry of the file.
artist()
$artist = $db->artist();
Returns the artist name, obtained from the Performer or Albumperformer entries (the first which is present) of the file.
track()
$track = $db->track();
Returns the track number, stored during object creation.
year()
$year = $db->year();
Returns the year, obtained from the Year entry of the file. (Often not present.)
album()
$album = $db->album();
Returns the album name, obtained from the Albumtitle entry of the file.
comment()
$comment = $db->comment();
Returns the Trackcomment entry of the file. (Often not present.)
genre()
$genre = $db->genre($filename);
<<lessSYNOPSIS
my $db = MP3::Tag::CDDB_File->new($filename, $track); # Name of MP3 file
my $db = MP3::Tag::CDDB_File->new_from($record, $track); # Contents of CDDB
($title, $artist, $album, $year, $comment, $track) = $db->parse();
see MP3::Tag
MP3::Tag::Inf is designed to be called from the MP3::Tag module.
It parses the content of CDDB file.
The file is found in the same directory as MP3 file; the list of possible file names is taken from the field cddb_files if set by MP3::Tag config() method.
parse()
($title, $artist, $album, $year, $comment, $track) =
$db->parse($what);
parse_filename() extracts information about artist, title, track number, album and year from the CDDB record. $what is optional; it maybe title, track, artist, album, year, genre or comment. If $what is defined parse() will return only this element.
Additionally, $what can take values artist_collection (returns the value of artist in the disk-info field DTITLE, but only if author is specified in the track-info field TTITLE), title_track (returns the title specifically from track-info field - the track may fall back to the info from disk-info field), comment_collection (processed EXTD comment), comment_track (processed EXTT comment).
The returned year and genre is taken from DYEAR, DGENRE, EXTT, EXTD fields; recognized prefixes in the two last fields are YEAR, ID3Y, ID3G. The declarations of this form are stripped from the returned comment.
An alternative syntax "Recorded"/"Recorded on"/"Recorded in"/ is also supported; the format of the date recognized by ID3v2::year(), or just a date field without a prefix.
title()
$title = $db->title();
Returns the title, obtained from the Tracktitle entry of the file.
artist()
$artist = $db->artist();
Returns the artist name, obtained from the Performer or Albumperformer entries (the first which is present) of the file.
track()
$track = $db->track();
Returns the track number, stored during object creation.
year()
$year = $db->year();
Returns the year, obtained from the Year entry of the file. (Often not present.)
album()
$album = $db->album();
Returns the album name, obtained from the Albumtitle entry of the file.
comment()
$comment = $db->comment();
Returns the Trackcomment entry of the file. (Often not present.)
genre()
$genre = $db->genre($filename);
Download (0.17MB)
Added: 2006-11-08 License: Perl Artistic License Price:
1080 downloads
CDRDAO 1.2.2
CDRDAO is Disk-At-Once Recording of Audio CD-Rs. more>>
Cdrdao records audio or data CD-Rs in disk-at-once (DAO) mode based on a textual description of the CD contents (toc-file).
Recording in disk-at-once mode writes the complete disc, i.e. lead-in, one or more tracks and lead-out, in a single step. The commonly used track-at-once (TAO) mode writes each track independently which requires link blocks between two tracks.
Older CD-recorder models forced a two second pause (pre-gap) between two tracks whereas newer models allow adjusting of the pause length in TAO mode reducing the number of link blocks to a minimal amount.
However, with TAO it is generally not possible to define the data that is written in pre-gaps. But exactly this feature makes audio CD recording interesting, e.g. by creating hidden bonus tracks or track intros in pre-gaps like it is common habit on commercial CDs.
Finally, DAO recording is the only way to write data to the unused R-W sub-channels for e.g. CD-G or CD-TEXT.
Main features:
- Full control over length and contents of pre-gaps (pause areas between tracks). Pre-gaps may be completely omitted, e.g. for dividing live recordings into tracks.
- Control over sub-channel data like:
- catalog number
- copy, pre-emphasis, 2-/4-channel flags
- ISRC code
- index marks
- Support for exact audio, data and mixed mode CD copying.
- Support for R-W sub-channel writing.
- Tracks may be composed of different audio files supporting non destructive cut.
- Accepts WAVE and raw audio files.
- CD-TEXT reading and writing with drives that support it.
- CDDB access to automatically create CD-TEXT data.
- Support for on-the-fly copying.
Enhancements:
- Added device locking for win32 (Giuseppe Corbelli)
- Man page cleanup (Andrew Suffield)
GCDMaster changes:
- Fixed GCC 4.1 compilation issues
- Fixed hang when inserting WAV file
<<lessRecording in disk-at-once mode writes the complete disc, i.e. lead-in, one or more tracks and lead-out, in a single step. The commonly used track-at-once (TAO) mode writes each track independently which requires link blocks between two tracks.
Older CD-recorder models forced a two second pause (pre-gap) between two tracks whereas newer models allow adjusting of the pause length in TAO mode reducing the number of link blocks to a minimal amount.
However, with TAO it is generally not possible to define the data that is written in pre-gaps. But exactly this feature makes audio CD recording interesting, e.g. by creating hidden bonus tracks or track intros in pre-gaps like it is common habit on commercial CDs.
Finally, DAO recording is the only way to write data to the unused R-W sub-channels for e.g. CD-G or CD-TEXT.
Main features:
- Full control over length and contents of pre-gaps (pause areas between tracks). Pre-gaps may be completely omitted, e.g. for dividing live recordings into tracks.
- Control over sub-channel data like:
- catalog number
- copy, pre-emphasis, 2-/4-channel flags
- ISRC code
- index marks
- Support for exact audio, data and mixed mode CD copying.
- Support for R-W sub-channel writing.
- Tracks may be composed of different audio files supporting non destructive cut.
- Accepts WAVE and raw audio files.
- CD-TEXT reading and writing with drives that support it.
- CDDB access to automatically create CD-TEXT data.
- Support for on-the-fly copying.
Enhancements:
- Added device locking for win32 (Giuseppe Corbelli)
- Man page cleanup (Andrew Suffield)
GCDMaster changes:
- Fixed GCC 4.1 compilation issues
- Fixed hang when inserting WAV file
Download (0.58MB)
Added: 2006-09-21 License: GPL (GNU General Public License) Price:
1133 downloads
mcdp 0.4
mcdp is just another cd player for Linux. more>>
mcdp is a small (maybe the smallest) cd-player for _linux_
- it compiles/runs out off the box
- it can be compiled against dietlibc (~16kb static!)
- working play methods: reapeat cd, repeat track and intro
- since version 0.3a, minimal cddb title download is also included
<<less- it compiles/runs out off the box
- it can be compiled against dietlibc (~16kb static!)
- working play methods: reapeat cd, repeat track and intro
- since version 0.3a, minimal cddb title download is also included
Download (0.04MB)
Added: 2005-05-10 License: GPL (GNU General Public License) Price:
1628 downloads
KmusicdB 0.12.3
KmusicdB is a music information manager. more>>
KmusicdB is a music information manager. The GUI of KmusicdB is written for KDE and the backend is to a PostgreSQL server.
KmusicdB enables you to take your collection of music (CDs, vinyl, whatever) and organize it for browsing and searching. KmusicdB has a variety of reports (see below). There is CDDB support (with search) which makes adding CDs a breeze. Its main goals are stability, speed, ease of use, and lots of features.
libdbmusic is the music database library which enables KmusicdB to perform actions on the database. It is available as a separate library for developers who are interested. libdbmusic is required to build KmusicdB.
Main features:
libdbmusic:
- Create and connect to any local or remote PostgreSQL database.
- Backup and restore databases.
- Add, retrieve, delete, update artists, titles, tracks and categories (boxset, format, genre, label, method, type).
- Lyrics.
- A separate reporting class for creating and running custom reports.
- Multi-user compatible.
- Custom QListView that automatically sorted numbers and alphanumerics correctly.
- Populate QStringList or QListView with artists, titles, tracks or categories.
- Simple statistical functions (sums).
KmusicdB:
- A clean and stable interface.
- Customizable main display.
- Customizable startup options. Customizable defaults for artists, titles, databases, CDDB, etc.
- Flexible design, most popups are implemented non-modal.
- Adding, editing or deleting artists.
- Adding, editing, deleting titles (including album cover pic).
- Adding, editing or deleting tracks. Easy to use editor. Lyric support.
- Add/edit/delete boxset/format/genre/label/method/type/bands to explore. (Type is for Single, LP, etc., Format is for MiniDisc, DVD, CD, Vinyl, etc., Method is Live, Studio, etc.)
- Ability to generate customizable reports (sort, colors, restrict by collected, not collected, dates, font)
- Reports include: Artist, Collection, Date Range, Bands To Explore, Statistics, Tracks By Title, Titles By Artist, Top Titles and Custom
- The statistics report has a LOT of information on your database, including sums of artists, titles, tracks and length of tracks. Also included a listing of each category
- Also are 2 methods of searching your database.
- CDDB support (CDDBP, HTTP and proxy) to automatically add, submit and update your CDs via the internet.
- CDDB searching if you do not have the CD or its on another media.
- Local CDDB lookup via KSCD.
<<lessKmusicdB enables you to take your collection of music (CDs, vinyl, whatever) and organize it for browsing and searching. KmusicdB has a variety of reports (see below). There is CDDB support (with search) which makes adding CDs a breeze. Its main goals are stability, speed, ease of use, and lots of features.
libdbmusic is the music database library which enables KmusicdB to perform actions on the database. It is available as a separate library for developers who are interested. libdbmusic is required to build KmusicdB.
Main features:
libdbmusic:
- Create and connect to any local or remote PostgreSQL database.
- Backup and restore databases.
- Add, retrieve, delete, update artists, titles, tracks and categories (boxset, format, genre, label, method, type).
- Lyrics.
- A separate reporting class for creating and running custom reports.
- Multi-user compatible.
- Custom QListView that automatically sorted numbers and alphanumerics correctly.
- Populate QStringList or QListView with artists, titles, tracks or categories.
- Simple statistical functions (sums).
KmusicdB:
- A clean and stable interface.
- Customizable main display.
- Customizable startup options. Customizable defaults for artists, titles, databases, CDDB, etc.
- Flexible design, most popups are implemented non-modal.
- Adding, editing or deleting artists.
- Adding, editing, deleting titles (including album cover pic).
- Adding, editing or deleting tracks. Easy to use editor. Lyric support.
- Add/edit/delete boxset/format/genre/label/method/type/bands to explore. (Type is for Single, LP, etc., Format is for MiniDisc, DVD, CD, Vinyl, etc., Method is Live, Studio, etc.)
- Ability to generate customizable reports (sort, colors, restrict by collected, not collected, dates, font)
- Reports include: Artist, Collection, Date Range, Bands To Explore, Statistics, Tracks By Title, Titles By Artist, Top Titles and Custom
- The statistics report has a LOT of information on your database, including sums of artists, titles, tracks and length of tracks. Also included a listing of each category
- Also are 2 methods of searching your database.
- CDDB support (CDDBP, HTTP and proxy) to automatically add, submit and update your CDs via the internet.
- CDDB searching if you do not have the CD or its on another media.
- Local CDDB lookup via KSCD.
Download (0.75MB)
Added: 2006-09-10 License: GPL (GNU General Public License) Price:
1140 downloads
cdmp3 0.5.0
cdmp3 uses cdparanoia or cdda2wav to extract single tracks or even a whole CD and converts them on-the-fly into MP3 or Ogg Vorbi more>>
cdmp3 uses cdparanoia or cdda2wav to extract single tracks or even a whole CD and converts them on-the-fly into MP3 or Ogg Vorbis files. Using the CDDB database it is possible to include information like the artists name or the tracks title into the file name or as meta tags into the file content.
cdmp3 consists of a single perl script. Copy it to where ever you want it to reside, /usr/local/bin might be a good place. You might also want to create a symlink, named "cdogg", which points to cdmp3, so that by running cdogg, you preset cdmp3 to creating Ogg Vorbis files instead of MP3.
Additionally you will need the next packages, but this depends on the command line arguments you give to cdmp3:
cdparanoia http://www.xiph.org/paranoia/
cdda2wav ftp://ftp.berlios.de/pub/cdrecord/ (package cdrtools)
lame http://www.mp3dev.org/
oggenc http://www.vorbis.com (package vorbis-tools)
CDDB_get perl module http://armin.emx.at/cddb/
bfr http://www.glines.org:8000/software/buffer.html
If you are running Debian, all these packages are provided by the Debian
project itself or by third parties.
Enhancements:
- converted cdmp3 to perl
- merged get_cddb into cdmp3 main script
- added "--print-cddb": fetch and print cddb entry, exit
- added %y and %g filename format patterns
- support two-digit track numbers (%0n and %0u)
- patterns are really handled printf(1)-like now
- more flexible command line arguments
<<lesscdmp3 consists of a single perl script. Copy it to where ever you want it to reside, /usr/local/bin might be a good place. You might also want to create a symlink, named "cdogg", which points to cdmp3, so that by running cdogg, you preset cdmp3 to creating Ogg Vorbis files instead of MP3.
Additionally you will need the next packages, but this depends on the command line arguments you give to cdmp3:
cdparanoia http://www.xiph.org/paranoia/
cdda2wav ftp://ftp.berlios.de/pub/cdrecord/ (package cdrtools)
lame http://www.mp3dev.org/
oggenc http://www.vorbis.com (package vorbis-tools)
CDDB_get perl module http://armin.emx.at/cddb/
bfr http://www.glines.org:8000/software/buffer.html
If you are running Debian, all these packages are provided by the Debian
project itself or by third parties.
Enhancements:
- converted cdmp3 to perl
- merged get_cddb into cdmp3 main script
- added "--print-cddb": fetch and print cddb entry, exit
- added %y and %g filename format patterns
- support two-digit track numbers (%0n and %0u)
- patterns are really handled printf(1)-like now
- more flexible command line arguments
Download (0.013MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1185 downloads
Encod 0.3.0
Encod is a program that allows one to extract tracks from audio CDs and encode them into an audio format like Ogg Vorbis. more>>
Encod is a program that allows one to extract tracks from audio CDs and encode them into an audio format like Ogg Vorbis. If you have Encod making part of another package, read the documentation in the top level source directory first to see if you need to compile Encod seperately.
Encod ! is distributed under the GNU Library General Public License, included in this package under the top level source directory in the file LICENSE.
Enhancements:
- Switch Encod methods for cd access and cddb by code for a CDPlayer use and Cddb use
<<lessEncod ! is distributed under the GNU Library General Public License, included in this package under the top level source directory in the file LICENSE.
Enhancements:
- Switch Encod methods for cd access and cddb by code for a CDPlayer use and Cddb use
Download (0.12MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1191 downloads
abcde 2.2.0
abcde is a better CD encoder. more>>
abcde is a frontend to cdparanoia, wget, cd-discid, id3, and your favorite Ogg Vorbis (the default), MP3, FLAC, Ogg Speex, or MPP (Musepack) encoder.
It grabs an entire CD and converts each track to the desired format, then comments or ID3-tags each file, all with one command.
It supports multiple output in a single CD read, the creation of a single track from a CD, resume operation, CD concatenation, volume normalization, gapless encoding (with LAME), parallelization, SMP, proxies, customizable filename organization and munging, playlist generation, distributed encoding via distmp3, and more.
Enhancements:
- Added support for MPP/MP+(Musepack) encoding. Although I am trying to
get 2.2 for Debian Sarge release, mpc seems safe enough to introduce. See
corecodec.org for code.
- Some POSIX shell corrections (making the code more portable). Thanks to
Guillem Jover for pointing the problem out.
- CDYEAR is also passed to do_move(), so one can use it for sorting the
directories.
- Small MacOS X fix, allowing directories with "()" to work. Thanks to Evan
Jones.
- On the MacOS X, I still do not know if abcde works correctly. If does
not, please, drop a note. Or else.
- DOSPLAYLIST also changes "/" with "".
- DATA tracks are now excluded from the ripping process using internally
the cdparanoia "-Q" query option. If using another ripper, it does not
work (at least there is no support for them in abcde)
(Closes: #112692, #117412).
- New "0" choice for "None of the above" has been introduced. If selected, a
template is created and the user encouraged to edit it (Closes: #147683).
- New options for when the PLAYLIST already exists: erase, append or keep.
- Bug fixes along the code:
- abcde.1 corrections and additions
- abcde corrections and code reorganization. abcde now exits earlier if
some of the options are incompatible. Also the actions are set as
variables earlier, so we use less calls to external tools.
- abcde.conf additions
- The GENRE is munged now in its own mungegenre function, so that no more
upper-to-lowercase is done (forced) except if the default is used.
- Examples added to the tarball and /usr/share/doc/abcde/examples with two
scripts to make abcde kind-of-a ripper daemon.
- Changed to experimental to have an stable 2.1.x version in Sarge.
- Add CDDB information to Ogg/Vorbis and FLAC files (Closes: #265358).
- Added INTERACTIVE option. Set it to "n" and there you go, without user
interaction.
- Changes normalize to normalize-audio (Closes: #267053)
- Copes with wav files being erased by the ripping tool.
- Small patch to support ()s in the path under MacOSX. Thanks to Evan Jones
for noticing and sending the patch.
- Added -w for COMMENT seed. Used to give a comment to a given CD.
- Option "-t " added to modify the numbering from a starting point
(Closes: #95828). Geez! That is low bug number...
- Added -T to modify also the tag entries on the songs. Currently available
for FLAC and Ogg/Vorbis.
- Removes trailing spaces (Closes: #280382).
- TRACKNAME now combines multi-lines from long CDDB entries.
- debian/rules:
- s/dh_installmanpages/dh_installman/
<<lessIt grabs an entire CD and converts each track to the desired format, then comments or ID3-tags each file, all with one command.
It supports multiple output in a single CD read, the creation of a single track from a CD, resume operation, CD concatenation, volume normalization, gapless encoding (with LAME), parallelization, SMP, proxies, customizable filename organization and munging, playlist generation, distributed encoding via distmp3, and more.
Enhancements:
- Added support for MPP/MP+(Musepack) encoding. Although I am trying to
get 2.2 for Debian Sarge release, mpc seems safe enough to introduce. See
corecodec.org for code.
- Some POSIX shell corrections (making the code more portable). Thanks to
Guillem Jover for pointing the problem out.
- CDYEAR is also passed to do_move(), so one can use it for sorting the
directories.
- Small MacOS X fix, allowing directories with "()" to work. Thanks to Evan
Jones.
- On the MacOS X, I still do not know if abcde works correctly. If does
not, please, drop a note. Or else.
- DOSPLAYLIST also changes "/" with "".
- DATA tracks are now excluded from the ripping process using internally
the cdparanoia "-Q" query option. If using another ripper, it does not
work (at least there is no support for them in abcde)
(Closes: #112692, #117412).
- New "0" choice for "None of the above" has been introduced. If selected, a
template is created and the user encouraged to edit it (Closes: #147683).
- New options for when the PLAYLIST already exists: erase, append or keep.
- Bug fixes along the code:
- abcde.1 corrections and additions
- abcde corrections and code reorganization. abcde now exits earlier if
some of the options are incompatible. Also the actions are set as
variables earlier, so we use less calls to external tools.
- abcde.conf additions
- The GENRE is munged now in its own mungegenre function, so that no more
upper-to-lowercase is done (forced) except if the default is used.
- Examples added to the tarball and /usr/share/doc/abcde/examples with two
scripts to make abcde kind-of-a ripper daemon.
- Changed to experimental to have an stable 2.1.x version in Sarge.
- Add CDDB information to Ogg/Vorbis and FLAC files (Closes: #265358).
- Added INTERACTIVE option. Set it to "n" and there you go, without user
interaction.
- Changes normalize to normalize-audio (Closes: #267053)
- Copes with wav files being erased by the ripping tool.
- Small patch to support ()s in the path under MacOSX. Thanks to Evan Jones
for noticing and sending the patch.
- Added -w for COMMENT seed. Used to give a comment to a given CD.
- Option "-t " added to modify the numbering from a starting point
(Closes: #95828). Geez! That is low bug number...
- Added -T to modify also the tag entries on the songs. Currently available
for FLAC and Ogg/Vorbis.
- Removes trailing spaces (Closes: #280382).
- TRACKNAME now combines multi-lines from long CDDB entries.
- debian/rules:
- s/dh_installmanpages/dh_installman/
Download (0.07MB)
Added: 2005-05-10 License: GPL (GNU General Public License) Price:
1629 downloads
cdgtools 0.3
cdgtools are tools for handling and ripping CD+G karaoke disks. more>>
cdgtools are tools for handling and ripping CD+G karaoke disks.
Main features:
- Rips CD+G karaoke disks using cdrdao
- Encodes the tracks to MP3+G files
- Gets track names from FreeDB/CDDB
- Includes GUI and command-line tools
<<lessMain features:
- Rips CD+G karaoke disks using cdrdao
- Encodes the tracks to MP3+G files
- Gets track names from FreeDB/CDDB
- Includes GUI and command-line tools
Download (0.023MB)
Added: 2005-11-20 License: GPL (GNU General Public License) Price:
1436 downloads
dagrab 0.3.5
Dagrab is a program for reading audio tracks from a cdrom drive into wav sound files. more>>
Dagrab is a program for reading audio tracks from a cdrom drive into wav sound files. It should work with any cdrom drive,provided that digital audio extraction is supported from both the drive and its linux driver, but is only tested and works with IDE cdroms.
If your cd is not IDE, you better try out other programs, like cdparanoia (all cd brands) or cdda2wav (SCSI and IDE only); they re both free and available on the net; cdparanoia should be the best one, but I didnt try it out enough yet.
Dagrab is released under the GNU GPL software license.
Main features:
- Extracts digital audio from CD to wav files, with no analog processing.
- CDDB support (only CDDBP, no HTTP) with optional track naming
- Jitter correction (cdparanoia should be much better at it)
- Can run a command on each track (useful for filtering, mp3 encoding and so on)
- Can use CDDB information in both the track name and filter command.
- Includes a script to automatically generate mp3 files from a cd using gogo and adds title, author (when available) and album title ID3 tags to them (requires MPEG::MP3Info to do that).
<<lessIf your cd is not IDE, you better try out other programs, like cdparanoia (all cd brands) or cdda2wav (SCSI and IDE only); they re both free and available on the net; cdparanoia should be the best one, but I didnt try it out enough yet.
Dagrab is released under the GNU GPL software license.
Main features:
- Extracts digital audio from CD to wav files, with no analog processing.
- CDDB support (only CDDBP, no HTTP) with optional track naming
- Jitter correction (cdparanoia should be much better at it)
- Can run a command on each track (useful for filtering, mp3 encoding and so on)
- Can use CDDB information in both the track name and filter command.
- Includes a script to automatically generate mp3 files from a cd using gogo and adds title, author (when available) and album title ID3 tags to them (requires MPEG::MP3Info to do that).
Download (0.017MB)
Added: 2006-07-17 License: GPL (GNU General Public License) Price:
1194 downloads
C-Cramp 2DR1
C-Cramp project is an interface to MySQL for managing information for small radio stations. more>>
C-Cramp project is an interface to MySQL for managing information for small radio stations.
C-Cramp (the C-Cramp College Radio Audio Management Program) is a Web-based frontend to MySQL for managing the types of things that small radio stations might need: audio files, data, and "metadata"; DJ and staff information, schedules, live music and program logs, and all sorts of other data.
Currently, a cross-platform PHP application is the focus of the project, but more features and types of programs are planned that will hopefully enable easier playback, storage, loading, and entering for all types of applicable data.
Enhancements:
- doesnt require a faulty cddb-connected program that doesnt exist
- easier manual data entry for albums / tracks
- its possible now to add promoters/traffic events/non-new CDs/users
- A rudimentary Search function is implimented!
- Some preliminary stats functions work alright!
- Viewing of albums by promoter with heavy/medium/light rating
- md5-encrypted passwords for users
- updated a lot of old code
- prepared for eventual "theming" capabilities
- and a whole lot more!
<<lessC-Cramp (the C-Cramp College Radio Audio Management Program) is a Web-based frontend to MySQL for managing the types of things that small radio stations might need: audio files, data, and "metadata"; DJ and staff information, schedules, live music and program logs, and all sorts of other data.
Currently, a cross-platform PHP application is the focus of the project, but more features and types of programs are planned that will hopefully enable easier playback, storage, loading, and entering for all types of applicable data.
Enhancements:
- doesnt require a faulty cddb-connected program that doesnt exist
- easier manual data entry for albums / tracks
- its possible now to add promoters/traffic events/non-new CDs/users
- A rudimentary Search function is implimented!
- Some preliminary stats functions work alright!
- Viewing of albums by promoter with heavy/medium/light rating
- md5-encrypted passwords for users
- updated a lot of old code
- prepared for eventual "theming" capabilities
- and a whole lot more!
Download (0.93MB)
Added: 2006-10-28 License: GPL (GNU General Public License) Price:
1092 downloads
cdevour 1.01
cdevour is a set of scripts designed to make CD ripping painless. more>>
cdevour script is designed to make CD ripping painless. Aside from swapping discs, it aims for as little user interaction as possible. Drives are continually polled for discs. Upon finding a disc in a drive, it determines what CD it is, makes sure it has enough disk space, and rips.
Names are retrieved from CDDB and the disc is ejected when finished. CDs that have already been ripped are ejected immediately, and when there is not enough disk space, the script waits until there is.
A separate encoding script encodes files into Ogg Vorbis in the background. Encoded files are tagged and renamed. Another script can move albums into a music directory automatically.
Main features:
- continually polls your cdrom drives for discs
- determines what CD it is
- ejects a CD if it has already been ripped
- rips your cds, making sure it has enough disk space to do so
- monitors disk usage of running rips
- queues discs for ripping when not enough disk space is available
- gets all the information it needs to name your rips later
- ejects when finished with a CD
- applies cheese or peanut butter spread to discs if desired
cdevour also spawns its own separate encoding script which:
- encodes any finished rips into ogg vorbis, one track at a time
- removes raw data when finished with a track to save disk space
- tags the encoded file with artist, album, track number, title
- renames the file (by default, to my personal liking)
- moves encodes of finished albums to an artist/album directory structure
<<lessNames are retrieved from CDDB and the disc is ejected when finished. CDs that have already been ripped are ejected immediately, and when there is not enough disk space, the script waits until there is.
A separate encoding script encodes files into Ogg Vorbis in the background. Encoded files are tagged and renamed. Another script can move albums into a music directory automatically.
Main features:
- continually polls your cdrom drives for discs
- determines what CD it is
- ejects a CD if it has already been ripped
- rips your cds, making sure it has enough disk space to do so
- monitors disk usage of running rips
- queues discs for ripping when not enough disk space is available
- gets all the information it needs to name your rips later
- ejects when finished with a CD
- applies cheese or peanut butter spread to discs if desired
cdevour also spawns its own separate encoding script which:
- encodes any finished rips into ogg vorbis, one track at a time
- removes raw data when finished with a track to save disk space
- tags the encoded file with artist, album, track number, title
- renames the file (by default, to my personal liking)
- moves encodes of finished albums to an artist/album directory structure
Download (0.010MB)
Added: 2006-06-07 License: MIT/X Consortium License Price:
1235 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above cddb search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed