https://github.com/jpcima/faustmd
Static metadata generator for Faust/C++
https://github.com/jpcima/faustmd
audio cpp dsp faust metadata
Last synced: 6 months ago
JSON representation
Static metadata generator for Faust/C++
- Host: GitHub
- URL: https://github.com/jpcima/faustmd
- Owner: jpcima
- License: bsl-1.0
- Created: 2019-03-30T16:56:45.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-20T10:47:41.000Z (over 6 years ago)
- Last Synced: 2025-07-20T22:37:40.416Z (9 months ago)
- Topics: audio, cpp, dsp, faust, metadata
- Language: C++
- Size: 110 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# faustmd
Static metadata generator for Faust/C++
## Description
This program builds the metadata for a Faust DSP ahead of time, rather than dynamically.
The result is a block of C++ code which can be appended to the code generation.
## Typical usage
```
faust -uim MyProcessor.dsp -a MyArchitecture.cpp > MyProcessor.cpp
faustmd MyProcessor.dsp >> MyProcessor.cpp
```
It will probably require the flag `-uim` to make the instance variables accessible.
**Note** if optimization flags are used, faustmd must be aware of these, or the generation may not match.
You can pass faust flags to faustmd by using the `-X` argument.
```
faust -double -vec ...
faustmd -X-double -X-vec ...
```
## Features
- general information
- description of controls and signals
- control ranges, units and scales
- getters and setters of control values by method or index