14
0

- update to 0.9.0:

* 'getformats()' returns a dictionary of name / value pairs, one for each of the card's
    supported formats - e.g. '{"U8": 1, "S16_LE": 2}',
  * 'getchannels()' returns a list of the supported channel numbers, e.g. '[1, 2]',
  * 'getrates()' returns supported sample rates for the device, e.g. '[48000]',
  * 'getratebounds()' returns the device's official minimum and maximum supported 
     sample rates as a tuple, e.g. '(4000, 48000)'.
  * Prevent hang on close after capturing audio
  * Return an empty string/bytestring when 'read()' detects an 
    overrun. Previously the returned data was undefined
  * Unlimited setperiod buffer size when reading frames

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyalsaaudio?expand=0&rev=9
This commit is contained in:
2022-03-26 18:46:17 +00:00
committed by Git OBS Bridge
parent 9ceafd7b67
commit 953f80ce7a
4 changed files with 24 additions and 10 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Sat Mar 26 18:44:58 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 0.9.0:
* 'getformats()' returns a dictionary of name / value pairs, one for each of the card's
supported formats - e.g. '{"U8": 1, "S16_LE": 2}',
* 'getchannels()' returns a list of the supported channel numbers, e.g. '[1, 2]',
* 'getrates()' returns supported sample rates for the device, e.g. '[48000]',
* 'getratebounds()' returns the device's official minimum and maximum supported
sample rates as a tuple, e.g. '(4000, 48000)'.
* Prevent hang on close after capturing audio
* Return an empty string/bytestring when 'read()' detects an
overrun. Previously the returned data was undefined
* Unlimited setperiod buffer size when reading frames
-------------------------------------------------------------------
Wed Oct 18 16:45:30 UTC 2017 - toddrme2178@gmail.com