libdiscid: Difference between revisions

From MusicBrainz Wiki
Jump to navigationJump to search
(→‎Language Bindings: Move Zastai's .NET implementations to the below included section: https://wiki.musicbrainz.org/index.php?title=Disc_ID_Calculation/Libraries/Third_Party&oldid=77108)
m (→‎Language Bindings: Update formatting)
Line 66: Line 66:
** ''[[python-musicbrainz2]], deprecated, contains functions to access libdiscid using its own API, Python 2 only, no ISRCs''
** ''[[python-musicbrainz2]], deprecated, contains functions to access libdiscid using its own API, Python 2 only, no ISRCs''
* Haskell - [http://hackage.haskell.org/package/MusicBrainz-libdiscid Hackage] ([https://github.com/atwupack/MusicBrainz-libdiscid GitHub])
* Haskell - [http://hackage.haskell.org/package/MusicBrainz-libdiscid Hackage] ([https://github.com/atwupack/MusicBrainz-libdiscid GitHub])
* .NET/Mono - [https://github.com/phw/dotnet-discid DotNetDiscId]: bindings using a native libdiscid DLL ([https://www.nuget.org/packages/DotNetDiscId NuGet Package])
* .NET/Mono
** [https://github.com/phw/dotnet-discid DotNetDiscId]: bindings using a native libdiscid DLL ([https://www.nuget.org/packages/DotNetDiscId NuGet Package])
* Rust:
* Rust:
** rust-discid: [https://crates.io/crates/discid Crate] ([https://git.sr.ht/~phw/rust-discid SourceHut]), safe wrapper around rust-discid-sys
** rust-discid: [https://crates.io/crates/discid Crate] ([https://git.sr.ht/~phw/rust-discid SourceHut]), safe wrapper around rust-discid-sys

Revision as of 10:12, 28 October 2023

Products > libdiscid

libdiscid is a C library for creating MusicBrainz and freedb disc IDs from audio CDs. It reads a CD's table of contents (TOC) and generates an identifier which can be used to lookup the CD at MusicBrainz. Additionally, it provides a submission URL for adding the disc ID to the database and gathers ISRCs and the MCN (=UPC/EAN) from disc.

The interface of this library is new, but the disc ID algorithm and the operating system dependent CD-ROM/DVD-ROM access code have been ported from libmusicbrainz version 2.

For more info about the interface read the API documentation. The repository is at GitHub and bugs should be reported at the MusicBrainz bug tracker.

libdiscid is licensed under the GNU Lesser General Public License 2.1 or later.

Download

Source code:

Compiled packages:

Changes:

Feature Matrix

Linux Windows macOS (k)FreeBSD Open/NetBSD Haiku Solaris generic
read mcn isrc read mcn isrc read mcn isrc read mcn isrc read mcn isrc read read put
libdiscid 0.1.0
libdiscid 0.2.0
libdiscid 0.3.0
libdiscid 0.3.1
libdiscid 0.4.0
libdiscid 0.6.2
libdiscid 0.6.3

The "read" feature can create an ID from a disc in the drive. Generic platform support was added in 0.4.0 and can only generate disc IDs with put() (without drive access). Put is also available for every platform where read is available. Only versions where new feature/platform support is implemented are listed.

Language Bindings

Tools based on libdiscid

  • ISRC#Resources, many ISRC submit tools are based on libdiscid or one of the bindings and can be used to add disc IDs and ISRCs.
  • Picard uses libdiscid to calculate the disc ID (lookup by CD)

Third party alternatives

  • C#/Mono/.NET - MetaBrainz.MusicBrainz.DiscId (NuGet Package), a library which adds support for CD-TEXT retrieval, but does not currently support Solaris (no recent Mono, no .NET Core) or macOS (no machine available)