Skip to content

ashishrana160796/MarkovMusicalChain

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MarkovMusicalChain

Markov chain being used to make music i.e. an example of Grapheme to Phoneme


Requirements

  • Mido library
  • Python 3.5.2 or any 3.x

Introduction

The order of this Markov chain is not fixed, it varies according to file that is under analysis. Midi files are used as input and for music generation considering the simplicity. For each note the duration is rounded and grouped with every note that is played at the same time. This will result in a 2D matrix storing from_notes and to_notes:time. Which will help us to get resultant markov chain. This project is using different Classical Indian Music(Raga) styles as input. Limitation of markov chains is that hidden information like HMM model cannot be utilized only probabilites from previous state can be utilized.


Command Used For Running Files from Home Directory

  • printfile.py : python3 util/printfile.py _in_raga/Bageshri.mid | head -50
  • generator.py : python3 src/generator.py _in_raga/Bageshri.mid _out_raga/BageshriExtended.mid
  • markov_chain.py : python3 src/markov_chain.py demo
  • parser.py : python3 src/parser.py _in_raga/Bageshri.mid

Reference and Resources