Wolfgang Stöggl 1d3261a898 Sort selected target frameworks to avoid warnings
Sort TargetFrameworks in the following projects with net20 first,
to avoid warnings from CUETools.CTDB.EACPlugin:
  CUETools.AccurateRip, CUETools.CDImage, CUETools.CTDB,
  CUETools.CTDB.Types, CUETools.Codecs, CUETools.Parity
Change order:
  <TargetFrameworks>net47;net20;netstandard2.0</TargetFrameworks>
  ->
  <TargetFrameworks>net20;net47;netstandard2.0</TargetFrameworks>

- Fixes the following warnings after opening CUETools.sln
  in Visual Studio, e.g.:
  The referenced project 'CUETools.AccurateRip' is targeting a higher
  framework version (4.7) than this project’s current target framework
  version (2.0). This may lead to build failures if types from
  assemblies outside this project’s target framework are used by any
  project in the dependency chain. Project: CUETools.CTDB.EACPlugin
2020-01-30 16:15:07 +01:00
2018-07-02 08:36:55 -04:00
2020-01-29 08:31:11 +01:00

CUETools

CUETools is a tool for lossless audio/CUE sheet format conversion. The goal is to make sure the album image is preserved accurately. A lossless disc image must be lossless not only in preserving contents of the audio tracks, but also in preserving gaps and CUE sheet contents. Many applications lose vital information upon conversion, and don't support all possible CUE sheet styles. For example, foobar2000 loses disc pre-gap information when converting an album image, and doesn't support gaps appended (noncompliant) CUE sheets.

Supported formats

Supports WAV, FLAC, APE, LossyWAV, ALAC, TTA, and WavPack audio input/output. Audio must be 16-bit, 44.1kHz samples stereo (i.e. CD PCM). Supports every CUE sheet style (embedded, single file, gaps appended/prepended/left out). It is also possible to process a set of audio files in a directory without a CUE sheet, or use a RAR archive as an input without unpacking it.

CUERipper

CUERipper is a utility for extracting digital audio from CDs, an open-source alternative to EAC. It has a lot fewer configuration options, so is somewhat easier to use, and is included in CUETools package. It supports MusicBrainz and freeDB metadata databases, AccurateRip and CTDB.

Installing

Prebuilt binaries can be downloaded from CUETools Download.

Installing from sources

  • Get the CUETools sources from GitHub (https://github.com/gchudov/cuetools.net):
    git clone https://github.com/gchudov/cuetools.net.git
  • Get the required submodules using:
    git submodule update --init --recursive
  • Get the FFmpeg.AutoGen sources from GitHub (https://github.com/Ruslan-B/FFmpeg.AutoGen):
    git clone https://github.com/Ruslan-B/FFmpeg.AutoGen.git
  • The solution can be built using Microsoft Visual Studio 2017 or newer (Community Edition will work)
    • Install the required .NET framework development tools (currently 4.7)
    • Install an appropriate Windows SDK version (currently 10.0.16299.0)
    • Install the Microsoft Visual Studio Installer Projects
  • Optional: Install NASM and add it to your PATH. This is required for building the 32-bit flac plugin.
  • Open cuetools.net\CUETools\CUETools.sln
  • Select 'Any CPU' under 'Solution Platforms'
  • Build solution
Description
CD image processing suite with optimized lossless encoders in C#
Readme 33 MiB
Languages
C# 87.9%
C 6.8%
C++ 2.2%
Clean 1.3%
Cuda 1.2%
Other 0.6%