Metadata-Version: 1.2
Name: audiofile
Version: 0.3.0
Summary: Fast reading of all kind of audio files
Home-page: https://github.com/audeering/audiofile/
Author: Hagen Wierstorf
Author-email: hwierstorf@audeering.com
License: MIT License
Project-URL: Documentation, https://audeering.github.io/audiofile/
Description: =========
        audiofile
        =========
        
        |tests| |coverage| |docs| |python-versions| |license|
        
        The Python package **audiofile** handles all kind of audio files
        with a focus on reading speed.
        
        It can read and get metadata information
        for all files that are supported by
        ffmpeg_,
        sox_,
        and mediainfo_,
        if those are available on your system.
        In addition, it can create WAV files.
        
        Code example for reading a file:
        
        .. code-block:: python
        
            import audiofile as af
        
            signal, sampling_rate = af.read('signal.wav')
        
        
        .. _virtualenv: https://virtualenv.pypa.io/
        .. _ffmpeg: https://www.ffmpeg.org/
        .. _sox: http://sox.sourceforge.net/
        .. _mediainfo: https://mediaarea.net/en/MediaInfo/
        
        .. |tests| image:: https://github.com/audeering/audiofile/workflows/Test/badge.svg
            :target: https://github.com/audeering/audiofile/actions?query=workflow%3ATest
            :alt: Test status
        .. |coverage| image:: https://codecov.io/gh/audeering/audiofile/branch/master/graph/badge.svg?token=LVF0621BKR
            :target: https://codecov.io/gh/audeering/audiofile/
            :alt: code coverage
        .. |docs| image:: https://readthedocs.org/projects/audiofile/badge/
            :target: https://audiofile.readthedocs.io/
            :alt: audiofile's documentation on Read the Docs
        .. |python-versions| image:: https://img.shields.io/pypi/pyversions/audiofile.svg
            :target: https://pypi.org/project/audiofile/
            :alt: audiofile's supported Python versions
        .. |license| image:: https://img.shields.io/badge/license-MIT-green.svg
            :target: https://github.com/audeering/audiofile/blob/master/LICENSE
            :alt: audiofile's MIT license
        
        Changelog
        =========
        
        All notable changes to this project will be documented in this file.
        
        The format is based on `Keep a Changelog`_,
        and this project adheres to `Semantic Versioning`_.
        
        
        Version 0.3.0 (2020-10-27)
        --------------------------
        
        * Changed: use ``audiofile.core`` structure under the hood
        * Changed: use Github Actions for tests
        * Changed: use Github Actions for automatic publishing
        * Changed: host documentation as Github pages
        * Removed: support for Python 2.7
        
        
        Version 0.2.4 (2020-08-31)
        --------------------------
        
        * Fixed: ``CHANGELOG`` format for PyPI server
        
        
        Version 0.2.3 (2020-08-31)
        --------------------------
        
        * Fixed: catch ``SoxiError`` in ``audiofile.read()``
        * Fixed: test for more advanced audio files like OPUS, AMR, ...
        
        
        Version 0.2.2 (2019-10-04)
        --------------------------
        
        * Changed: switch to keep a changelog format
        * Changed: define package in ``setup.cfg``
        
        
        Version 0.2.1 (2019-05-02)
        --------------------------
        
        * Fixed: module only package
        
        
        Version 0.2.0 (2019-05-02)
        --------------------------
        
        * Changed: improve documentation
        * Changed: switch to single ``audiofile.py`` module
        * Fixed: skip tests if download fails
        
        
        Version 0.1.3 (2019-03-27)
        --------------------------
        
        * Fixed: metadata samples and duration for MP3 files
        
        
        Version 0.1.2 (2019-03-25)
        --------------------------
        
        * Fixed: metadata for pypi.org
        
        
        Version 0.1.1 (2019-03-25)
        --------------------------
        
        * Fixed: license statement in PyPI package
        
        
        Version 0.1.0 (2019-03-25)
        --------------------------
        
        * Added: First public release
        
        
        .. _Keep a Changelog: https://keepachangelog.com/en/1.0.0/
        .. _Semantic Versioning: https://semver.org/spec/v2.0.0.html
        
Keywords: audio tools
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Multimedia :: Sound/Audio
