Difference between revisions of "ALSA"

From HaskellWiki
Jump to navigation Jump to search
(added information from MIDI article)
(split package)
Line 1: Line 1:
The [http://www.alsa-project.org/main/index.php/Main_Page Advanced Linux Sound Architecture] can be addressed by currently two different projects:
+
The [http://www.alsa-project.org/main/index.php/Main_Page Advanced Linux Sound Architecture] is addressed by currently three different projects.
  +
* The following three packages were derived from the <code>alsa</code> package below
* <code>alsa</code>: Complete ALSA support (audio signals and MIDI), [http://code.haskell.org/alsa/ darcs repository]
 
* <code>alsa-midi</code>: ALSA sequencer support (aka MIDI), [http://darcs.haskell.org/alsa-midi/ darcs repository], [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/alsa-midi hackage], [http://open-projects.net/~shahn/index.php?seite=code old project page], note that this package is no longer supported in favor of the alsa package.
+
** [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/alsa-core alsa-core]: Core ALSA functionality, currently only ALSA exceptions
  +
** [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/alsa-pcm alsa-pcm]: audio signal input and output
  +
** [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/alsa-seq alsa-seq]: MIDI handling
  +
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/alsa alsa]: Complete ALSA support (audio signals and MIDI). The original [http://code.haskell.org/alsa/ darcs repository] has been converted to a [http://github.com/yav/alsa-haskell.git git repository], but there are some enhancements in [http://code.haskell.org/~thielema/alsa/ a private darcs repository]
  +
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/alsa-midi alsa-midi]: ALSA sequencer support (aka MIDI), [http://darcs.haskell.org/alsa-midi/ darcs repository], [http://open-projects.net/~shahn/index.php?seite=code old project page], note that this package is no longer supported in favor of the first mentioned package collection.
   
 
[[Category:Music]]
 
[[Category:Music]]

Revision as of 09:29, 9 July 2010

The Advanced Linux Sound Architecture is addressed by currently three different projects.