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.11), containers (>=0.5.6.2 && <0.6), data-default-class, exceptions (>=0.6 && <0.9), megaparsec (>=5.1.1 && <6.0), mtl (>=2.0 && <3.0), QuickCheck (>=2.4 && <2.10), semigroups (>=0.18 && <0.19), text (>=0.2 && <1.3) [details]
License BSD-3-Clause
Author Mark Karpov <markkarpov@openmailbox.org>
Maintainer Mark Karpov <markkarpov@openmailbox.org>
Revised Revision 1 made by HerbertValerioRiedel at 2019-01-30T08:40:27Z
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 2016-12-18T11:19:52Z
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 2016-12-18 [all 1 reports]

Readme for cue-sheet-0.1.0

[back to package description]

CUE sheet

License BSD3 Hackage Stackage Nightly Stackage LTS Build Status Coverage 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 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.

License

Copyright © 2016 Mark Karpov

Distributed under BSD 3 clause license.