This is a summary of the "Learn You A Haskell" online book under http://learnyouahaskell.com/chapters.
- Haskell is a functional programming language.
| #!/usr/bin/env python2 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Used to convert Audacity labels in .txt form on .WAV files into | |
| single 32-bit float .WAV with CUE markers within the file, directly | |
| compatible with the Make Noise Morphagene. | |
| Does not require input file to be 48000Hz, only that the Audacity label matches | |
| the .WAV file that generated it, and that the input .WAV is stereo. | |
| See the Morphagene manual for naming conventions of output files: |
This is a summary of the "Learn You A Haskell" online book under http://learnyouahaskell.com/chapters.