Skip to content

Commit

Permalink
updated version number
Browse files Browse the repository at this point in the history
This release includes quite a few new features and bug fixes:
- a flush() method
- fixed bug that reported the wrong len()
- indexing now works for frames and channels
- read() reads to the end of the file by default
- fixed bug that seeked to the wrong place in some cases.

A big thanks to @mgeier, who helped to find and fix a lot of these issues!
  • Loading branch information
bastibe committed Feb 26, 2014
1 parent ac983e5 commit 37b75f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ these are the [Unofficial Windows Binaries for Python][pybuilds].
Having installed those, you can download the Windows installers for
PySoundFile:

[PySoundFile-0.4.1.win-amd64-py2.7](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.4.1.win-amd64-py2.7.exe)
[PySoundFile-0.4.1.win-amd64-py3.3](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.4.1.win-amd64-py3.3.exe)
[PySoundFile-0.4.1.win32-py2.7](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.4.1.win32-py2.7.exe)
[PySoundFile-0.4.1.win32-py3.3](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.4.1.win32-py3.3.exe)
[PySoundFile-0.5.0.win-amd64-py2.7](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.5.0.win-amd64-py2.7.exe)
[PySoundFile-0.5.0.win-amd64-py3.3](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.5.0.win-amd64-py3.3.exe)
[PySoundFile-0.5.0.win32-py2.7](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.5.0.win32-py2.7.exe)
[PySoundFile-0.5.0.win32-py3.3](https://github.com/bastibe/PySoundFile/raw/master/dist/PySoundFile-0.5.0.win32-py3.3.exe)

[WinPython]: https://code.google.com/p/winpython/
[pybuilds]: http://www.lfd.uci.edu/~gohlke/pythonlibs/
Expand Down Expand Up @@ -100,8 +100,8 @@ while len(data) > 0:
### Sequence Interface

Alternatively, slices can be used to access data at arbitrary
positions in the file. Note that slices currently only work on frame
indices, not channels.
positions in the file. If you index in two dimensions, you can select
single channels of a multi-channel file.

Here is an example of reading in a whole wave file into a NumPy array:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name='PySoundFile',
version='0.4.1',
version='0.5.0',
description='An audio library based on libsndfile, CFFI and NumPy',
author='Bastian Bechtold',
author_email='[email protected]',
Expand Down

0 comments on commit 37b75f7

Please sign in to comment.