Metadata-Version: 2.1
Name: keyfinder
Version: 1.1.0
Summary: Determine the key of an audio file
Home-page: https://github.com/evanpurkhiser/keyfinder-py
Author: Evan Purkhiser
Author-email: evanpurkhiser@gmail.com
License: UNKNOWN
Description: ## Keyfinder Python 3.x bindings
        
        This package implements basic bindings for
        [libKeyFinder](https://github.com/ibsh/libKeyFinder). It includes the
        supporting libav code for reading audio data and passing it into libKeyFinder.
        
        [![Build Status](https://travis-ci.com/EvanPurkhiser/keyfinder-py.svg?branch=master)](https://travis-ci.com/EvanPurkhiser/keyfinder-py)
        
        #### Usage
        
        ```pycon
        >>> import keyfinder
        >>> key = keyfinder.key('my-audio.mp3')
        
        >>> key
        A
        >>> key.camelot()
        11B
        >>> key.open_key()
        4d
        ```
        
        #### Build requirements
        
        You must have the following dependencies installed to build this module
        
        - [libKeyFinder](https://github.com/ibsh/libKeyFinder#installation) which has
          it's own set of dependencies. On mac you can use homebrew to tap
          [`EvanPurkhiser/homebrew-personal`](https://github.com/EvanPurkhiser/homebrew-personal)
          and then `brew install libkeyfinder`.
        
        - ffmpeg. On mac use `brew install ffmpeg`
        
Platform: UNKNOWN
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis
Description-Content-Type: text/markdown
