Metadata-Version: 2.1
Name: auditok
Version: 0.1.6
Summary: A module for Audio/Acoustic Activity Detection
Home-page: http://github.com/amsehili/auditok/
Author: Amine Sehili
Author-email: amine.sehili@gmail.com
License: GNU General Public License v3 (GPLv3)
Description: auditok, an AUDIo TOKenization tool
        ===================================
        
        .. image:: https://travis-ci.org/amsehili/auditok.svg?branch=master
            :target: https://travis-ci.org/amsehili/auditok
            
        .. image:: https://readthedocs.org/projects/auditok/badge/?version=v0.1.6
            :target: http://auditok.readthedocs.org/en/v0.1.6/?badge=v0.1.6
            :alt: Documentation Status
        
        `auditok` is an **Audio Activity Detection** tool that can process online data (read from an audio device or from standard input) as well as audio files. It can be used as a command line program and offers an easy to use API.
        
        The documentation of this version can be found at `Readthedocs <http://auditok.readthedocs.org/en/v0.1.6/>`_.
        
        Requirements
        ------------
        
        `auditok` can be used with standard Python!
        
        However, if you want more features, the following packages are needed:
        
        - `Pydub <https://github.com/jiaaro/pydub>`_ : read audio files in popular audio formats (ogg, mp3, etc.) or extract audio from a video file.
        
        - `PyAudio <http://people.csail.mit.edu/hubert/pyaudio/>`_ : read audio data from the microphone and play back detections.
        
        - `matplotlib <http://matplotlib.org/>`_ : plot audio signal and detections (see figures above).
        
        - `numpy <http://www.numpy.org>`_ : required by matplotlib. Also used for math operations instead of standard python if available.
        
        - Optionally, you can use `sox` or `[p]arecord` for data acquisition and feed `auditok` using a pipe.
        
        Installation
        ------------
        
        Install with pip:
        
        .. code:: bash
        
            sudo pip install auditok
        
        or install the latest version on Github:
        
        .. code:: bash
        
            git clone https://github.com/amsehili/auditok.git
            cd auditok
            sudo python setup.py install
        
        Getting started
        ---------------
        
        - `Documentation Home <http://auditok.readthedocs.org/en/v0.1.6/>`_
        - `Command-line Usage Guide <http://auditok.readthedocs.org/en/v0.1.6/cmdline.html>`_
        - `API Tutorial <http://auditok.readthedocs.org/en/v0.1.6/apitutorial.html>`_
        - `API Reference <http://auditok.readthedocs.org/en/v0.1.6/index.html>`_
        
        
Platform: ANY
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Requires: PyAudio
Provides: auditok
Description-Content-Type: text/x-rst
