All Projects → Sarath18 → guitar-tabs-to-MIDI

Sarath18 / guitar-tabs-to-MIDI

Licence: other
A program that converts Guitar Tabs into MIDI files.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to guitar-tabs-to-MIDI

CliChords
[CliChords] Get ultimate-guitar.com guitar tabs and chords in your terminal - command line cli
Stars: ✭ 20 (-47.37%)
Mutual labels:  tabs, guitar, guitar-tabs
chords
A Kotlin multi-platform view library for displaying stringed instrument chord diagrams
Stars: ✭ 25 (-34.21%)
Mutual labels:  tabs, guitar, guitar-tabs
guitar
🎸 Online guitar toy and tablature recorder/player
Stars: ✭ 80 (+110.53%)
Mutual labels:  midi, tabs, guitar
hackthepiano
Learn reading notes on the fly fast and easy
Stars: ✭ 18 (-52.63%)
Mutual labels:  midi, notes, piano
UnityMidiPlayer
Midi file player for unity. Allows import of type zero and one midi files and playing them via midi outputs. Also provides code for creating procedural music using midi.
Stars: ✭ 30 (-21.05%)
Mutual labels:  midi, midi-files
midi degradation toolkit
A toolkit for generating datasets of midi files which have been degraded to be 'un-musical'.
Stars: ✭ 29 (-23.68%)
Mutual labels:  midi, midi-files
multipiano
A vuejs application which allow users to play piano with friends!
Stars: ✭ 33 (-13.16%)
Mutual labels:  midi, piano
MIDI.jl
A Julia library for handling MIDI files
Stars: ✭ 55 (+44.74%)
Mutual labels:  midi, notes
Tabdown
Tabdown is an open mark-up language for text tabs & chords.
Stars: ✭ 49 (+28.95%)
Mutual labels:  tabs, guitar
Clubber
Application of music theory in audio reactive visualizations
Stars: ✭ 325 (+755.26%)
Mutual labels:  midi, notes
melrose
interactive programming of melodies, producing MIDI
Stars: ✭ 130 (+242.11%)
Mutual labels:  midi, notes
podhd
PODHD Preset Tool -- Modify And Convert Line6 POD HD Presets, Setlists And Bundles.
Stars: ✭ 37 (-2.63%)
Mutual labels:  convert, guitar
tune
Make xenharmonic music and create synthesizer tuning files for microtonal scales.
Stars: ✭ 73 (+92.11%)
Mutual labels:  midi, piano
JZZ-midi-SMF
Standard MIDI Files: read / write / play
Stars: ✭ 28 (-26.32%)
Mutual labels:  midi, midi-files
tayuya
Python library to generate guitar tabs from MIDI files
Stars: ✭ 52 (+36.84%)
Mutual labels:  midi, guitar-tabs
tabs
Guitar tabs transcribed by me, primarily in the stoner/doom/sludge metal genres... plus a few random other things.
Stars: ✭ 34 (-10.53%)
Mutual labels:  tabs, guitar
wui
Collection of GUI widgets for the web
Stars: ✭ 44 (+15.79%)
Mutual labels:  midi, tabs
MusicManipulations.jl
Manipulate music data, humanize, quantize and analyze music performances with Julia
Stars: ✭ 41 (+7.89%)
Mutual labels:  midi, notes
PianoTranscription Windows
MIDI parser (Juce library is used) + "PianoFingering_CalcModule" + "PianoAudioToMidi" + "PianoKeyboard" + WinAPI GUI
Stars: ✭ 52 (+36.84%)
Mutual labels:  midi, piano
samwise.nvim
samwise is a line-wise note-taking plugin for neovim.
Stars: ✭ 30 (-21.05%)
Mutual labels:  notes

Guitar Tabs to MIDI

A program that converts Guitar Tabs into MIDI files.



Working

  • Reads the file from the location specified by the user
  • Preprocesses the file
    • Removes unwanted characters
    • Maps the notes in the tabs to MIDI pitch information
  • Converts the preprocessed output into .mid file
    • Sets the tempo and instrument for the track
    • Places the notes into the MIDI file
  • Plays the .mid file

Mapping

The initial note of each string (open string notes) are mapped to the MIDI pitch as shown in fig. The subsequent notes on the fretboard is the shift from the intial note on that string. note pitch = inital pitch of string + fret number


Mapping of the fretboard and MIDI pitch

Requirements

  • Python3
  • MIDIUtil
  • Timidity

Installation

Install the required files to run on your local system:

  • Cloning the repository

    git clone https://github.com/Sarath18/guitar-tabs-to-MIDI
    
  • MIDIUtil

    pip3 install MIDIUtil
    
  • Timidity

    sudo apt-get install timidity
    

How to use

Run the program by typing the following in terminal:

python3 main.py
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].