Releases: interactive-sonification/pya
Releases · interactive-sonification/pya
v0.5.2
What's Changed
- select correct device if index == 0 by @Baum-TestTester in #78
- Bf/aserver wrong device duplicate code by @wiccy46 in #81
- Refactor/pyamapping by @dreinsch in #79
- Make pyaudio optional by @dreinsch in #82
- Add typehints to function args by @wiccy46 in #80
- Develop by @wiccy46 in #83
New Contributors
- @Baum-TestTester made their first contribution in #78
- @dreinsch made their first contribution in #79
Full Changelog: v0.5.1...v0.5.2
Release 0.5.1
- Now support Python3.10
- Bugfix #67: When the channels argument of Aserver and Arecorder has not been set it was determined by the default device instead of the actual device.
Release 0.5.0
- Make Aserver a context that can wrap play inside. This context will handle boot() and quit() automatically.
- Move OSX/Linux CI to Github Action from TravisCI.
- Bump numpy dependency, numpy.linspace usage is updated.
- Make Asig.play() arguments explicit.
- Asig.dur property that returns the duration in seconds of the signal
Release 0.4.2
- Add logging helper function.
- Make sure
pya
runs on Python3.8 - Bugfix #43: Handle
None
as a return value ofget_server_info
inpya.helper.backend.determine_backend
(thanks @paulvickers)
Release 0.4.1
- Fix bug of extend mode result in a change of dtype (from the default f32 to f64). Now it is fixed at f32.
- Add convolve() method. A convolution method (default to fft). Now you can apply reverb, do autocorrelation to the signal. (#40)
- Update Ugen docstring and remove deprecated variable names (#39)
- namespace improvement.
sanic
andnotebook
are now optional: If you plan to useJupyterBackend
, installpya
withpip install pya[remote]
(#38, #41)
Release 0.4.0
- new Amfcc class for MFCC feature extraction
- new helper.visualization.py and gridplot()
- optimise plot() methods of all classes for better consistency in both style and the API
- new helper functions: padding, is_pow2, next_pow2, round_half_up, rolling_window, signal_to_frame,
magspec, powspec, hz2mel, mel2hz_ - Fixed bug that for multichanels spectrum the rfft is not performed on the x-axis
Release 0.3.3
- Bugfix #34: Improve indexing of Asig
- Added developer tools for documentation generation
- Improved string handling to prevent Python 3.8 warnings
- Fixed reverse proxy resolution in JupyterBackend for Binder hosts other than Binderhub
- Fixed travis job configuration
Release 0.3.2
- Fixed bug of multi channel fade_in fade_out
- Introduced timeslice in extend setitem mode as long as stop reaches the end of the array.
- Added Sphinx documentation which can be found at https://interactive-sonification.github.io/pya
- Introduced new Arecorder method to individualize channel selection and gain adjustment to each channel
- Added Binder links to Readme
- Introduced Jupyter backend based on WebAudio
- Updated example notebook to use WebAudio when used with Binder
- Switched test framework from nosetests to pytest
Release 0.3.1
0.3.1 is a minor release and includes changes concerning dependencies as well as a new backend structure, a bugfix and new convenience functions:
- Remove ffmpeg from requirement, and it has to be installed via conda or manually
- Decouple pyaudio from Aserver and Arecorder
- Introduce backends interface: PyAudio(), Dummy()
- add device_info() helper function which prints audio device information in a tabular form
- Bugfix #23: Add a small delay to server booting to prevent issues when Aserver and Arecorder are initialized back-to-back
- Helper function
record
has been dropped due to legacy reasons. An improved version will be introduced in 0.3.2.
Release 0.3.0
- Restructure Asig, Astft, Aspec into different files
- Add Arecorder class
- Several bug fixes
- Made ffmpeg optional
- Introduced CI testing with travis (*nix) and appveyor (Windows)
- Introduced coveralls test coverage analysis