name: conduit-audio
version: 0.2
author: Michael Tolly
maintainer: miketolly@gmail.com
license: LGPL
license-file: LICENSE
category: Sound
build-type: Simple
cabal-version: >= 1.10
homepage: http://github.com/mtolly/conduit-audio
bug-reports: http://github.com/mtolly/conduit-audio/issues
synopsis: Combinators to efficiently slice and dice audio streams
description:
@conduit-audio@ applies @conduit@'s streaming data abilities
to efficiently manipulate audio files and streams.
Simple combinator functions let you mix files together,
cut and paste sections of audio,
and apply more complicated transformations like resampling or timestretching,
all with the following properties:
.
* Tiny memory usage, proportional only to the number of simultaneous sources\/effects
.
* Uses no temporary files; everything is done in one pass
.
* Blazing fast! (for most uses)
library
exposed-modules:
Data.Conduit.Audio
build-depends:
base >= 4.6 && < 4.9
, conduit
, vector
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -O2
source-repository head
type: git
location: http://github.com/mtolly/conduit-audio