forked from mlichter/audiolab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO
21 lines (18 loc) · 749 Bytes
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.. vim:syntax=rest
Things to do before a release
-----------------------------
- better error reporting (support error logging of sndfile ?): the
exceptions launched are pretty random...
- add inout argument in read method to avoid recreating a buffer.
- more tests
- add an audio player for at windows
Pending issues
--------------
- removing most warning from pylint
- handling in audiolab when first is not 0 (now, we have seek :))
Maybe ?
-------
- change array layout convention to numpy's ones (eg row major, not column
major), and add an axis argument. -> this is a bit tricky, actually, as
sndfile only supports interleaved data, where F order actually make sense.
Not sure what to do