Skip to content

larjo/MixView

Repository files navigation

Mixmeister Playlist Viewer

This is a simple program that parses Mixmeister playlists, which is a type of RIFF-file, into a stream of tokens.

There are two structures that the RIFF-file can be parsed into: A flat structure, equvalent to RiffChunks = List(Data|List)*

data Chunk = DataChunk Data
           | ListChunk List

data RiffChunks = RiffChunks List [Chunk]

and a tree structure:

data Tree = Leaf Data
          | Node Riff

data Riff = Riff Format [Tree]

About

Mixmeister Playlist Viewer

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published