Make notes on how to use it
This commit is contained in:
parent
5daf2d0101
commit
fb3fc45a09
2 changed files with 11 additions and 1 deletions
|
@ -11,7 +11,7 @@ namespace MusicBoxConverter
|
||||||
public class MusicBoxScoreGenerator
|
public class MusicBoxScoreGenerator
|
||||||
{
|
{
|
||||||
public Vector2 offset { get; set; } = new Vector2(10, 10);
|
public Vector2 offset { get; set; } = new Vector2(10, 10);
|
||||||
public Vector2 scaleFactor { get; set; } = new Vector2(0.1f, 4f);
|
public Vector2 scaleFactor { get; set; } = new Vector2(0.03f, 4f);
|
||||||
|
|
||||||
public float holeSize { get; set; } = 1f;
|
public float holeSize { get; set; } = 1f;
|
||||||
|
|
||||||
|
|
10
README.md
10
README.md
|
@ -2,6 +2,16 @@
|
||||||
|
|
||||||
> Converts MIDI files into music box scores that are ready to print.
|
> Converts MIDI files into music box scores that are ready to print.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
1. Export the MuseScore file to a MIDI file
|
||||||
|
2. Run the MIDI file through this program.
|
||||||
|
3. Open the resulting SVG in Inkscape
|
||||||
|
4. Print the SVG to PDF
|
||||||
|
5. Open the resulting PDF in LibreOffice Draw
|
||||||
|
6. Print to your actual printer - tiling over multiple pages if required.
|
||||||
|
|
||||||
|
This somewhat convoluted process prevents anyone from automatically rescaling it along the way.
|
||||||
|
|
||||||
## Useful Links
|
## Useful Links
|
||||||
- [ffmpeg - showspectrumpic manual](https://ffmpeg.org/ffmpeg-filters.html#showspectrumpic)
|
- [ffmpeg - showspectrumpic manual](https://ffmpeg.org/ffmpeg-filters.html#showspectrumpic)
|
||||||
- [Frequency to Musical Note Converter](https://newt.phys.unsw.edu.au/music/note/)
|
- [Frequency to Musical Note Converter](https://newt.phys.unsw.edu.au/music/note/)
|
||||||
|
|
Loading…
Reference in a new issue