soundfile


Namesoundfile JSON
Version 0.11.0 PyPI version JSON
download
home_pagehttps://github.com/bastibe/python-soundfile
SummaryAn audio library based on libsndfile, CFFI and NumPy
upload_time2022-09-29 06:14:20
maintainer
docs_urlNone
authorBastian Bechtold
requires_python
licenseBSD 3-Clause License
keywords audio libsndfile
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            python-soundfile
================

|version| |python| |status| |license|

|contributors| |downloads|

The `soundfile <https://github.com/bastibe/python-soundfile>`__ module is an audio
library based on libsndfile, CFFI and NumPy. Full documentation is
available on https://python-soundfile.readthedocs.io/.

The ``soundfile`` module can read and write sound files. File reading/writing is
supported through `libsndfile <http://www.mega-nerd.com/libsndfile/>`__,
which is a free, cross-platform, open-source (LGPL) library for reading
and writing many different sampled sound file formats that runs on many
platforms including Windows, OS X, and Unix. It is accessed through
`CFFI <https://cffi.readthedocs.io/>`__, which is a foreign function
interface for Python calling C code. CFFI is supported for CPython 2.6+,
3.x and PyPy 2.0+. The ``soundfile`` module represents audio data as NumPy arrays.

| python-soundfile is BSD licensed (BSD 3-Clause License).
| (c) 2013, Bastian Bechtold


|open-issues| |closed-issues| |open-prs| |closed-prs|

.. |contributors| image:: https://img.shields.io/github/contributors/bastibe/python-soundfile.svg
.. |version| image:: https://img.shields.io/pypi/v/soundfile.svg
.. |python| image:: https://img.shields.io/pypi/pyversions/soundfile.svg
.. |license| image:: https://img.shields.io/github/license/bastibe/python-soundfile.svg
.. |downloads| image:: https://img.shields.io/pypi/dm/soundfile.svg
.. |open-issues| image:: https://img.shields.io/github/issues/bastibe/python-soundfile.svg
.. |closed-issues| image:: https://img.shields.io/github/issues-closed/bastibe/python-soundfile.svg
.. |open-prs| image:: https://img.shields.io/github/issues-pr/bastibe/python-soundfile.svg
.. |closed-prs| image:: https://img.shields.io/github/issues-pr-closed/bastibe/python-soundfile.svg
.. |status| image:: https://img.shields.io/pypi/status/soundfile.svg

Breaking Changes
----------------

The ``soundfile`` module has evolved rapidly during the last few releases. Most
notably, we changed the import name from ``import pysoundfile`` to
``import soundfile`` in 0.7. In 0.6, we cleaned up many small
inconsistencies, particularly in the the ordering and naming of
function arguments and the removal of the indexing interface.

In 0.8.0, we changed the default value of ``always_2d`` from ``True``
to ``False``. Also, the order of arguments of the ``write`` function
changed from ``write(data, file, ...)`` to ``write(file, data, ...)``.

In 0.9.0, we changed the ``ctype`` arguments of the ``buffer_*``
methods to ``dtype``, using the Numpy ``dtype`` notation. The old
``ctype`` arguments still work, but are now officially deprecated.

Installation
------------

The ``soundfile`` module depends on the Python packages CFFI and NumPy, and the
system library libsndfile.

In a modern Python, you can use ``pip install soundfile`` to download
and install the latest release of the ``soundfile`` module and its dependencies.
On Windows and OS X, this will also install the library libsndfile.
On Linux, you need to install libsndfile using your distribution's
package manager, for example ``sudo apt-get install libsndfile1``.

If you are running on an unusual platform or if you are using an older
version of Python, you might need to install NumPy and CFFI separately,
for example using the Anaconda_ package manager or the `Unofficial Windows
Binaries for Python Extension Packages <http://www.lfd.uci.edu/~gohlke/pythonlibs/>`_.

.. _Anaconda: https://www.continuum.io/downloads

Error Reporting
---------------

In case of API usage errors the ``soundfile`` module raises the usual `ValueError` or `TypeError`.

For other errors `SoundFileError` is raised (used to be `RuntimeError`).
Particularly, a `LibsndfileError` subclass of this exception is raised on
errors reported by the libsndfile library. In that case the exception object
provides the libsndfile internal error code in the `LibsndfileError.code` attribute and the raw
libsndfile error message in the `LibsndfileError.error_string` attribute.

Read/Write Functions
--------------------

Data can be written to the file using `soundfile.write()`, or read from
the file using `soundfile.read()`. The ``soundfile`` module can open all file formats
that `libsndfile supports
<http://www.mega-nerd.com/libsndfile/#Features>`__, for example WAV,
FLAC, OGG and MAT files (see `Known Issues <https://github.com/bastibe/python-soundfile#known-issues>`__ below about writing OGG files).

Here is an example for a program that reads a wave file and copies it
into an FLAC file:

.. code:: python

    import soundfile as sf

    data, samplerate = sf.read('existing_file.wav')
    sf.write('new_file.flac', data, samplerate)

Block Processing
----------------

Sound files can also be read in short, optionally overlapping blocks
with `soundfile.blocks()`.
For example, this calculates the signal level for each block of a long
file:

.. code:: python

   import numpy as np
   import soundfile as sf

   rms = [np.sqrt(np.mean(block**2)) for block in
          sf.blocks('myfile.wav', blocksize=1024, overlap=512)]

``SoundFile`` Objects
---------------------

Sound files can also be opened as `SoundFile` objects. Every
`SoundFile` has a specific sample rate, data format and a set number of
channels.

If a file is opened, it is kept open for as long as the `SoundFile`
object exists. The file closes when the object is garbage collected,
but you should use the `SoundFile.close()` method or the
context manager to close the file explicitly:

.. code:: python

   import soundfile as sf

   with sf.SoundFile('myfile.wav', 'r+') as f:
       while f.tell() < f.frames:
           pos = f.tell()
           data = f.read(1024)
           f.seek(pos)
           f.write(data*2)

All data access uses frames as index. A frame is one discrete time-step
in the sound file. Every frame contains as many samples as there are
channels in the file.

RAW Files
---------

`soundfile.read()` can usually auto-detect the file type of sound files. This
is not possible for RAW files, though:

.. code:: python

   import soundfile as sf

   data, samplerate = sf.read('myfile.raw', channels=1, samplerate=44100,
                              subtype='FLOAT')

Note that on x86, this defaults to ``endian='LITTLE'``. If you are
reading big endian data (mostly old PowerPC/6800-based files), you
have to set ``endian='BIG'`` accordingly.

You can write RAW files in a similar way, but be advised that in most
cases, a more expressive format is better and should be used instead.

Virtual IO
----------

If you have an open file-like object, `soundfile.read()` can open it just like
regular files:

.. code:: python

    import soundfile as sf
    with open('filename.flac', 'rb') as f:
        data, samplerate = sf.read(f)

Here is an example using an HTTP request:

.. code:: python

    import io
    import soundfile as sf
    from urllib.request import urlopen

    url = "http://tinyurl.com/shepard-risset"
    data, samplerate = sf.read(io.BytesIO(urlopen(url).read()))

Note that the above example only works with Python 3.x.
For Python 2.x support, replace the third line with:

.. code:: python

    from urllib2 import urlopen

Known Issues
------------

Writing to OGG files can result in empty files with certain versions of libsndfile. See `#130 <https://github.com/bastibe/python-soundfile/issues/130>`__ for news on this issue.

If using a Buildroot style system, Python has trouble locating ``libsndfile.so`` file, which causes python-soundfile to not be loaded. This is apparently a bug in `python <https://bugs.python.org/issue13508>`__. For the time being, in ``soundfile.py``, you can remove the call to ``_find_library`` and hardcode the location of the ``libsndfile.so`` in ``_ffi.dlopen``. See `#258 <https://github.com/bastibe/python-soundfile/issues/258>`__ for discussion on this issue.

News
----

2013-08-27 V0.1.0 Bastian Bechtold:
    Initial prototype. A simple wrapper for libsndfile in Python

2013-08-30 V0.2.0 Bastian Bechtold:
    Bugfixes and more consistency with PySoundCard

2013-08-30 V0.2.1 Bastian Bechtold:
    Bugfixes

2013-09-27 V0.3.0 Bastian Bechtold:
    Added binary installer for Windows, and context manager

2013-11-06 V0.3.1 Bastian Bechtold:
    Switched from distutils to setuptools for easier installation

2013-11-29 V0.4.0 Bastian Bechtold:
    Thanks to David Blewett, now with Virtual IO!

2013-12-08 V0.4.1 Bastian Bechtold:
    Thanks to Xidorn Quan, FLAC files are not float32 any more.

2014-02-26 V0.5.0 Bastian Bechtold:
    Thanks to Matthias Geier, improved seeking and a flush() method.

2015-01-19 V0.6.0 Bastian Bechtold:
    A big, big thank you to Matthias Geier, who did most of the work!

    - Switched to ``float64`` as default data type.
    - Function arguments changed for consistency.
    - Added unit tests.
    - Added global `read()`, `write()`, `blocks()` convenience
      functions.
    - Documentation overhaul and hosting on readthedocs.
    - Added ``'x'`` open mode.
    - Added `tell()` method.
    - Added ``__repr__()`` method.

2015-04-12 V0.7.0 Bastian Bechtold:
    Again, thanks to Matthias Geier for all of his hard work, but also
    Nils Werner and Whistler7 for their many suggestions and help.

    - Renamed ``import pysoundfile`` to ``import soundfile``.
    - Installation through pip wheels that contain the necessary
      libraries for OS X and Windows.
    - Removed ``exclusive_creation`` argument to `write()`.
    - Added `truncate()` method.

2015-10-20 V0.8.0 Bastian Bechtold:
    Again, Matthias Geier contributed a whole lot of hard work to this
    release.

    - Changed the default value of ``always_2d`` from ``True`` to
      ``False``.
    - Numpy is now optional, and only loaded for ``read`` and
      ``write``.
    - Added `SoundFile.buffer_read()` and
      `SoundFile.buffer_read_into()` and `SoundFile.buffer_write()`,
      which read/write raw data without involving Numpy.
    - Added `info()` function that returns metadata of a sound file.
    - Changed the argument order of the `write()` function from
      ``write(data, file, ...)`` to ``write(file, data, ...)``

    And many more minor bug fixes.

2017-02-02 V0.9.0 Bastian Bechtold:
    Thank you, Matthias Geier, Tomas Garcia, and Todd, for contributions
    for this release.

    - Adds support for ALAC files.
    - Adds new member ``__libsndfile_version__``
    - Adds number of frames to ``info`` class
    - Adds ``dtype`` argument to ``buffer_*`` methods
    - Deprecates ``ctype`` argument to ``buffer_*`` methods
    - Adds official support for Python 3.6

    And some minor bug fixes.

2017-11-12 V0.10.0 Bastian Bechtold:
    Thank you, Matthias Geier, Toni Barth, Jon Peirce, Till Hoffmann,
    and Tomas Garcia, for contributions to this release.

    - Should now work with cx_freeze.
    - Several documentation fixes in the README.
    - Removes deprecated ``ctype`` argument in favor of ``dtype`` in ``buffer_*()``.
    - Adds `SoundFile.frames` in favor of now-deprecated ``__len__()``.
    - Improves performance of `blocks()` and `SoundFile.blocks()`.
    - Improves import time by using CFFI's out of line mode.
    - Adds a build script for building distributions.

2022-06-02 V0.11.0 Bastian Bechtold:
    Thank you, tennies, Hannes Helmholz, Christoph Boeddeker, Matt
    Vollrath, Matthias Geier, Jacek Konieczny, Boris Verkhovskiy,
    Jonas Haag, Eduardo Moguillansky, Panos Laganakos, Jarvy Jarvison,
    Domingo Ramirez, Tim Chagnon, Kyle Benesch, Fabian-Robert Stöter,
    Joe Todd

    - MP3 support
    - Adds binary wheels for macOS M1
    - Improves compatibility with macOS, specifically for M1 machines
    - Fixes file descriptor open for binary wheels on Windows and Python 3.5+
    - Updates libsndfile to v1.1.0
    - Adds get_strings method for retrieving all metadata at once
    - Improves documentation, error messages and tests
    - Displays length of very short files in samples
    - Supports the file system path protocol (pathlib et al)



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/bastibe/python-soundfile",
    "name": "soundfile",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "audio,libsndfile",
    "author": "Bastian Bechtold",
    "author_email": "basti@bastibe.de",
    "download_url": "https://files.pythonhosted.org/packages/e5/be/d5546b16c06f98d0eada0730a135d2650b1e947d2ebd656d4efb9b3c371c/soundfile-0.11.0.tar.gz",
    "platform": "any",
    "description": "python-soundfile\n================\n\n|version| |python| |status| |license|\n\n|contributors| |downloads|\n\nThe `soundfile <https://github.com/bastibe/python-soundfile>`__ module is an audio\nlibrary based on libsndfile, CFFI and NumPy. Full documentation is\navailable on https://python-soundfile.readthedocs.io/.\n\nThe ``soundfile`` module can read and write sound files. File reading/writing is\nsupported through `libsndfile <http://www.mega-nerd.com/libsndfile/>`__,\nwhich is a free, cross-platform, open-source (LGPL) library for reading\nand writing many different sampled sound file formats that runs on many\nplatforms including Windows, OS X, and Unix. It is accessed through\n`CFFI <https://cffi.readthedocs.io/>`__, which is a foreign function\ninterface for Python calling C code. CFFI is supported for CPython 2.6+,\n3.x and PyPy 2.0+. The ``soundfile`` module represents audio data as NumPy arrays.\n\n| python-soundfile is BSD licensed (BSD 3-Clause License).\n| (c) 2013, Bastian Bechtold\n\n\n|open-issues| |closed-issues| |open-prs| |closed-prs|\n\n.. |contributors| image:: https://img.shields.io/github/contributors/bastibe/python-soundfile.svg\n.. |version| image:: https://img.shields.io/pypi/v/soundfile.svg\n.. |python| image:: https://img.shields.io/pypi/pyversions/soundfile.svg\n.. |license| image:: https://img.shields.io/github/license/bastibe/python-soundfile.svg\n.. |downloads| image:: https://img.shields.io/pypi/dm/soundfile.svg\n.. |open-issues| image:: https://img.shields.io/github/issues/bastibe/python-soundfile.svg\n.. |closed-issues| image:: https://img.shields.io/github/issues-closed/bastibe/python-soundfile.svg\n.. |open-prs| image:: https://img.shields.io/github/issues-pr/bastibe/python-soundfile.svg\n.. |closed-prs| image:: https://img.shields.io/github/issues-pr-closed/bastibe/python-soundfile.svg\n.. |status| image:: https://img.shields.io/pypi/status/soundfile.svg\n\nBreaking Changes\n----------------\n\nThe ``soundfile`` module has evolved rapidly during the last few releases. Most\nnotably, we changed the import name from ``import pysoundfile`` to\n``import soundfile`` in 0.7. In 0.6, we cleaned up many small\ninconsistencies, particularly in the the ordering and naming of\nfunction arguments and the removal of the indexing interface.\n\nIn 0.8.0, we changed the default value of ``always_2d`` from ``True``\nto ``False``. Also, the order of arguments of the ``write`` function\nchanged from ``write(data, file, ...)`` to ``write(file, data, ...)``.\n\nIn 0.9.0, we changed the ``ctype`` arguments of the ``buffer_*``\nmethods to ``dtype``, using the Numpy ``dtype`` notation. The old\n``ctype`` arguments still work, but are now officially deprecated.\n\nInstallation\n------------\n\nThe ``soundfile`` module depends on the Python packages CFFI and NumPy, and the\nsystem library libsndfile.\n\nIn a modern Python, you can use ``pip install soundfile`` to download\nand install the latest release of the ``soundfile`` module and its dependencies.\nOn Windows and OS X, this will also install the library libsndfile.\nOn Linux, you need to install libsndfile using your distribution's\npackage manager, for example ``sudo apt-get install libsndfile1``.\n\nIf you are running on an unusual platform or if you are using an older\nversion of Python, you might need to install NumPy and CFFI separately,\nfor example using the Anaconda_ package manager or the `Unofficial Windows\nBinaries for Python Extension Packages <http://www.lfd.uci.edu/~gohlke/pythonlibs/>`_.\n\n.. _Anaconda: https://www.continuum.io/downloads\n\nError Reporting\n---------------\n\nIn case of API usage errors the ``soundfile`` module raises the usual `ValueError` or `TypeError`.\n\nFor other errors `SoundFileError` is raised (used to be `RuntimeError`).\nParticularly, a `LibsndfileError` subclass of this exception is raised on\nerrors reported by the libsndfile library. In that case the exception object\nprovides the libsndfile internal error code in the `LibsndfileError.code` attribute and the raw\nlibsndfile error message in the `LibsndfileError.error_string` attribute.\n\nRead/Write Functions\n--------------------\n\nData can be written to the file using `soundfile.write()`, or read from\nthe file using `soundfile.read()`. The ``soundfile`` module can open all file formats\nthat `libsndfile supports\n<http://www.mega-nerd.com/libsndfile/#Features>`__, for example WAV,\nFLAC, OGG and MAT files (see `Known Issues <https://github.com/bastibe/python-soundfile#known-issues>`__ below about writing OGG files).\n\nHere is an example for a program that reads a wave file and copies it\ninto an FLAC file:\n\n.. code:: python\n\n    import soundfile as sf\n\n    data, samplerate = sf.read('existing_file.wav')\n    sf.write('new_file.flac', data, samplerate)\n\nBlock Processing\n----------------\n\nSound files can also be read in short, optionally overlapping blocks\nwith `soundfile.blocks()`.\nFor example, this calculates the signal level for each block of a long\nfile:\n\n.. code:: python\n\n   import numpy as np\n   import soundfile as sf\n\n   rms = [np.sqrt(np.mean(block**2)) for block in\n          sf.blocks('myfile.wav', blocksize=1024, overlap=512)]\n\n``SoundFile`` Objects\n---------------------\n\nSound files can also be opened as `SoundFile` objects. Every\n`SoundFile` has a specific sample rate, data format and a set number of\nchannels.\n\nIf a file is opened, it is kept open for as long as the `SoundFile`\nobject exists. The file closes when the object is garbage collected,\nbut you should use the `SoundFile.close()` method or the\ncontext manager to close the file explicitly:\n\n.. code:: python\n\n   import soundfile as sf\n\n   with sf.SoundFile('myfile.wav', 'r+') as f:\n       while f.tell() < f.frames:\n           pos = f.tell()\n           data = f.read(1024)\n           f.seek(pos)\n           f.write(data*2)\n\nAll data access uses frames as index. A frame is one discrete time-step\nin the sound file. Every frame contains as many samples as there are\nchannels in the file.\n\nRAW Files\n---------\n\n`soundfile.read()` can usually auto-detect the file type of sound files. This\nis not possible for RAW files, though:\n\n.. code:: python\n\n   import soundfile as sf\n\n   data, samplerate = sf.read('myfile.raw', channels=1, samplerate=44100,\n                              subtype='FLOAT')\n\nNote that on x86, this defaults to ``endian='LITTLE'``. If you are\nreading big endian data (mostly old PowerPC/6800-based files), you\nhave to set ``endian='BIG'`` accordingly.\n\nYou can write RAW files in a similar way, but be advised that in most\ncases, a more expressive format is better and should be used instead.\n\nVirtual IO\n----------\n\nIf you have an open file-like object, `soundfile.read()` can open it just like\nregular files:\n\n.. code:: python\n\n    import soundfile as sf\n    with open('filename.flac', 'rb') as f:\n        data, samplerate = sf.read(f)\n\nHere is an example using an HTTP request:\n\n.. code:: python\n\n    import io\n    import soundfile as sf\n    from urllib.request import urlopen\n\n    url = \"http://tinyurl.com/shepard-risset\"\n    data, samplerate = sf.read(io.BytesIO(urlopen(url).read()))\n\nNote that the above example only works with Python 3.x.\nFor Python 2.x support, replace the third line with:\n\n.. code:: python\n\n    from urllib2 import urlopen\n\nKnown Issues\n------------\n\nWriting to OGG files can result in empty files with certain versions of libsndfile. See `#130 <https://github.com/bastibe/python-soundfile/issues/130>`__ for news on this issue.\n\nIf using a Buildroot style system, Python has trouble locating ``libsndfile.so`` file, which causes python-soundfile to not be loaded. This is apparently a bug in `python <https://bugs.python.org/issue13508>`__. For the time being, in ``soundfile.py``, you can remove the call to ``_find_library`` and hardcode the location of the ``libsndfile.so`` in ``_ffi.dlopen``. See `#258 <https://github.com/bastibe/python-soundfile/issues/258>`__ for discussion on this issue.\n\nNews\n----\n\n2013-08-27 V0.1.0 Bastian Bechtold:\n    Initial prototype. A simple wrapper for libsndfile in Python\n\n2013-08-30 V0.2.0 Bastian Bechtold:\n    Bugfixes and more consistency with PySoundCard\n\n2013-08-30 V0.2.1 Bastian Bechtold:\n    Bugfixes\n\n2013-09-27 V0.3.0 Bastian Bechtold:\n    Added binary installer for Windows, and context manager\n\n2013-11-06 V0.3.1 Bastian Bechtold:\n    Switched from distutils to setuptools for easier installation\n\n2013-11-29 V0.4.0 Bastian Bechtold:\n    Thanks to David Blewett, now with Virtual IO!\n\n2013-12-08 V0.4.1 Bastian Bechtold:\n    Thanks to Xidorn Quan, FLAC files are not float32 any more.\n\n2014-02-26 V0.5.0 Bastian Bechtold:\n    Thanks to Matthias Geier, improved seeking and a flush() method.\n\n2015-01-19 V0.6.0 Bastian Bechtold:\n    A big, big thank you to Matthias Geier, who did most of the work!\n\n    - Switched to ``float64`` as default data type.\n    - Function arguments changed for consistency.\n    - Added unit tests.\n    - Added global `read()`, `write()`, `blocks()` convenience\n      functions.\n    - Documentation overhaul and hosting on readthedocs.\n    - Added ``'x'`` open mode.\n    - Added `tell()` method.\n    - Added ``__repr__()`` method.\n\n2015-04-12 V0.7.0 Bastian Bechtold:\n    Again, thanks to Matthias Geier for all of his hard work, but also\n    Nils Werner and Whistler7 for their many suggestions and help.\n\n    - Renamed ``import pysoundfile`` to ``import soundfile``.\n    - Installation through pip wheels that contain the necessary\n      libraries for OS X and Windows.\n    - Removed ``exclusive_creation`` argument to `write()`.\n    - Added `truncate()` method.\n\n2015-10-20 V0.8.0 Bastian Bechtold:\n    Again, Matthias Geier contributed a whole lot of hard work to this\n    release.\n\n    - Changed the default value of ``always_2d`` from ``True`` to\n      ``False``.\n    - Numpy is now optional, and only loaded for ``read`` and\n      ``write``.\n    - Added `SoundFile.buffer_read()` and\n      `SoundFile.buffer_read_into()` and `SoundFile.buffer_write()`,\n      which read/write raw data without involving Numpy.\n    - Added `info()` function that returns metadata of a sound file.\n    - Changed the argument order of the `write()` function from\n      ``write(data, file, ...)`` to ``write(file, data, ...)``\n\n    And many more minor bug fixes.\n\n2017-02-02 V0.9.0 Bastian Bechtold:\n    Thank you, Matthias Geier, Tomas Garcia, and Todd, for contributions\n    for this release.\n\n    - Adds support for ALAC files.\n    - Adds new member ``__libsndfile_version__``\n    - Adds number of frames to ``info`` class\n    - Adds ``dtype`` argument to ``buffer_*`` methods\n    - Deprecates ``ctype`` argument to ``buffer_*`` methods\n    - Adds official support for Python 3.6\n\n    And some minor bug fixes.\n\n2017-11-12 V0.10.0 Bastian Bechtold:\n    Thank you, Matthias Geier, Toni Barth, Jon Peirce, Till Hoffmann,\n    and Tomas Garcia, for contributions to this release.\n\n    - Should now work with cx_freeze.\n    - Several documentation fixes in the README.\n    - Removes deprecated ``ctype`` argument in favor of ``dtype`` in ``buffer_*()``.\n    - Adds `SoundFile.frames` in favor of now-deprecated ``__len__()``.\n    - Improves performance of `blocks()` and `SoundFile.blocks()`.\n    - Improves import time by using CFFI's out of line mode.\n    - Adds a build script for building distributions.\n\n2022-06-02 V0.11.0 Bastian Bechtold:\n    Thank you, tennies, Hannes Helmholz, Christoph Boeddeker, Matt\n    Vollrath, Matthias Geier, Jacek Konieczny, Boris Verkhovskiy,\n    Jonas Haag, Eduardo Moguillansky, Panos Laganakos, Jarvy Jarvison,\n    Domingo Ramirez, Tim Chagnon, Kyle Benesch, Fabian-Robert St\u00f6ter,\n    Joe Todd\n\n    - MP3 support\n    - Adds binary wheels for macOS M1\n    - Improves compatibility with macOS, specifically for M1 machines\n    - Fixes file descriptor open for binary wheels on Windows and Python 3.5+\n    - Updates libsndfile to v1.1.0\n    - Adds get_strings method for retrieving all metadata at once\n    - Improves documentation, error messages and tests\n    - Displays length of very short files in samples\n    - Supports the file system path protocol (pathlib et al)\n\n\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License",
    "summary": "An audio library based on libsndfile, CFFI and NumPy",
    "version": "0.11.0",
    "split_keywords": [
        "audio",
        "libsndfile"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "05061bc76c0415f166f83eb9498ffead",
                "sha256": "f4e4f832b1958403fb9726eeea54e0ebf1c7fc2599ff296a7ab1ac062f8048c9"
            },
            "downloads": -1,
            "filename": "soundfile-0.11.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "05061bc76c0415f166f83eb9498ffead",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 23440,
            "upload_time": "2022-09-27T07:10:21",
            "upload_time_iso_8601": "2022-09-27T07:10:21.323856Z",
            "url": "https://files.pythonhosted.org/packages/e3/ba/42a4370e4fb84fd8956dabf115a0b7f0f3071400a52554526fe5fd32f275/soundfile-0.11.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a56d8d573a3dcb13ce1fbcf3a3b6671d",
                "sha256": "9e6a62eefad0a7f856cc8f5ede7f1a0c196b65d2901c00fffc74a3d7e81d89c8"
            },
            "downloads": -1,
            "filename": "soundfile-0.11.0-py2.py3-none-macosx_10_9_arm64.macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a56d8d573a3dcb13ce1fbcf3a3b6671d",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 1093806,
            "upload_time": "2022-09-27T07:10:23",
            "upload_time_iso_8601": "2022-09-27T07:10:23.974530Z",
            "url": "https://files.pythonhosted.org/packages/aa/58/5afaf9053e4c760aa1e964934bbce93226906bcbaf9b1e02a75ab8a21910/soundfile-0.11.0-py2.py3-none-macosx_10_9_arm64.macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3205822c09a3bf5773dc2c443090cfc5",
                "sha256": "12f66fe9dcddedaa6c808bc3e104fc67fcee59dc64214bf7f43605e69836c497"
            },
            "downloads": -1,
            "filename": "soundfile-0.11.0-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3205822c09a3bf5773dc2c443090cfc5",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 1212462,
            "upload_time": "2022-09-27T07:10:26",
            "upload_time_iso_8601": "2022-09-27T07:10:26.063453Z",
            "url": "https://files.pythonhosted.org/packages/3d/39/04f5337fcd2985a7ec7472d2c1bede8b330314c9805c83449e7f69d6bc22/soundfile-0.11.0-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "76cd8611764b75b3acd2f7abe503adcb",
                "sha256": "08d9636815692f332e042990d449e79b888d288f0752226d8602e91523a0a29b"
            },
            "downloads": -1,
            "filename": "soundfile-0.11.0-py2.py3-none-win32.whl",
            "has_sig": false,
            "md5_digest": "76cd8611764b75b3acd2f7abe503adcb",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 886854,
            "upload_time": "2022-09-27T07:10:28",
            "upload_time_iso_8601": "2022-09-27T07:10:28.255450Z",
            "url": "https://files.pythonhosted.org/packages/cd/5a/14906b5f4911ab4d6de179667ff7aad4412b3b2456f36060b6bbe86dff9e/soundfile-0.11.0-py2.py3-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b72e0a937b2a31eddf8bd60e5ae48068",
                "sha256": "a4ab6f66ad222d8e144dcb6abc73fbb867c11da2934b677f9b129778a6c65112"
            },
            "downloads": -1,
            "filename": "soundfile-0.11.0-py2.py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b72e0a937b2a31eddf8bd60e5ae48068",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 1007727,
            "upload_time": "2022-09-27T07:10:30",
            "upload_time_iso_8601": "2022-09-27T07:10:30.936296Z",
            "url": "https://files.pythonhosted.org/packages/5b/c5/4a67efccbb2a8e2ae277a2f679d3ccdd2fcf882e882fd51cd671511336d5/soundfile-0.11.0-py2.py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4a7891caef4afa4d78f681a5728e7550",
                "sha256": "931738a1c93e8684c2d3e1d514ac63440ce827ec783ea0a2d3e4730e3dc58c18"
            },
            "downloads": -1,
            "filename": "soundfile-0.11.0.tar.gz",
            "has_sig": false,
            "md5_digest": "4a7891caef4afa4d78f681a5728e7550",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 41679,
            "upload_time": "2022-09-29T06:14:20",
            "upload_time_iso_8601": "2022-09-29T06:14:20.915454Z",
            "url": "https://files.pythonhosted.org/packages/e5/be/d5546b16c06f98d0eada0730a135d2650b1e947d2ebd656d4efb9b3c371c/soundfile-0.11.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-09-29 06:14:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "bastibe",
    "github_project": "python-soundfile",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "lcname": "soundfile"
}
        
Elapsed time: 0.01413s