Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 526 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 526 Bytes

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]