Metadata-Version: 2.1
Name: soxr
Version: 0.0.3
Summary: High quality, one-dimensional sample-rate conversion library
Home-page: https://github.com/dofuuz/python-soxr
Author: dofuuz
License: UNKNOWN
Description: # Python-SoXR
        
        High quality, one-dimensional sample-rate conversion library for Python
        
        
        ## Installation
        
        ```
        pip install soxr
        ```
        
        If installation fails, upgrade pip with `python -m pip install --upgrade pip` and try again.
        
        
        ## Basic usage
        
        ```python
        import soxr
        
        y = soxr.resample(
            x,          # 1D(mono) or 2D(frames, channels) array input
            48000,      # input samplerate
            16000       # target samplerate
        )
        ```
        Output is 2D numpy.ndarray with shape (frames, channels).
        
        
        ## Credits
        
        ### libsoxr (LGPLv2.1+)
        https://sourceforge.net/projects/soxr/  
        Python-SoXR is a Python wrapper of libsoxr
        
        
        ### PFFFT (BSD-like)
        https://bitbucket.org/jpommier/pffft/  
        libsoxr uses PFFFT as FFT
        
Keywords: samplerate,SRC
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Telecommunications Industry
Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis
Classifier: Topic :: Multimedia :: Sound/Audio :: Conversion
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Programming Language :: C
Classifier: Programming Language :: Python
Requires-Python: >=3.5
Description-Content-Type: text/markdown
