Code Monkey home page Code Monkey logo

midi-converter's Introduction

MIDI Converter

A simple tool that converts MIDI files to QWERTY sheets for playing on your favorite VP platform.

Available at https://arijanj.github.io/midi-converter.


Setup

$ npm install   # then 
$ npm run dev   # to watch & reload or 
$ npm run build # to build static site

Deploying to GitHub pages

$ npm run build # before pushing public/

Further reading

If you're interested in VP, you can check out the following resources:

midi-converter's People

Contributors

arijanj avatar albacusphetical avatar

Stargazers

 avatar

Watchers

 avatar

midi-converter's Issues

OOR separator can take some uppercase letters

In the latest change to oor notation, I didn't think ๐Ÿ™ƒ to add in a check to make sure separators can't take in any letters at all. It currently restricts only letters in the vp scale from use.

This might be a problem in the future for auto that works with sheets.

Quick fix:

Go to this line: https://github.com/ArijanJ/midi-converter/blob/865399423d1876aae8686a52e6cd402881570320/src/components/SheetOptions.svelte#L125C1-L129C22

check that val.data is an uppercase character or underscore since that's used for missing notes too

OOR chord start position, visual aid is only for the first oor in the start

You can currently get chords like this [:3'tuos] when it should be [:3t'uos]

My bad ๐Ÿ™ƒ

Quick fix:

const isFirstStartOor = note === startOors[0];

replace with:

const [isFirstStartOor, isLastStartOor] = [note === startOors[0], note === startOors[startOors.length - 1]];

then

res += `<span style="display:inline-block; font-weight: 900">${note.char}${isFirstStartOor && nonOors.length > 0 ? "'" : ""}</span>`

replace with:

res += `${note.char}${isLastStartOor && nonOors.length > 0 ? "'" : ""}`

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.