All Projects → Seanitzel → Note-Art

Seanitzel / Note-Art

Licence: MIT license
🎸 Music Theory in Code.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Note-Art

React Native Track Player
A fully fledged audio module created for music apps. Provides audio playback, external media controls, chromecast support, background mode and more!
Stars: ✭ 2,175 (+8600%)
Mutual labels:  music-library
chords
Text-based chord progression editor
Stars: ✭ 25 (+0%)
Mutual labels:  music-theory
ziffers
Numbered musical notation for composing algorithmic and generative melodies
Stars: ✭ 53 (+112%)
Mutual labels:  music-theory
Maloja
Self-hosted music scrobble database to create personal listening statistics and charts
Stars: ✭ 223 (+792%)
Mutual labels:  music-library
scalemap
a string format and API for musical scales in C, C++, and JavaScript
Stars: ✭ 16 (-36%)
Mutual labels:  music-theory
discoverweekly.dev
The playlists made by devs, every Wednesday.
Stars: ✭ 18 (-28%)
Mutual labels:  music-library
Rhythmbox
A Rhythm Box System for your iOS app written in Swift. 🎵
Stars: ✭ 116 (+364%)
Mutual labels:  music-library
mpdq
Automatic MPD "smart playlist" creator with minimal but hackable setup.
Stars: ✭ 18 (-28%)
Mutual labels:  music-library
Miles
Swift Playground that creates jazz improvisations (WWDC 2018)
Stars: ✭ 31 (+24%)
Mutual labels:  music-theory
Modulo7
A semantic and technical analysis of musical scores based on Information Retrieval Principles
Stars: ✭ 15 (-40%)
Mutual labels:  music-theory
I dropped my phone the screen cracked
web audio, cracked.
Stars: ✭ 245 (+880%)
Mutual labels:  music-library
arpeggio
A chord naming app for guitar written in React.
Stars: ✭ 49 (+96%)
Mutual labels:  music-theory
vue-music-player
🎵 basic music player, keeps your favorite musics
Stars: ✭ 77 (+208%)
Mutual labels:  music-library
Musikcube
a cross-platform, terminal-based music player, audio engine, metadata indexer, and server in c++
Stars: ✭ 2,663 (+10552%)
Mutual labels:  music-library
x-play
🎼 🎶 🎵 🎹 🎻 🎷 🎺 🎸
Stars: ✭ 23 (-8%)
Mutual labels:  music-library
Beets
music library manager and MusicBrainz tagger
Stars: ✭ 10,522 (+41988%)
Mutual labels:  music-library
musyn
Write music together, in real time.
Stars: ✭ 20 (-20%)
Mutual labels:  music-theory
react-orchestra
A declarative toolbox to build interactive musical instruments on web and mobile.
Stars: ✭ 72 (+188%)
Mutual labels:  music-theory
octave-compass
A tool for exploring musical scales and chords
Stars: ✭ 21 (-16%)
Mutual labels:  music-theory
Spontini
A text-combined-with-graphic music editor for creating professional scores with LilyPond
Stars: ✭ 43 (+72%)
Mutual labels:  music-library

Note-Art JS 🎸

🔥 Downloads   Build Status   Maintainability   Test Coverage   License: MIT 🔥

Demo (outdated) 🎵 | API 📘

Music is a highly versatile art that originates in nature, and has been taken up by mankind as a way of expression and also as an art. Now, it's going to be taken up by machines as well.


Table of Contents

About

  • Create Notes, Chords, Scales and more easily.
  • Designed to be simple and intuitive.
  • Easily integrate with other music libraries to play music in the browser - You can use libraries like ToneJS to easily play scales, chords and even scores you create with Note-Art.
  • Use this library to create tools for musicians, research music theory, just create some fun music with programming and much more!

Features

  1. Transpose, generate chords and scales easily, invert chords.
  2. Tons of music theory utilities, e.g getting the interval between 2 notes, normalizing notes, getting the enharmonic pitch class, converting sharps to flats and a lot more.

Getting Started

Installation:

# Using npm
npm install note-art

# Using yarn
yarn add note-art

Usage

Note-art is fully written in TS and offers functions that can achieve any music theory related task you desire.

Theory Functions

  • patterns are in semi-tones.
Transpose any pitch class, note or group of notes easily
import { transpose } from 'note-art'

// PitchClass

transpose('A', 5)  // 'D'

// Note

transpose('A3', 5)  // 'D4'

// Group of notes(can represent a chord, scale or anything else)

const notes = ['C3', 'E3', 'G3']

notes.map(note => transpose(note, 7)) // ['G3', 'B3', 'D4'] 
Other functions
import { noteFromFrequency, intervalsToNotes, invertChord };

noteFromFrequency(440) // A4

const majorChordPattern = [0, 4, 7];
const cMajorChord = intervalsToNotes('C3', majorChordPattern) // ['C3', 'E3', 'G3']

const cMajorFirstInversion = invertChord(cMajorChord, 1); // ['E3', 'G3', 'C4']

Check out the API for more.

Contribute and Support 🙏

  • Make a pull request 🥑.

    • Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

      1. Fork the Project
      2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
      3. Commit your Changes (`git commit -m 'Add some AmazingFeature`)
      4. Push to the Branch (`git push origin feature/AmazingFeature`)
      5. Open a Pull Request
      
  • Support me on patreon.

  • Download my app on the google play store

    • Music Guru - which can generate and play any scale in the history of mankind on google play.

Todo:

  • Create music theory functions - pitch class, note, chord, etc... ✔️

  • Re-implement Music notation.

Contact

Sean Dvir - [email protected] - @seanitzel

Your welcome to mail me your ideas and recommendations!

License

Note-Art uses the MIT license, check out the license tab for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].