Metadata-Version: 2.1
Name: pyequalizer
Version: 0.1.2
Summary: A time domain equalizer which is mainly implemented by scipy 
Home-page: https://github.com/me/myproject
Author: Awesome Soul
Author-email: tw40210@gmail.com
License: MIT
Description: 
        pyequalizer
        =======================
        
        This repo is a python equalizer which is implemented by scipy.
        And, the following function is the main one you will use in this package. 
        ```
        y, sr = librosa.load(input_file, sr=44100)
        y = equalizer(y, sr, start_iv=200, end_iv=8000, num_iv=100, peak_scale=20, peak_iv = 20, type=type_f)
        ```
        where **start_iv, end_iv** is the frequencys equalizer starts to work and ends;
        **num_iv** is the number how many interval will be in. Generally, it means how smooth the equalize curve is.
        **peak_scale** is how much will the signal be enhanced.
        **peak_iv** is the interval where the peak of equalizing curve is
        **type** means the equalizing curve shape. We currently provide "parabola" and "linear".
        
        License
        -------
        
        This is free and unencumbered software released into the public domain.
        
        Anyone is free to copy, modify, publish, use, compile, sell, or
        distribute this software, either in source code form or as a compiled
        binary, for any purpose, commercial or non-commercial, and by any means.
        
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
