Popularity
1.9
Declining
Activity
0.0
Stable
2
2
1

Monthly Downloads: 20
Programming language: Haskell
License: LicenseRef-LGPL
Tags: Sound     Multimedia    
Latest version: v0.2.0.1

mikmod alternatives and similar packages

Based on the "Sound" category.
Alternatively, view mikmod alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of mikmod or a related project?

Add another 'Sound' Package

README

Haskell bindings to MikMod, an Open Source, multi-platform library for playback of tracker music and sound effects.

For more information about using this library see the haddock API documentation.

import Control.Concurrent (threadDelay)
import Control.Monad.Loops (whileM_)
import Sound.MikMod

main = do
  mikmodSetup 16
  tape <- playerLoad "rockin.mod" 64 NotCurious
  playerStart tape
  whileM_ playerActive $ do
    mikmodUpdate
    threadDelay 10000
  playerFree tape
  mikmodExit