cue-sheet: Support for construction, rendering, and parsing of CUE sheets

[ audio, bsd3, library ] [ Propose Tags ]

Support for construction, rendering, and parsing of CUE sheets.


[Skip to Readme]

Flags

Manual Flags

NameDescriptionDefault
dev

Turn on development settings.

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0, 0.1.1, 1.0.0, 1.0.1, 2.0.0, 2.0.1, 2.0.2
Change log CHANGELOG.md
Dependencies base (>=4.8 && <5.0), bytestring (>=0.10.8 && <0.12), containers (>=0.5 && <0.7), exceptions (>=0.6 && <0.11), megaparsec (>=7.0 && <10.0), mtl (>=2.0 && <2.3), QuickCheck (>=2.4 && <3.0), semigroups (>=0.18 && <0.19), text (>=0.2 && <1.3) [details]
License BSD-3-Clause
Author Mark Karpov <markkarpov92@gmail.com>
Maintainer Mark Karpov <markkarpov92@gmail.com>
Revised Revision 4 made by mrkkrp at 2022-05-21T07:16:13Z
Category Audio
Home page https://github.com/mrkkrp/cue-sheet
Bug tracker https://github.com/mrkkrp/cue-sheet/issues
Source repo head: git clone https://github.com/mrkkrp/cue-sheet.git
Uploaded by mrkkrp at 2019-01-29T20:46:20Z
Distributions LTSHaskell:2.0.2, NixOS:2.0.2, Stackage:2.0.2
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 4490 total (20 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2019-01-29 [all 1 reports]

Readme for cue-sheet-2.0.1

[back to package description]

CUE sheet

License BSD3 Hackage Stackage Nightly Stackage LTS Build Status

The library allows to construct, render, and parse CUE sheets.

What is CUE sheet?

A cue sheet, or cue file, is a metadata file which describes how the tracks of a CD or DVD are laid out. Cue sheets are stored as plain text files and commonly have a “.cue” filename extension. CDRWIN first introduced cue sheets, which are now supported by many optical disc authoring applications and media players.

Read more on Wikipedia. The description of the format can be found here, scroll to the appendix A (it's closest we get to a “specification”).

Quick start

Read the Haddocks. In short, you parse a CueSheet with parseCueSheet function and render a CueSheet with renderCueSheet function—pretty straightforward, eh? Of course, you still can construct a CueSheet manually. The data types are defined in such a way that incorrect CUE sheets are impossible to represent.

Contribution

Issues, bugs, and questions may be reported in the GitHub issue tracker for this project.

Pull requests are also welcome and will be reviewed quickly.

License

Copyright © 2016–2019 Mark Karpov

Distributed under BSD 3 clause license.