Popularity
3.3
Declining
Activity
0.0
Stable
2
2
1
Monthly Downloads: 14
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.
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of mikmod or a related project?
Popular Comparisons
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