Metadata-Version: 1.1
Name: midify
Version: 0.3.1
Summary: Command line tool for converting Audio to MIDI.
Home-page: https://github.com/DanielSanRocha/midify
Author: Daniel Santana
Author-email: danielsantanarocha@gmail.com
License: MIT
Description: # Midify
        
        Midify is a command line tool for converting audio data in MIDI data identifying notes positions and frequencies.
        
        ## Installation
        
        Inside a virtualenv run
        
        ```bash
        pip install midify
        ```
        
        ## Usage
        
        The simplest usage
        
        ```bash
        midify input.wav --output output.mid
        ```
        
        ## Algorithm
        
        The algorithm consists of two steps; first we use `scipy.signal.find_peaks` to find the beggining of each note; after that the program uses scipy FFT to find the first peak in the frequency spectrum which we assume is the root harmonic (the played note).
        
        ## Acknowledgments
        
        Made with Love by Daniel Santana
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
