Extract audio and cue sheet from an NRG audio CD image.
Go to file
Matteo Cypriani 9f29662cbf Implement --no-strip-subchannel 2018-05-05 23:39:54 +02:00
src Implement --no-strip-subchannel 2018-05-05 23:39:54 +02:00
tests Add minimalistic integration tests 2016-12-08 13:03:33 -05:00
.gitignore Add .gitignore 2016-12-06 15:06:35 -05:00
COPYING Add copyright & license 2016-12-06 22:52:31 -05:00
Cargo.lock cargo update 2018-05-05 23:39:47 +02:00
Cargo.toml Use getopts to parse command-line 2016-12-08 20:57:28 -05:00
README.md README: update Usage & title 2016-12-08 21:24:05 -05:00

README.md

NRGrip - extract audio data and cue sheet from an NRG audio CD image

This program works on a Nero Burning ROM's NRG image of an audio CD and is able to:

  • read and display its metadata;

  • extract the cue sheet;

  • extract the raw audio tracks as one single file, which can then be encoded by the user to a more convenient audio format such as FLAC, and possibly split according to the cue sheet.

For now, only NRG v2 is handled (not NRG v1), and not all of the metadata chunks are decoded. If you have interest in adding support for additional chunks or formats and have a test image handy, please contact the author or open a ticket. In particular, it would be interesting to support ISRC/CD-Text; handling of multisession and hybrid (audio and data) discs would also be a nice feature.

NRGrip is licensed under the terms of the Expat (MIT) license. See the COPYING file.

Installing

NRGrip is written in Rust. Make sure Cargo is installed on your system, then:

cargo build --release
cargo install

Usage

To see the full usage, run:

nrgrip --help

Basically, you can display the metadata and extract the data with:

nrgrip -ix image.nrg

The cue sheet will be extracted as image.cue, and the audio data as image.raw.

The raw audio data from a CD is 16 bit, little endian, 44100 Hz, stereo. To play it, you may use, for instance, aplay from the ALSA utils, or ffplay from FFmpeg:

aplay -f cd image.raw
ffplay -f s16le -ac 2 image.raw

Note that you can also play the NRG file directly, if the sector size is 2352 (no sub-channel).

To encode the raw audio data to FLAC (and embed the cue sheet in it):

flac --endian=little --sign=signed --channels=2 --bps=16 \
  --sample-rate=44100 --cuesheet=image.cue image.raw

To split the FLAC file according to the cue sheet, you may use, cuetools and shntool:

cuebreakpoints image.cue | shnsplit -o flac image.flac

Or mp3splt:

mp3splt -c image.cue image.flac