You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+28-6Lines changed: 28 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,16 @@ interface for Python calling C code. CFFI is supported for CPython 2.6+,
18
18
|PySoundFile is BSD licensed (BSD 3-Clause License).
19
19
|(c) 2013, Bastian Bechtold
20
20
21
+
22
+
Breaking Changes
23
+
----------------
24
+
25
+
The latest release of PySoundFile cleans up many small inconsistencies, particularly in the the ordering and naming of function arguments. Therefore, old code will probably not work any more.
26
+
27
+
It also adds a number of great new features, such as global ``read`` and ``write`` functions that do not require you to open a ``SoundFile``, or a ``blocks`` function that can read a sound file one block at a time. It has also grown a lot more flexible and powerful at opening things like streams, buffers, or file descriptors.
28
+
29
+
With all these improvements, we feel that the indexing interface is not needed any more. It is now officially marked as deprecated and might be removed in the future.
30
+
21
31
Installation
22
32
------------
23
33
@@ -39,16 +49,16 @@ manager, for example ``sudo apt-get install libsndfile``.
39
49
40
50
With CFFI, Numpy, and libsndfile installed, you can use `pip
41
51
<http://pip.readthedocs.org/en/latest/installing.html>`__ to install
42
-
`PySoundFile <https://pypi.python.org/pypi/PySoundFile/0.5.0>`__ with
52
+
`PySoundFile <https://pypi.python.org/pypi/PySoundFile/0.6.0>`__ with
43
53
``pip install pysoundfile`` or ``pip install pysoundfile --user`` if you
44
54
don't have administrator privileges. If you are running Windows you
45
55
should download the Windows installers for PySoundFile instead (which
0 commit comments