miniaudio


Nameminiaudio JSON
Version 1.59 PyPI version JSON
download
home_pagehttps://github.com/irmen/pyminiaudio
Summarypython bindings for the miniaudio library and its decoders (mp3, flac, ogg vorbis, wav)
upload_time2023-06-04 15:00:11
maintainer
docs_urlNone
authorIrmen de Jong
requires_python
licenseMIT
keywords sound audio playback recording conversion decoding
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Latest Version](https://img.shields.io/pypi/v/miniaudio.svg)](https://pypi.python.org/pypi/miniaudio/)


# Python miniaudio

Multiplatform audio playback, recording, decoding and sample format conversion for
Linux (including Raspberri Pi), Windows, Mac and others.

Installation for most users: via [Pypi](https://pypi.org/project/miniaudio/), Raspberri Pi builds via [PiWheels](https://www.piwheels.org/project/miniaudio/).


This is a Pythonic interface to the cross-platform [miniaudio](https://github.com/dr-soft/miniaudio/) C library:

- audio operations run in the background
- python bindings for most of the functions offered in the miniaudio library:
  - reading and decoding audio files
  - getting audio file properties (such as duration, number of channels, sample rate)
  - converting sample formats and frequencies
  - streaming large audio files
  - audio playback
  - audio recording
- decoders for wav, flac, vorbis and mp3
- Audio file and Icecast internet radio streaming
- Python enums instead of just some integers for special values
- several classes to represent the main functions of the library
- generators for the Audio playback and recording
- sample data is usually in the form of a Python ``array`` with appropriately sized elements
  depending on the sample width (rather than a raw block of bytes)
- TODO: filters, waveform generators?


*Requires Python 3.6 or newer.  Also works on pypy3 (because it uses cffi).*

Software license for these Python bindings, miniaudio and the decoders: MIT

## Synthesizer, modplayer?

If you like this library you may also be interested in my [software FM synthesizer](https://pypi.org/project/synthplayer/)
or my [mod player](https://pypi.org/project/libxmplite/) which uses libxmp.


## Examples

### Most basic audio file playback

```python
import miniaudio
stream = miniaudio.stream_file("samples/music.mp3")
with miniaudio.PlaybackDevice() as device:
    device.start(stream)
    input("Audio file playing in the background. Enter to stop playback: ")
```

### Playback of an unsupported file format

This example uses ffmpeg as an external tool to decode an audio file in a format
that miniaudio itself can't decode (m4a/aac in this case):

```python
import subprocess
import miniaudio

channels = 2
sample_rate = 44100
sample_width = 2  # 16 bit pcm
filename = "samples/music.m4a"  # AAC encoded audio file

def stream_pcm(source):
    required_frames = yield b""  # generator initialization
    while True:
        required_bytes = required_frames * channels * sample_width
        sample_data = source.read(required_bytes)
        if not sample_data:
            break
        print(".", end="", flush=True)
        required_frames = yield sample_data

with miniaudio.PlaybackDevice(output_format=miniaudio.SampleFormat.SIGNED16,
                              nchannels=channels, sample_rate=sample_rate) as device:
    ffmpeg = subprocess.Popen(["ffmpeg", "-v", "fatal", "-hide_banner", "-nostdin",
                               "-i", filename, "-f", "s16le", "-acodec", "pcm_s16le",
                               "-ac", str(channels), "-ar", str(sample_rate), "-"],
                              stdin=None, stdout=subprocess.PIPE)
    stream = stream_pcm(ffmpeg.stdout)
    next(stream)  # start the generator
    device.start(stream)
    input("Audio file playing in the background. Enter to stop playback: ")
    ffmpeg.terminate()
```

## API

### Note: everything below is automatically generated from comments in the source code files. Do not edit in this readme directly.

*enum class*  ``Backend``
 names:  ``WASAPI`` ``DSOUND`` ``WINMM`` ``COREAUDIO`` ``SNDIO`` ``AUDIO4`` ``OSS`` ``PULSEAUDIO`` ``ALSA`` ``JACK`` ``AAUDIO`` ``OPENSL`` ``WEBAUDIO`` ``CUSTOM`` ``NULL``
> Operating system audio backend to use (only a subset will be available)


*enum class*  ``ChannelMixMode``
 names:  ``RECTANGULAR`` ``SIMPLE`` ``CUSTOMWEIGHTS``
> How to mix channels when converting


*enum class*  ``DeviceType``
 names:  ``PLAYBACK`` ``CAPTURE`` ``DUPLEX``
> Type of audio device


*enum class*  ``DitherMode``
 names:  ``NONE`` ``RECTANGLE`` ``TRIANGLE``
> How to dither when converting


*enum class*  ``FileFormat``
 names:  ``UNKNOWN`` ``WAV`` ``FLAC`` ``MP3`` ``VORBIS``
> Audio file format


*enum class*  ``SampleFormat``
 names:  ``UNKNOWN`` ``UNSIGNED8`` ``SIGNED16`` ``SIGNED24`` ``SIGNED32`` ``FLOAT32``
> Sample format in memory


*enum class*  ``SeekOrigin``
 names:  ``START`` ``CURRENT``
> How to seek() in a source


*enum class*  ``ThreadPriority``
 names:  ``IDLE`` ``LOWEST`` ``LOW`` ``NORMAL`` ``HIGH`` ``HIGHEST`` ``REALTIME``
> The priority of the worker thread (default=HIGHEST)


*function*  ``convert_frames  (from_fmt: miniaudio.SampleFormat, from_numchannels: int, from_samplerate: int, sourcedata: bytes, to_fmt: miniaudio.SampleFormat, to_numchannels: int, to_samplerate: int) -> bytearray``
> Convert audio frames in source sample format with a certain number of channels, to another sample
format and possibly down/upmixing the number of channels as well.


*function*  ``convert_sample_format  (from_fmt: miniaudio.SampleFormat, sourcedata: bytes, to_fmt: miniaudio.SampleFormat, dither: miniaudio.DitherMode = <DitherMode.NONE: 0>) -> bytearray``
> Convert a raw buffer of pcm samples to another sample format. The result is returned as another
raw pcm sample buffer


*function*  ``decode  (data: bytes, output_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, dither: miniaudio.DitherMode = <DitherMode.NONE: 0>) -> miniaudio.DecodedSoundFile``
> Convenience function to decode any supported audio file in memory to raw PCM samples in your
chosen format.


*function*  ``decode_file  (filename: str, output_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, dither: miniaudio.DitherMode = <DitherMode.NONE: 0>) -> miniaudio.DecodedSoundFile``
> Convenience function to decode any supported audio file to raw PCM samples in your chosen format.


*function*  ``flac_get_file_info  (filename: str) -> miniaudio.SoundFileInfo``
> Fetch some information about the audio file (flac format).


*function*  ``flac_get_info  (data: bytes) -> miniaudio.SoundFileInfo``
> Fetch some information about the audio data (flac format).


*function*  ``flac_read_f32  (data: bytes) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole flac audio file. Resulting sample format is 32 bits float.


*function*  ``flac_read_file_f32  (filename: str) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole flac audio file. Resulting sample format is 32 bits float.


*function*  ``flac_read_file_s16  (filename: str) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole flac audio file. Resulting sample format is 16 bits signed integer.


*function*  ``flac_read_file_s32  (filename: str) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole flac audio file. Resulting sample format is 32 bits signed integer.


*function*  ``flac_read_s16  (data: bytes) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole flac audio data. Resulting sample format is 16 bits signed integer.


*function*  ``flac_read_s32  (data: bytes) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole flac audio data. Resulting sample format is 32 bits signed integer.


*function*  ``flac_stream_file  (filename: str, frames_to_read: int = 1024, seek_frame: int = 0) -> Generator[array.array, NoneType, NoneType]``
> Streams the flac audio file as interleaved 16 bit signed integer sample arrays segments. This uses
a fixed chunk size and cannot be used as a generic miniaudio decoder input stream. Consider using
stream_file() instead.


*function*  ``get_enabled_backends  () -> Set[miniaudio.Backend]``
> Returns the set of available backends by the compilation environment for the underlying miniaudio
C library


*function*  ``get_file_info  (filename: str) -> miniaudio.SoundFileInfo``
> Fetch some information about the audio file.


*function*  ``is_backend_enabled  (backend: miniaudio.Backend) -> bool``
> Determines whether or not the given backend is available by the compilation environment for the
underlying miniaudio C library


*function*  ``is_loopback_supported  (backend: miniaudio.Backend) -> bool``
> Determines whether or not loopback mode is support by a backend.


*function*  ``lib_version  () -> str``
> Returns the version string of the underlying miniaudio C library


*function*  ``mp3_get_file_info  (filename: str) -> miniaudio.SoundFileInfo``
> Fetch some information about the audio file (mp3 format).


*function*  ``mp3_get_info  (data: bytes) -> miniaudio.SoundFileInfo``
> Fetch some information about the audio data (mp3 format).


*function*  ``mp3_read_f32  (data: bytes) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole mp3 audio data. Resulting sample format is 32 bits float.


*function*  ``mp3_read_file_f32  (filename: str) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole mp3 audio file. Resulting sample format is 32 bits float.


*function*  ``mp3_read_file_s16  (filename: str) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole mp3 audio file. Resulting sample format is 16 bits signed integer.


*function*  ``mp3_read_s16  (data: bytes) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole mp3 audio data. Resulting sample format is 16 bits signed integer.


*function*  ``mp3_stream_file  (filename: str, frames_to_read: int = 1024, seek_frame: int = 0) -> Generator[array.array, NoneType, NoneType]``
> Streams the mp3 audio file as interleaved 16 bit signed integer sample arrays segments. This uses
a fixed chunk size and cannot be used as a generic miniaudio decoder input stream. Consider using
stream_file() instead.


*function*  ``read_file  (filename: str, convert_to_16bit: bool = False) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole audio file. Miniaudio will attempt to return the sound data in exactly
the same format as in the file. Unless you set convert_convert_to_16bit to True, then the result is
always a 16 bit sample format.


*function*  ``stream_any  (source: miniaudio.StreamableSource, source_format: miniaudio.FileFormat = <FileFormat.UNKNOWN: 0>, output_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, frames_to_read: int = 1024, dither: miniaudio.DitherMode = <DitherMode.NONE: 0>, seek_frame: int = 0) -> Generator[array.array, int, NoneType]``
> Convenience function that returns a generator to decode and stream any source of encoded audio
data (such as a network stream). Stream result is chunks of raw PCM samples in the chosen format. If
you send() a number into the generator rather than just using next() on it, you'll get that given
number of frames, instead of the default configured amount. This is particularly useful to plug this
stream into an audio device callback that wants a variable number of frames per call.


*function*  ``stream_file  (filename: str, output_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, frames_to_read: int = 1024, dither: miniaudio.DitherMode = <DitherMode.NONE: 0>, seek_frame: int = 0) -> Generator[array.array, int, NoneType]``
> Convenience generator function to decode and stream any supported audio file as chunks of raw PCM
samples in the chosen format. If you send() a number into the generator rather than just using
next() on it, you'll get that given number of frames, instead of the default configured amount. This
is particularly useful to plug this stream into an audio device callback that wants a variable
number of frames per call.


*function*  ``stream_memory  (data: bytes, output_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, frames_to_read: int = 1024, dither: miniaudio.DitherMode = <DitherMode.NONE: 0>) -> Generator[array.array, int, NoneType]``
> Convenience generator function to decode and stream any supported audio file in memory as chunks
of raw PCM samples in the chosen format. If you send() a number into the generator rather than just
using next() on it, you'll get that given number of frames, instead of the default configured
amount. This is particularly useful to plug this stream into an audio device callback that wants a
variable number of frames per call.


*function*  ``stream_raw_pcm_memory  (pcmdata: Union[array.array, memoryview, bytes], nchannels: int, sample_width: int, frames_to_read: int = 4096) -> Generator[Union[bytes, array.array], int, NoneType]``
> Convenience generator function to stream raw pcm audio data from memory. Usually you don't need to
use this as the library provides many other streaming options that work on much smaller, encoded,
audio data. However, in the odd case that you only have already decoded raw pcm data you can use
this generator as a stream source.  The data can be provided in ``array`` type or ``bytes``,
``memoryview`` or even a numpy array. Be sure to also specify the correct number of channels that
the audio data has, and the sample with in bytes.


*function*  ``stream_with_callbacks  (sample_stream: Generator[Union[bytes, array.array], int, NoneType], progress_callback: Optional[Callable[[int], NoneType]] = None, frame_process_method: Optional[Callable[[Union[bytes, array.array]], Union[bytes, array.array]]] = None, end_callback: Optional[Callable] = None) -> Generator[Union[bytes, array.array], int, NoneType]``
> Convenience generator function to add callback and processing functionality to another stream. You
can specify : > A callback function that gets called during play and takes an int for the number of
frames played.  > A function that can be used to process raw data frames before they are yielded
back (takes an array.array or bytes, returns an array.array or bytes) *Note: if the processing
method is slow it will result in audio glitchiness  > A callback function that gets called when the
stream ends playing.


*function*  ``vorbis_get_file_info  (filename: str) -> miniaudio.SoundFileInfo``
> Fetch some information about the audio file (vorbis format).


*function*  ``vorbis_get_info  (data: bytes) -> miniaudio.SoundFileInfo``
> Fetch some information about the audio data (vorbis format).


*function*  ``vorbis_read  (data: bytes) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole vorbis audio data. Resulting sample format is 16 bits signed integer.


*function*  ``vorbis_read_file  (filename: str) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole vorbis audio file. Resulting sample format is 16 bits signed integer.


*function*  ``vorbis_stream_file  (filename: str, seek_frame: int = 0) -> Generator[array.array, NoneType, NoneType]``
> Streams the ogg vorbis audio file as interleaved 16 bit signed integer sample arrays segments.
This uses a variable unconfigurable chunk size and cannot be used as a generic miniaudio decoder
input stream. Consider using stream_file() instead.


*function*  ``wav_get_file_info  (filename: str) -> miniaudio.SoundFileInfo``
> Fetch some information about the audio file (wav format).


*function*  ``wav_get_info  (data: bytes) -> miniaudio.SoundFileInfo``
> Fetch some information about the audio data (wav format).


*function*  ``wav_read_f32  (data: bytes) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole wav audio data. Resulting sample format is 32 bits float.


*function*  ``wav_read_file_f32  (filename: str) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole wav audio file. Resulting sample format is 32 bits float.


*function*  ``wav_read_file_s16  (filename: str) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole wav audio file. Resulting sample format is 16 bits signed integer.


*function*  ``wav_read_file_s32  (filename: str) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole wav audio file. Resulting sample format is 32 bits signed integer.


*function*  ``wav_read_s16  (data: bytes) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole wav audio data. Resulting sample format is 16 bits signed integer.


*function*  ``wav_read_s32  (data: bytes) -> miniaudio.DecodedSoundFile``
> Reads and decodes the whole wav audio data. Resulting sample format is 32 bits signed integer.


*function*  ``wav_stream_file  (filename: str, frames_to_read: int = 1024, seek_frame: int = 0) -> Generator[array.array, NoneType, NoneType]``
> Streams the WAV audio file as interleaved 16 bit signed integer sample arrays segments. This uses
a fixed chunk size and cannot be used as a generic miniaudio decoder input stream. Consider using
stream_file() instead.


*function*  ``wav_write_file  (filename: str, sound: miniaudio.DecodedSoundFile) ``
> Writes the pcm sound to a WAV file


*function*  ``width_from_format  (sampleformat: miniaudio.SampleFormat) -> int``
> returns the sample width in bytes, of the given sample format.


*class*  ``CaptureDevice``

``CaptureDevice  (self, input_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, buffersize_msec: int = 200, device_id: Optional[_cffi_backend._CDataBase] = None, callback_periods: int = 0, backends: Optional[List[miniaudio.Backend]] = None, thread_prio: miniaudio.ThreadPriority = <ThreadPriority.HIGHEST: 0>, app_name: str = '') ``
> An audio device provided by miniaudio, for audio capture (recording).

> *method*  ``close  (self) ``
> > Halt playback or capture and close down the device. If you use the device as a context manager,
it will be closed automatically.

> *method*  ``start  (self, callback_generator: Generator[NoneType, Union[bytes, array.array], NoneType]) ``
> > Start the audio device: capture (recording) begins. The recorded audio data is sent to the given
callback generator as raw bytes. (it should already be started before)

> *method*  ``stop  (self) ``
> > Halt playback or capture.


*class*  ``DecodeError``

``DecodeError  (self, /, *args, **kwargs)``
> When something went wrong during decoding an audio file.


*class*  ``DecodedSoundFile``

``DecodedSoundFile  (self, name: str, nchannels: int, sample_rate: int, sample_format: miniaudio.SampleFormat, samples: array.array) ``
> Contains various properties and also the PCM frames of a fully decoded audio file.


*class*  ``Devices``

``Devices  (self, backends: Optional[List[miniaudio.Backend]] = None) ``
> Query the audio playback and record devices that miniaudio provides

> *method*  ``get_captures  (self) -> List[Dict[str, Any]]``
> > Get a list of capture devices and some details about them

> *method*  ``get_playbacks  (self) -> List[Dict[str, Any]]``
> > Get a list of playback devices and some details about them


*class*  ``DuplexStream``

``DuplexStream  (self, playback_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, playback_channels: int = 2, capture_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, capture_channels: int = 2, sample_rate: int = 44100, buffersize_msec: int = 200, playback_device_id: Optional[_cffi_backend._CDataBase] = None, capture_device_id: Optional[_cffi_backend._CDataBase] = None, callback_periods: int = 0, backends: Optional[List[miniaudio.Backend]] = None, thread_prio: miniaudio.ThreadPriority = <ThreadPriority.HIGHEST: 0>, app_name: str = '') ``
> Joins a capture device and a playback device.

> *method*  ``close  (self) ``
> > Halt playback or capture and close down the device. If you use the device as a context manager,
it will be closed automatically.

> *method*  ``start  (self, callback_generator: Generator[Union[bytes, array.array], Union[bytes, array.array], NoneType]) ``
> > Start the audio device: playback and capture begin. The audio data for playback is provided by
the given callback generator, which is sent the recorded audio data at the same time. (it should
already be started before passing it in)

> *method*  ``stop  (self) ``
> > Halt playback or capture.


*class*  ``IceCastClient``

``IceCastClient  (self, url: str, update_stream_title: Callable[[ForwardRef('IceCastClient'), str], NoneType] = None, ssl_context: 'ssl.SSLContext' = None) ``
> A simple client for IceCast audio streams as miniaudio streamable source. If the stream has Icy
MetaData, the stream_title attribute will be updated with the actual title taken from the metadata.
You can also provide a callback to be called when a new stream title is available. The downloading
of the data from the internet is done in a background thread and it tries to keep a (small) buffer
filled with available data to read. You can optionally provide a custom ssl.SSLContext in the
ssl_context parameter, if you need to change the way SSL connections are configured (certificates,
checks, etc).

> *method*  ``close  (self) ``
> > Stop the stream, aborting the background downloading.

> *method*  ``read  (self, num_bytes: int) -> bytes``
> > Read a chunk of data from the stream.

> *method*  ``seek  (self, offset: int, origin: miniaudio.SeekOrigin) -> bool``
> > Override this if the stream supports seeking. Note: seek support is sometimes not needed if you
give the file type to a decoder upfront. You can ignore this method then.


*class*  ``MiniaudioError``

``MiniaudioError  (self, /, *args, **kwargs)``
> When a miniaudio specific error occurs.


*class*  ``PlaybackDevice``

``PlaybackDevice  (self, output_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, buffersize_msec: int = 200, device_id: Optional[_cffi_backend._CDataBase] = None, callback_periods: int = 0, backends: Optional[List[miniaudio.Backend]] = None, thread_prio: miniaudio.ThreadPriority = <ThreadPriority.HIGHEST: 0>, app_name: str = '') ``
> An audio device provided by miniaudio, for audio playback.

> *method*  ``close  (self) ``
> > Halt playback or capture and close down the device. If you use the device as a context manager,
it will be closed automatically.

> *method*  ``start  (self, callback_generator: Generator[Union[bytes, array.array], int, NoneType]) ``
> > Start the audio device: playback begins. The audio data is provided by the given callback
generator. The generator gets sent the required number of frames and should yield the sample data as
raw bytes, a memoryview, an array.array, or as a numpy array with shape (numframes, numchannels).
The generator should already be started before passing it in.

> *method*  ``stop  (self) ``
> > Halt playback or capture.


*class*  ``SoundFileInfo``

``SoundFileInfo  (self, name: str, file_format: miniaudio.FileFormat, nchannels: int, sample_rate: int, sample_format: miniaudio.SampleFormat, duration: float, num_frames: int, sub_format: int = None) ``
> Contains various properties of an audio file.


*class*  ``StreamableSource``

``StreamableSource  (self, /, *args, **kwargs)``
> Base class for streams of audio data bytes. Can be used as a contextmanager, to properly call
close().

> *method*  ``close  (self) ``
> > Override this to properly close the stream and free resources.

> *method*  ``read  (self, num_bytes: int) -> Union[bytes, memoryview]``
> > override this to provide data bytes to the consumer of the stream

> *method*  ``seek  (self, offset: int, origin: miniaudio.SeekOrigin) -> bool``
> > Override this if the stream supports seeking. Note: seek support is sometimes not needed if you
give the file type to a decoder upfront. You can ignore this method then.


*class*  ``WavFileReadStream``

``WavFileReadStream  (self, pcm_sample_gen: Generator[Union[bytes, array.array], int, NoneType], sample_rate: int, nchannels: int, output_format: miniaudio.SampleFormat, max_frames: int = 0) ``
> An IO stream that reads as a .wav file, and which gets its pcm samples from the provided producer

> *method*  ``close  (self) ``
> > Close the file

> *method*  ``read  (self, amount: int = 9223372036854775807) -> Optional[bytes]``
> > Read up to the given amount of bytes from the file.




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/irmen/pyminiaudio",
    "name": "miniaudio",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "sound,audio,playback,recording,conversion,decoding",
    "author": "Irmen de Jong",
    "author_email": "irmen@razorvine.net",
    "download_url": "https://files.pythonhosted.org/packages/f0/0f/8f101980bf9085809dad55dcc55663cf0c2e7d09b97d26d2d68d42bec4a5/miniaudio-1.59.tar.gz",
    "platform": null,
    "description": "[![Latest Version](https://img.shields.io/pypi/v/miniaudio.svg)](https://pypi.python.org/pypi/miniaudio/)\n\n\n# Python miniaudio\n\nMultiplatform audio playback, recording, decoding and sample format conversion for\nLinux (including Raspberri Pi), Windows, Mac and others.\n\nInstallation for most users: via [Pypi](https://pypi.org/project/miniaudio/), Raspberri Pi builds via [PiWheels](https://www.piwheels.org/project/miniaudio/).\n\n\nThis is a Pythonic interface to the cross-platform [miniaudio](https://github.com/dr-soft/miniaudio/) C library:\n\n- audio operations run in the background\n- python bindings for most of the functions offered in the miniaudio library:\n  - reading and decoding audio files\n  - getting audio file properties (such as duration, number of channels, sample rate)\n  - converting sample formats and frequencies\n  - streaming large audio files\n  - audio playback\n  - audio recording\n- decoders for wav, flac, vorbis and mp3\n- Audio file and Icecast internet radio streaming\n- Python enums instead of just some integers for special values\n- several classes to represent the main functions of the library\n- generators for the Audio playback and recording\n- sample data is usually in the form of a Python ``array`` with appropriately sized elements\n  depending on the sample width (rather than a raw block of bytes)\n- TODO: filters, waveform generators?\n\n\n*Requires Python 3.6 or newer.  Also works on pypy3 (because it uses cffi).*\n\nSoftware license for these Python bindings, miniaudio and the decoders: MIT\n\n## Synthesizer, modplayer?\n\nIf you like this library you may also be interested in my [software FM synthesizer](https://pypi.org/project/synthplayer/)\nor my [mod player](https://pypi.org/project/libxmplite/) which uses libxmp.\n\n\n## Examples\n\n### Most basic audio file playback\n\n```python\nimport miniaudio\nstream = miniaudio.stream_file(\"samples/music.mp3\")\nwith miniaudio.PlaybackDevice() as device:\n    device.start(stream)\n    input(\"Audio file playing in the background. Enter to stop playback: \")\n```\n\n### Playback of an unsupported file format\n\nThis example uses ffmpeg as an external tool to decode an audio file in a format\nthat miniaudio itself can't decode (m4a/aac in this case):\n\n```python\nimport subprocess\nimport miniaudio\n\nchannels = 2\nsample_rate = 44100\nsample_width = 2  # 16 bit pcm\nfilename = \"samples/music.m4a\"  # AAC encoded audio file\n\ndef stream_pcm(source):\n    required_frames = yield b\"\"  # generator initialization\n    while True:\n        required_bytes = required_frames * channels * sample_width\n        sample_data = source.read(required_bytes)\n        if not sample_data:\n            break\n        print(\".\", end=\"\", flush=True)\n        required_frames = yield sample_data\n\nwith miniaudio.PlaybackDevice(output_format=miniaudio.SampleFormat.SIGNED16,\n                              nchannels=channels, sample_rate=sample_rate) as device:\n    ffmpeg = subprocess.Popen([\"ffmpeg\", \"-v\", \"fatal\", \"-hide_banner\", \"-nostdin\",\n                               \"-i\", filename, \"-f\", \"s16le\", \"-acodec\", \"pcm_s16le\",\n                               \"-ac\", str(channels), \"-ar\", str(sample_rate), \"-\"],\n                              stdin=None, stdout=subprocess.PIPE)\n    stream = stream_pcm(ffmpeg.stdout)\n    next(stream)  # start the generator\n    device.start(stream)\n    input(\"Audio file playing in the background. Enter to stop playback: \")\n    ffmpeg.terminate()\n```\n\n## API\n\n### Note: everything below is automatically generated from comments in the source code files. Do not edit in this readme directly.\n\n*enum class*  ``Backend``\n names:  ``WASAPI`` ``DSOUND`` ``WINMM`` ``COREAUDIO`` ``SNDIO`` ``AUDIO4`` ``OSS`` ``PULSEAUDIO`` ``ALSA`` ``JACK`` ``AAUDIO`` ``OPENSL`` ``WEBAUDIO`` ``CUSTOM`` ``NULL``\n> Operating system audio backend to use (only a subset will be available)\n\n\n*enum class*  ``ChannelMixMode``\n names:  ``RECTANGULAR`` ``SIMPLE`` ``CUSTOMWEIGHTS``\n> How to mix channels when converting\n\n\n*enum class*  ``DeviceType``\n names:  ``PLAYBACK`` ``CAPTURE`` ``DUPLEX``\n> Type of audio device\n\n\n*enum class*  ``DitherMode``\n names:  ``NONE`` ``RECTANGLE`` ``TRIANGLE``\n> How to dither when converting\n\n\n*enum class*  ``FileFormat``\n names:  ``UNKNOWN`` ``WAV`` ``FLAC`` ``MP3`` ``VORBIS``\n> Audio file format\n\n\n*enum class*  ``SampleFormat``\n names:  ``UNKNOWN`` ``UNSIGNED8`` ``SIGNED16`` ``SIGNED24`` ``SIGNED32`` ``FLOAT32``\n> Sample format in memory\n\n\n*enum class*  ``SeekOrigin``\n names:  ``START`` ``CURRENT``\n> How to seek() in a source\n\n\n*enum class*  ``ThreadPriority``\n names:  ``IDLE`` ``LOWEST`` ``LOW`` ``NORMAL`` ``HIGH`` ``HIGHEST`` ``REALTIME``\n> The priority of the worker thread (default=HIGHEST)\n\n\n*function*  ``convert_frames  (from_fmt: miniaudio.SampleFormat, from_numchannels: int, from_samplerate: int, sourcedata: bytes, to_fmt: miniaudio.SampleFormat, to_numchannels: int, to_samplerate: int) -> bytearray``\n> Convert audio frames in source sample format with a certain number of channels, to another sample\nformat and possibly down/upmixing the number of channels as well.\n\n\n*function*  ``convert_sample_format  (from_fmt: miniaudio.SampleFormat, sourcedata: bytes, to_fmt: miniaudio.SampleFormat, dither: miniaudio.DitherMode = <DitherMode.NONE: 0>) -> bytearray``\n> Convert a raw buffer of pcm samples to another sample format. The result is returned as another\nraw pcm sample buffer\n\n\n*function*  ``decode  (data: bytes, output_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, dither: miniaudio.DitherMode = <DitherMode.NONE: 0>) -> miniaudio.DecodedSoundFile``\n> Convenience function to decode any supported audio file in memory to raw PCM samples in your\nchosen format.\n\n\n*function*  ``decode_file  (filename: str, output_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, dither: miniaudio.DitherMode = <DitherMode.NONE: 0>) -> miniaudio.DecodedSoundFile``\n> Convenience function to decode any supported audio file to raw PCM samples in your chosen format.\n\n\n*function*  ``flac_get_file_info  (filename: str) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio file (flac format).\n\n\n*function*  ``flac_get_info  (data: bytes) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio data (flac format).\n\n\n*function*  ``flac_read_f32  (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole flac audio file. Resulting sample format is 32 bits float.\n\n\n*function*  ``flac_read_file_f32  (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole flac audio file. Resulting sample format is 32 bits float.\n\n\n*function*  ``flac_read_file_s16  (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole flac audio file. Resulting sample format is 16 bits signed integer.\n\n\n*function*  ``flac_read_file_s32  (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole flac audio file. Resulting sample format is 32 bits signed integer.\n\n\n*function*  ``flac_read_s16  (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole flac audio data. Resulting sample format is 16 bits signed integer.\n\n\n*function*  ``flac_read_s32  (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole flac audio data. Resulting sample format is 32 bits signed integer.\n\n\n*function*  ``flac_stream_file  (filename: str, frames_to_read: int = 1024, seek_frame: int = 0) -> Generator[array.array, NoneType, NoneType]``\n> Streams the flac audio file as interleaved 16 bit signed integer sample arrays segments. This uses\na fixed chunk size and cannot be used as a generic miniaudio decoder input stream. Consider using\nstream_file() instead.\n\n\n*function*  ``get_enabled_backends  () -> Set[miniaudio.Backend]``\n> Returns the set of available backends by the compilation environment for the underlying miniaudio\nC library\n\n\n*function*  ``get_file_info  (filename: str) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio file.\n\n\n*function*  ``is_backend_enabled  (backend: miniaudio.Backend) -> bool``\n> Determines whether or not the given backend is available by the compilation environment for the\nunderlying miniaudio C library\n\n\n*function*  ``is_loopback_supported  (backend: miniaudio.Backend) -> bool``\n> Determines whether or not loopback mode is support by a backend.\n\n\n*function*  ``lib_version  () -> str``\n> Returns the version string of the underlying miniaudio C library\n\n\n*function*  ``mp3_get_file_info  (filename: str) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio file (mp3 format).\n\n\n*function*  ``mp3_get_info  (data: bytes) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio data (mp3 format).\n\n\n*function*  ``mp3_read_f32  (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole mp3 audio data. Resulting sample format is 32 bits float.\n\n\n*function*  ``mp3_read_file_f32  (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole mp3 audio file. Resulting sample format is 32 bits float.\n\n\n*function*  ``mp3_read_file_s16  (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole mp3 audio file. Resulting sample format is 16 bits signed integer.\n\n\n*function*  ``mp3_read_s16  (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole mp3 audio data. Resulting sample format is 16 bits signed integer.\n\n\n*function*  ``mp3_stream_file  (filename: str, frames_to_read: int = 1024, seek_frame: int = 0) -> Generator[array.array, NoneType, NoneType]``\n> Streams the mp3 audio file as interleaved 16 bit signed integer sample arrays segments. This uses\na fixed chunk size and cannot be used as a generic miniaudio decoder input stream. Consider using\nstream_file() instead.\n\n\n*function*  ``read_file  (filename: str, convert_to_16bit: bool = False) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole audio file. Miniaudio will attempt to return the sound data in exactly\nthe same format as in the file. Unless you set convert_convert_to_16bit to True, then the result is\nalways a 16 bit sample format.\n\n\n*function*  ``stream_any  (source: miniaudio.StreamableSource, source_format: miniaudio.FileFormat = <FileFormat.UNKNOWN: 0>, output_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, frames_to_read: int = 1024, dither: miniaudio.DitherMode = <DitherMode.NONE: 0>, seek_frame: int = 0) -> Generator[array.array, int, NoneType]``\n> Convenience function that returns a generator to decode and stream any source of encoded audio\ndata (such as a network stream). Stream result is chunks of raw PCM samples in the chosen format. If\nyou send() a number into the generator rather than just using next() on it, you'll get that given\nnumber of frames, instead of the default configured amount. This is particularly useful to plug this\nstream into an audio device callback that wants a variable number of frames per call.\n\n\n*function*  ``stream_file  (filename: str, output_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, frames_to_read: int = 1024, dither: miniaudio.DitherMode = <DitherMode.NONE: 0>, seek_frame: int = 0) -> Generator[array.array, int, NoneType]``\n> Convenience generator function to decode and stream any supported audio file as chunks of raw PCM\nsamples in the chosen format. If you send() a number into the generator rather than just using\nnext() on it, you'll get that given number of frames, instead of the default configured amount. This\nis particularly useful to plug this stream into an audio device callback that wants a variable\nnumber of frames per call.\n\n\n*function*  ``stream_memory  (data: bytes, output_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, frames_to_read: int = 1024, dither: miniaudio.DitherMode = <DitherMode.NONE: 0>) -> Generator[array.array, int, NoneType]``\n> Convenience generator function to decode and stream any supported audio file in memory as chunks\nof raw PCM samples in the chosen format. If you send() a number into the generator rather than just\nusing next() on it, you'll get that given number of frames, instead of the default configured\namount. This is particularly useful to plug this stream into an audio device callback that wants a\nvariable number of frames per call.\n\n\n*function*  ``stream_raw_pcm_memory  (pcmdata: Union[array.array, memoryview, bytes], nchannels: int, sample_width: int, frames_to_read: int = 4096) -> Generator[Union[bytes, array.array], int, NoneType]``\n> Convenience generator function to stream raw pcm audio data from memory. Usually you don't need to\nuse this as the library provides many other streaming options that work on much smaller, encoded,\naudio data. However, in the odd case that you only have already decoded raw pcm data you can use\nthis generator as a stream source.  The data can be provided in ``array`` type or ``bytes``,\n``memoryview`` or even a numpy array. Be sure to also specify the correct number of channels that\nthe audio data has, and the sample with in bytes.\n\n\n*function*  ``stream_with_callbacks  (sample_stream: Generator[Union[bytes, array.array], int, NoneType], progress_callback: Optional[Callable[[int], NoneType]] = None, frame_process_method: Optional[Callable[[Union[bytes, array.array]], Union[bytes, array.array]]] = None, end_callback: Optional[Callable] = None) -> Generator[Union[bytes, array.array], int, NoneType]``\n> Convenience generator function to add callback and processing functionality to another stream. You\ncan specify : > A callback function that gets called during play and takes an int for the number of\nframes played.  > A function that can be used to process raw data frames before they are yielded\nback (takes an array.array or bytes, returns an array.array or bytes) *Note: if the processing\nmethod is slow it will result in audio glitchiness  > A callback function that gets called when the\nstream ends playing.\n\n\n*function*  ``vorbis_get_file_info  (filename: str) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio file (vorbis format).\n\n\n*function*  ``vorbis_get_info  (data: bytes) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio data (vorbis format).\n\n\n*function*  ``vorbis_read  (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole vorbis audio data. Resulting sample format is 16 bits signed integer.\n\n\n*function*  ``vorbis_read_file  (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole vorbis audio file. Resulting sample format is 16 bits signed integer.\n\n\n*function*  ``vorbis_stream_file  (filename: str, seek_frame: int = 0) -> Generator[array.array, NoneType, NoneType]``\n> Streams the ogg vorbis audio file as interleaved 16 bit signed integer sample arrays segments.\nThis uses a variable unconfigurable chunk size and cannot be used as a generic miniaudio decoder\ninput stream. Consider using stream_file() instead.\n\n\n*function*  ``wav_get_file_info  (filename: str) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio file (wav format).\n\n\n*function*  ``wav_get_info  (data: bytes) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio data (wav format).\n\n\n*function*  ``wav_read_f32  (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole wav audio data. Resulting sample format is 32 bits float.\n\n\n*function*  ``wav_read_file_f32  (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole wav audio file. Resulting sample format is 32 bits float.\n\n\n*function*  ``wav_read_file_s16  (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole wav audio file. Resulting sample format is 16 bits signed integer.\n\n\n*function*  ``wav_read_file_s32  (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole wav audio file. Resulting sample format is 32 bits signed integer.\n\n\n*function*  ``wav_read_s16  (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole wav audio data. Resulting sample format is 16 bits signed integer.\n\n\n*function*  ``wav_read_s32  (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole wav audio data. Resulting sample format is 32 bits signed integer.\n\n\n*function*  ``wav_stream_file  (filename: str, frames_to_read: int = 1024, seek_frame: int = 0) -> Generator[array.array, NoneType, NoneType]``\n> Streams the WAV audio file as interleaved 16 bit signed integer sample arrays segments. This uses\na fixed chunk size and cannot be used as a generic miniaudio decoder input stream. Consider using\nstream_file() instead.\n\n\n*function*  ``wav_write_file  (filename: str, sound: miniaudio.DecodedSoundFile) ``\n> Writes the pcm sound to a WAV file\n\n\n*function*  ``width_from_format  (sampleformat: miniaudio.SampleFormat) -> int``\n> returns the sample width in bytes, of the given sample format.\n\n\n*class*  ``CaptureDevice``\n\n``CaptureDevice  (self, input_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, buffersize_msec: int = 200, device_id: Optional[_cffi_backend._CDataBase] = None, callback_periods: int = 0, backends: Optional[List[miniaudio.Backend]] = None, thread_prio: miniaudio.ThreadPriority = <ThreadPriority.HIGHEST: 0>, app_name: str = '') ``\n> An audio device provided by miniaudio, for audio capture (recording).\n\n> *method*  ``close  (self) ``\n> > Halt playback or capture and close down the device. If you use the device as a context manager,\nit will be closed automatically.\n\n> *method*  ``start  (self, callback_generator: Generator[NoneType, Union[bytes, array.array], NoneType]) ``\n> > Start the audio device: capture (recording) begins. The recorded audio data is sent to the given\ncallback generator as raw bytes. (it should already be started before)\n\n> *method*  ``stop  (self) ``\n> > Halt playback or capture.\n\n\n*class*  ``DecodeError``\n\n``DecodeError  (self, /, *args, **kwargs)``\n> When something went wrong during decoding an audio file.\n\n\n*class*  ``DecodedSoundFile``\n\n``DecodedSoundFile  (self, name: str, nchannels: int, sample_rate: int, sample_format: miniaudio.SampleFormat, samples: array.array) ``\n> Contains various properties and also the PCM frames of a fully decoded audio file.\n\n\n*class*  ``Devices``\n\n``Devices  (self, backends: Optional[List[miniaudio.Backend]] = None) ``\n> Query the audio playback and record devices that miniaudio provides\n\n> *method*  ``get_captures  (self) -> List[Dict[str, Any]]``\n> > Get a list of capture devices and some details about them\n\n> *method*  ``get_playbacks  (self) -> List[Dict[str, Any]]``\n> > Get a list of playback devices and some details about them\n\n\n*class*  ``DuplexStream``\n\n``DuplexStream  (self, playback_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, playback_channels: int = 2, capture_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, capture_channels: int = 2, sample_rate: int = 44100, buffersize_msec: int = 200, playback_device_id: Optional[_cffi_backend._CDataBase] = None, capture_device_id: Optional[_cffi_backend._CDataBase] = None, callback_periods: int = 0, backends: Optional[List[miniaudio.Backend]] = None, thread_prio: miniaudio.ThreadPriority = <ThreadPriority.HIGHEST: 0>, app_name: str = '') ``\n> Joins a capture device and a playback device.\n\n> *method*  ``close  (self) ``\n> > Halt playback or capture and close down the device. If you use the device as a context manager,\nit will be closed automatically.\n\n> *method*  ``start  (self, callback_generator: Generator[Union[bytes, array.array], Union[bytes, array.array], NoneType]) ``\n> > Start the audio device: playback and capture begin. The audio data for playback is provided by\nthe given callback generator, which is sent the recorded audio data at the same time. (it should\nalready be started before passing it in)\n\n> *method*  ``stop  (self) ``\n> > Halt playback or capture.\n\n\n*class*  ``IceCastClient``\n\n``IceCastClient  (self, url: str, update_stream_title: Callable[[ForwardRef('IceCastClient'), str], NoneType] = None, ssl_context: 'ssl.SSLContext' = None) ``\n> A simple client for IceCast audio streams as miniaudio streamable source. If the stream has Icy\nMetaData, the stream_title attribute will be updated with the actual title taken from the metadata.\nYou can also provide a callback to be called when a new stream title is available. The downloading\nof the data from the internet is done in a background thread and it tries to keep a (small) buffer\nfilled with available data to read. You can optionally provide a custom ssl.SSLContext in the\nssl_context parameter, if you need to change the way SSL connections are configured (certificates,\nchecks, etc).\n\n> *method*  ``close  (self) ``\n> > Stop the stream, aborting the background downloading.\n\n> *method*  ``read  (self, num_bytes: int) -> bytes``\n> > Read a chunk of data from the stream.\n\n> *method*  ``seek  (self, offset: int, origin: miniaudio.SeekOrigin) -> bool``\n> > Override this if the stream supports seeking. Note: seek support is sometimes not needed if you\ngive the file type to a decoder upfront. You can ignore this method then.\n\n\n*class*  ``MiniaudioError``\n\n``MiniaudioError  (self, /, *args, **kwargs)``\n> When a miniaudio specific error occurs.\n\n\n*class*  ``PlaybackDevice``\n\n``PlaybackDevice  (self, output_format: miniaudio.SampleFormat = <SampleFormat.SIGNED16: 2>, nchannels: int = 2, sample_rate: int = 44100, buffersize_msec: int = 200, device_id: Optional[_cffi_backend._CDataBase] = None, callback_periods: int = 0, backends: Optional[List[miniaudio.Backend]] = None, thread_prio: miniaudio.ThreadPriority = <ThreadPriority.HIGHEST: 0>, app_name: str = '') ``\n> An audio device provided by miniaudio, for audio playback.\n\n> *method*  ``close  (self) ``\n> > Halt playback or capture and close down the device. If you use the device as a context manager,\nit will be closed automatically.\n\n> *method*  ``start  (self, callback_generator: Generator[Union[bytes, array.array], int, NoneType]) ``\n> > Start the audio device: playback begins. The audio data is provided by the given callback\ngenerator. The generator gets sent the required number of frames and should yield the sample data as\nraw bytes, a memoryview, an array.array, or as a numpy array with shape (numframes, numchannels).\nThe generator should already be started before passing it in.\n\n> *method*  ``stop  (self) ``\n> > Halt playback or capture.\n\n\n*class*  ``SoundFileInfo``\n\n``SoundFileInfo  (self, name: str, file_format: miniaudio.FileFormat, nchannels: int, sample_rate: int, sample_format: miniaudio.SampleFormat, duration: float, num_frames: int, sub_format: int = None) ``\n> Contains various properties of an audio file.\n\n\n*class*  ``StreamableSource``\n\n``StreamableSource  (self, /, *args, **kwargs)``\n> Base class for streams of audio data bytes. Can be used as a contextmanager, to properly call\nclose().\n\n> *method*  ``close  (self) ``\n> > Override this to properly close the stream and free resources.\n\n> *method*  ``read  (self, num_bytes: int) -> Union[bytes, memoryview]``\n> > override this to provide data bytes to the consumer of the stream\n\n> *method*  ``seek  (self, offset: int, origin: miniaudio.SeekOrigin) -> bool``\n> > Override this if the stream supports seeking. Note: seek support is sometimes not needed if you\ngive the file type to a decoder upfront. You can ignore this method then.\n\n\n*class*  ``WavFileReadStream``\n\n``WavFileReadStream  (self, pcm_sample_gen: Generator[Union[bytes, array.array], int, NoneType], sample_rate: int, nchannels: int, output_format: miniaudio.SampleFormat, max_frames: int = 0) ``\n> An IO stream that reads as a .wav file, and which gets its pcm samples from the provided producer\n\n> *method*  ``close  (self) ``\n> > Close the file\n\n> *method*  ``read  (self, amount: int = 9223372036854775807) -> Optional[bytes]``\n> > Read up to the given amount of bytes from the file.\n\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "python bindings for the miniaudio library and its decoders (mp3, flac, ogg vorbis, wav)",
    "version": "1.59",
    "project_urls": {
        "Homepage": "https://github.com/irmen/pyminiaudio"
    },
    "split_keywords": [
        "sound",
        "audio",
        "playback",
        "recording",
        "conversion",
        "decoding"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa41138e5ccfb9ac676ca5296868af2ce67b1d51b6834965ecdcba0f0d49d6c7",
                "md5": "0c51d3a496ad1906d19b7c7de7d7259d",
                "sha256": "028d7e8e6d99441340c0bfb60660db7bd5789cae7c95fa599d830344901d6d72"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c51d3a496ad1906d19b7c7de7d7259d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 376492,
            "upload_time": "2023-06-04T14:58:32",
            "upload_time_iso_8601": "2023-06-04T14:58:32.540908Z",
            "url": "https://files.pythonhosted.org/packages/fa/41/138e5ccfb9ac676ca5296868af2ce67b1d51b6834965ecdcba0f0d49d6c7/miniaudio-1.59-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a868054b13cc7ec7777dc4166824d4d9040954922c4addde2adc2f19e258c8f",
                "md5": "7d2757475716af0d94fc82335c1e04e2",
                "sha256": "ba6f802376f49977e9698740411db46092ea005894ff86d805aeddde7e505c1e"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7d2757475716af0d94fc82335c1e04e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 343473,
            "upload_time": "2023-06-04T14:58:34",
            "upload_time_iso_8601": "2023-06-04T14:58:34.897176Z",
            "url": "https://files.pythonhosted.org/packages/2a/86/8054b13cc7ec7777dc4166824d4d9040954922c4addde2adc2f19e258c8f/miniaudio-1.59-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d441679cb6db4c96e89b13e78e26a19eaf1aff50393f7ca1509ef6f4be0294f2",
                "md5": "1135ceac87a3bd04ccb14049931e0540",
                "sha256": "9f24b44bd28ca631b830bc91bd910cb0209fba005401effa64cee9a8ba580992"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1135ceac87a3bd04ccb14049931e0540",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 686862,
            "upload_time": "2023-06-04T14:58:36",
            "upload_time_iso_8601": "2023-06-04T14:58:36.737860Z",
            "url": "https://files.pythonhosted.org/packages/d4/41/679cb6db4c96e89b13e78e26a19eaf1aff50393f7ca1509ef6f4be0294f2/miniaudio-1.59-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d20095b0e5b3b3d80ceb8426b8407b9d307200dfc6c52a5eb232cfa73275515",
                "md5": "d95fd48fc4b944acd012bcb62386ae2f",
                "sha256": "8980dda51e92ea750ca8bcfb1d2c198eca7e4c844ab857faac12e20245322aa6"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d95fd48fc4b944acd012bcb62386ae2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 608267,
            "upload_time": "2023-06-04T14:58:39",
            "upload_time_iso_8601": "2023-06-04T14:58:39.137452Z",
            "url": "https://files.pythonhosted.org/packages/3d/20/095b0e5b3b3d80ceb8426b8407b9d307200dfc6c52a5eb232cfa73275515/miniaudio-1.59-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "477b553ee3951af53e72c9129b14f05a3ada8bcf54efeed8c21f3cf5c3c8a3f1",
                "md5": "57d326e4a27421649cf490f2356ef27b",
                "sha256": "e21f56d51c627cef612d1a7bbc73fc7c5e03908f5ebc22c98494951ab8ccd3c8"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "57d326e4a27421649cf490f2356ef27b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 576991,
            "upload_time": "2023-06-04T14:58:41",
            "upload_time_iso_8601": "2023-06-04T14:58:41.468645Z",
            "url": "https://files.pythonhosted.org/packages/47/7b/553ee3951af53e72c9129b14f05a3ada8bcf54efeed8c21f3cf5c3c8a3f1/miniaudio-1.59-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b390df35a520d651d5123398b8e8037665f84d729a2a0ae2620abe0bc262045",
                "md5": "5a48040ead5546d4ee383d3640d172ef",
                "sha256": "1f6f1665ce8ed46caac48beec64c70e248a0b4e001590c698695cd22c1f634a0"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a48040ead5546d4ee383d3640d172ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 606728,
            "upload_time": "2023-06-04T14:58:43",
            "upload_time_iso_8601": "2023-06-04T14:58:43.049323Z",
            "url": "https://files.pythonhosted.org/packages/3b/39/0df35a520d651d5123398b8e8037665f84d729a2a0ae2620abe0bc262045/miniaudio-1.59-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1226b952b50160674bbc08fb7afe2bb6f5bed2575d1ed5b588c0e1c0a4db454",
                "md5": "200c10faf608ffd5d1d7daa843a25c52",
                "sha256": "799b393adce56c8df1df16e7dc692a83125888df9ecf8ec0242c4905df6275ef"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "200c10faf608ffd5d1d7daa843a25c52",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 227604,
            "upload_time": "2023-06-04T14:58:45",
            "upload_time_iso_8601": "2023-06-04T14:58:45.123868Z",
            "url": "https://files.pythonhosted.org/packages/d1/22/6b952b50160674bbc08fb7afe2bb6f5bed2575d1ed5b588c0e1c0a4db454/miniaudio-1.59-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "905d33f957dbc8c726b8005f5e34845a04187d8263c80025f29de9a5c7fdaf33",
                "md5": "e360c17a7fbe2a4603aa5208acf265bc",
                "sha256": "44c6b48f01d934784da282f7a17c40be9110ee6bc723f5f90916d2b2e729c9cc"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e360c17a7fbe2a4603aa5208acf265bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 262118,
            "upload_time": "2023-06-04T14:58:47",
            "upload_time_iso_8601": "2023-06-04T14:58:47.095576Z",
            "url": "https://files.pythonhosted.org/packages/90/5d/33f957dbc8c726b8005f5e34845a04187d8263c80025f29de9a5c7fdaf33/miniaudio-1.59-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc9a5850a802d80211b19b708d243f00c781edb214dd957434d80d93392dc073",
                "md5": "d79a9ad8ed6d0a77c8c2b823688aaa33",
                "sha256": "2a9387e85e6a63d66a873f4208fbaba93179d11423da08dc83c78dd1b68ba504"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d79a9ad8ed6d0a77c8c2b823688aaa33",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 376492,
            "upload_time": "2023-06-04T14:58:48",
            "upload_time_iso_8601": "2023-06-04T14:58:48.943251Z",
            "url": "https://files.pythonhosted.org/packages/bc/9a/5850a802d80211b19b708d243f00c781edb214dd957434d80d93392dc073/miniaudio-1.59-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f547517e0e10560387177bb8e7986a34bfa8d3c92548e2a83716a3e276b9bc0",
                "md5": "13a845412ed418e6539d33ae10368182",
                "sha256": "12fbbe3934856ab54fa8889ab6ec6b62a97faa2f85a8830e286fe5a4e9584ca4"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "13a845412ed418e6539d33ae10368182",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 343479,
            "upload_time": "2023-06-04T14:58:50",
            "upload_time_iso_8601": "2023-06-04T14:58:50.941105Z",
            "url": "https://files.pythonhosted.org/packages/8f/54/7517e0e10560387177bb8e7986a34bfa8d3c92548e2a83716a3e276b9bc0/miniaudio-1.59-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "068c4451f9c0a4ba82dd792b0700998ba6890fcf18b9de206cdbe1a54d6a7ef2",
                "md5": "4c74eadee81ca9db5e3747e522a40a63",
                "sha256": "f4a9a1dc4352af4198f6ca0c20bac8b5b6a89d0d67e3535149ef08420a1ab3c9"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4c74eadee81ca9db5e3747e522a40a63",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 686861,
            "upload_time": "2023-06-04T14:58:52",
            "upload_time_iso_8601": "2023-06-04T14:58:52.741002Z",
            "url": "https://files.pythonhosted.org/packages/06/8c/4451f9c0a4ba82dd792b0700998ba6890fcf18b9de206cdbe1a54d6a7ef2/miniaudio-1.59-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01d258c2f9d610e46aa19b59d5283416b033d7e5f89284262f2667d1c45c555b",
                "md5": "38d0cea725e1798c560957ad2fe45182",
                "sha256": "4eb9eac3f23fd4c94925830fa9c172e98aebfb12cec1dbfa6a7693b9e4c1e555"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38d0cea725e1798c560957ad2fe45182",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 608259,
            "upload_time": "2023-06-04T14:58:54",
            "upload_time_iso_8601": "2023-06-04T14:58:54.304024Z",
            "url": "https://files.pythonhosted.org/packages/01/d2/58c2f9d610e46aa19b59d5283416b033d7e5f89284262f2667d1c45c555b/miniaudio-1.59-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0879efb39b59ab4c1605b6b65693c09d0b2c35debe53cea2430fb423f250352",
                "md5": "f2b379ca58d4a6f89ea4e640ed8f9821",
                "sha256": "52882c36126c3a97fcdd8d753e4b1b07934bba9d4d3c431aa7f4914849090cac"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f2b379ca58d4a6f89ea4e640ed8f9821",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 576999,
            "upload_time": "2023-06-04T14:58:56",
            "upload_time_iso_8601": "2023-06-04T14:58:56.494837Z",
            "url": "https://files.pythonhosted.org/packages/c0/87/9efb39b59ab4c1605b6b65693c09d0b2c35debe53cea2430fb423f250352/miniaudio-1.59-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d1cdfee62dc1e489e4d1c696513172f0429f07c0ea0fee88f3093c2aeeb050f",
                "md5": "3d8e817b4f2eff418263b6cf3c5a6a1e",
                "sha256": "d6bb6deee6d5969292d22730d31ee85ed0edc2997ca79978db0cca269ab73761"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d8e817b4f2eff418263b6cf3c5a6a1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 606725,
            "upload_time": "2023-06-04T14:58:58",
            "upload_time_iso_8601": "2023-06-04T14:58:58.938798Z",
            "url": "https://files.pythonhosted.org/packages/2d/1c/dfee62dc1e489e4d1c696513172f0429f07c0ea0fee88f3093c2aeeb050f/miniaudio-1.59-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01d4a58ee22b7a8af80171ccfa25246335b4ed752e6a77b0f38b7c021bb3bb26",
                "md5": "0b733202a34004c1c9c17cf8c12d6e2c",
                "sha256": "6afe7449d7d593ba3f8bd91085a392d0c6ca3be4c03b62af37cb46f6c0c0d9f4"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "0b733202a34004c1c9c17cf8c12d6e2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 227599,
            "upload_time": "2023-06-04T14:59:00",
            "upload_time_iso_8601": "2023-06-04T14:59:00.439475Z",
            "url": "https://files.pythonhosted.org/packages/01/d4/a58ee22b7a8af80171ccfa25246335b4ed752e6a77b0f38b7c021bb3bb26/miniaudio-1.59-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae63c077ab1d91ecc4558d88d7963e4e48200ccbb5c2604255b6886409047039",
                "md5": "d15bec528051255e6815a19593730704",
                "sha256": "a22832e449a31620317ae657f7fd20a42466e5768c48373f8f28c53f2b36f5cd"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d15bec528051255e6815a19593730704",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 262112,
            "upload_time": "2023-06-04T14:59:02",
            "upload_time_iso_8601": "2023-06-04T14:59:02.231047Z",
            "url": "https://files.pythonhosted.org/packages/ae/63/c077ab1d91ecc4558d88d7963e4e48200ccbb5c2604255b6886409047039/miniaudio-1.59-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7683a71605bcba8da1f396b9a62722ea15f858e538a8b794bccee49705084bbb",
                "md5": "6375363f8ce32876178342e0f6e99122",
                "sha256": "fbfb3c853641c8bd835e0654f49fe0c09b4018b1ecc7e4c2436e02fbaf748c4b"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6375363f8ce32876178342e0f6e99122",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 376442,
            "upload_time": "2023-06-04T14:59:04",
            "upload_time_iso_8601": "2023-06-04T14:59:04.439711Z",
            "url": "https://files.pythonhosted.org/packages/76/83/a71605bcba8da1f396b9a62722ea15f858e538a8b794bccee49705084bbb/miniaudio-1.59-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a18d5e7a6d72309df5e5ad2c3f3a7683557cc08c4205773a919dd763b6f42ed2",
                "md5": "120cd0398ce49817bc55a642581c86fd",
                "sha256": "45ce3596c693053a578db725848a90ba0dfcc03d1d94124b9fddaa9e50a7533e"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "120cd0398ce49817bc55a642581c86fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 686674,
            "upload_time": "2023-06-04T14:59:06",
            "upload_time_iso_8601": "2023-06-04T14:59:06.595924Z",
            "url": "https://files.pythonhosted.org/packages/a1/8d/5e7a6d72309df5e5ad2c3f3a7683557cc08c4205773a919dd763b6f42ed2/miniaudio-1.59-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "992ab229f10b05b4b660f7f533d088135e4ce28c8056d1ccbbdf663864734bc2",
                "md5": "1d65db728e497629686d9f9bef0ba560",
                "sha256": "d07228047352b655a82711704a635eee41eb3977ceaaf672ee17d64a3ba261b7"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d65db728e497629686d9f9bef0ba560",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 608053,
            "upload_time": "2023-06-04T14:59:08",
            "upload_time_iso_8601": "2023-06-04T14:59:08.033564Z",
            "url": "https://files.pythonhosted.org/packages/99/2a/b229f10b05b4b660f7f533d088135e4ce28c8056d1ccbbdf663864734bc2/miniaudio-1.59-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1997f62e686861b93d237513c6124c3c8f66a80fe7fb320d060a1206f058fb6a",
                "md5": "0d5d7d7cd171593d1091991b1c2fb592",
                "sha256": "586f95f1d10f5d4f58b272c15c601c3ba13128bd34a839bce5bd28a839d5cf3c"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "0d5d7d7cd171593d1091991b1c2fb592",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 576798,
            "upload_time": "2023-06-04T14:59:09",
            "upload_time_iso_8601": "2023-06-04T14:59:09.675794Z",
            "url": "https://files.pythonhosted.org/packages/19/97/f62e686861b93d237513c6124c3c8f66a80fe7fb320d060a1206f058fb6a/miniaudio-1.59-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c0aa71f64d0910d446ca51474df49cf324160033d2a73c653225f5cda046d69",
                "md5": "df7e51dc50aede25fbf8a8737d1ced9f",
                "sha256": "7644f19b1dc00bca3ec9e6066eb8879c0e638091955092a1d7085a38d7de6e0f"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df7e51dc50aede25fbf8a8737d1ced9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 606432,
            "upload_time": "2023-06-04T14:59:11",
            "upload_time_iso_8601": "2023-06-04T14:59:11.704525Z",
            "url": "https://files.pythonhosted.org/packages/7c/0a/a71f64d0910d446ca51474df49cf324160033d2a73c653225f5cda046d69/miniaudio-1.59-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b0670ecabb4f04c03bddea4f3833f84c1a077b79ccaebe6b19ce2403e9e6c9c",
                "md5": "0e7b92502200f1f724a3b52ac365d27e",
                "sha256": "055fb3a2e00ddcce2a2809cd2a3d5e68234588a00c70533fa4b68f0178829dce"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "0e7b92502200f1f724a3b52ac365d27e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 227612,
            "upload_time": "2023-06-04T14:59:14",
            "upload_time_iso_8601": "2023-06-04T14:59:14.267611Z",
            "url": "https://files.pythonhosted.org/packages/5b/06/70ecabb4f04c03bddea4f3833f84c1a077b79ccaebe6b19ce2403e9e6c9c/miniaudio-1.59-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73165d0022b18604a43917904c32ce28b769e32cad5c6adb29052181334a17cb",
                "md5": "993babe2bfcf06e3c809865170c8904e",
                "sha256": "e1acea13830a53c026e58d44856ba4951a26eb0d0a2fda2ce6dc7280b6f57f81"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "993babe2bfcf06e3c809865170c8904e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 262118,
            "upload_time": "2023-06-04T14:59:16",
            "upload_time_iso_8601": "2023-06-04T14:59:16.404268Z",
            "url": "https://files.pythonhosted.org/packages/73/16/5d0022b18604a43917904c32ce28b769e32cad5c6adb29052181334a17cb/miniaudio-1.59-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56e0e11add20e3c526aa877200c0fba18b00431684fac85a6f1b9cfaa6094c9f",
                "md5": "b4e9014a85733f6e646d1cc971bb94ac",
                "sha256": "7a8b6f1d4a2551061721cc7b22fb0eb3839aad9137553e01b4dde1a31c91ca45"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4e9014a85733f6e646d1cc971bb94ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 376516,
            "upload_time": "2023-06-04T14:59:17",
            "upload_time_iso_8601": "2023-06-04T14:59:17.902740Z",
            "url": "https://files.pythonhosted.org/packages/56/e0/e11add20e3c526aa877200c0fba18b00431684fac85a6f1b9cfaa6094c9f/miniaudio-1.59-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "373d633e4bf8e478751697248c3e8d09f164162fd6b51d49d9c5cae6a49cb34a",
                "md5": "850897c5746358386715d1068186a534",
                "sha256": "011b2b8d5c57a485a6b86476e24c1c6be4a61ec8c33c456e3052929269857d0d"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "850897c5746358386715d1068186a534",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 343490,
            "upload_time": "2023-06-04T14:59:19",
            "upload_time_iso_8601": "2023-06-04T14:59:19.539401Z",
            "url": "https://files.pythonhosted.org/packages/37/3d/633e4bf8e478751697248c3e8d09f164162fd6b51d49d9c5cae6a49cb34a/miniaudio-1.59-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c39dcbef4581becf76ca6327a47882cd0866a2c6195579929df7330eb5ea7dc",
                "md5": "875b3d77fd4454a20505f697db4a255f",
                "sha256": "9b270e9e1df5ec05d03659febffaa704709d7c9cb0b3597cb0a993875d73be84"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "875b3d77fd4454a20505f697db4a255f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 686873,
            "upload_time": "2023-06-04T14:59:21",
            "upload_time_iso_8601": "2023-06-04T14:59:21.031476Z",
            "url": "https://files.pythonhosted.org/packages/1c/39/dcbef4581becf76ca6327a47882cd0866a2c6195579929df7330eb5ea7dc/miniaudio-1.59-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42681de228f955b0d919e24835db028e55d2181e0dd810dc821968f7d5efab2b",
                "md5": "8d66d5742ecdd178573fd5a7dda307c1",
                "sha256": "3ab9d0468790109bafc88ce9d1c93454b2d384af0c14a6657620315115390c8d"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d66d5742ecdd178573fd5a7dda307c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 608254,
            "upload_time": "2023-06-04T14:59:23",
            "upload_time_iso_8601": "2023-06-04T14:59:23.312189Z",
            "url": "https://files.pythonhosted.org/packages/42/68/1de228f955b0d919e24835db028e55d2181e0dd810dc821968f7d5efab2b/miniaudio-1.59-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f39ce5b06ccc8c7869b5b36aecf62ae680817ff070acce9a3a11ae403f4f5b0",
                "md5": "6a27676e0e571918f0094ef11d5f11ca",
                "sha256": "b0f0ffa87bef0b3bf932eff60aec97ac90e2adf7373e9170969c6f98ba1c5635"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6a27676e0e571918f0094ef11d5f11ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 576993,
            "upload_time": "2023-06-04T14:59:25",
            "upload_time_iso_8601": "2023-06-04T14:59:25.197533Z",
            "url": "https://files.pythonhosted.org/packages/3f/39/ce5b06ccc8c7869b5b36aecf62ae680817ff070acce9a3a11ae403f4f5b0/miniaudio-1.59-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca47ca64367b575c8bf79b226fb2cb50077066449471e596a7ec849cf1eff9cf",
                "md5": "39e5939d686d83fbb865fc33bd280af6",
                "sha256": "1a03e514b12ba5d93fe48470ddc6a7f4025cd8de5f604233fc899507e5a054c1"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39e5939d686d83fbb865fc33bd280af6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 606722,
            "upload_time": "2023-06-04T14:59:27",
            "upload_time_iso_8601": "2023-06-04T14:59:27.222477Z",
            "url": "https://files.pythonhosted.org/packages/ca/47/ca64367b575c8bf79b226fb2cb50077066449471e596a7ec849cf1eff9cf/miniaudio-1.59-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dffd4f3730e17c077e7605f8885b2f8d0cbbfa0594512cc535fa950323aced6b",
                "md5": "729ee43bb4790cb69834f2dfc8e25575",
                "sha256": "19c6406342989a6774305cd214314028553cbb9fcbc5ed43ab17a7f6b43aa46b"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "729ee43bb4790cb69834f2dfc8e25575",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 227606,
            "upload_time": "2023-06-04T14:59:29",
            "upload_time_iso_8601": "2023-06-04T14:59:29.451478Z",
            "url": "https://files.pythonhosted.org/packages/df/fd/4f3730e17c077e7605f8885b2f8d0cbbfa0594512cc535fa950323aced6b/miniaudio-1.59-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "042627b801ccbf23e30e8e610c43417239d29bd8a42a01e202082a29c0c5bf22",
                "md5": "5e4a99256edf38a2aef6353dc5cfbdb4",
                "sha256": "239bd4ff17aa7eede52b30a2153a28fe0bf2891aa43617a10348dd90f20d727e"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5e4a99256edf38a2aef6353dc5cfbdb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 262116,
            "upload_time": "2023-06-04T14:59:30",
            "upload_time_iso_8601": "2023-06-04T14:59:30.923079Z",
            "url": "https://files.pythonhosted.org/packages/04/26/27b801ccbf23e30e8e610c43417239d29bd8a42a01e202082a29c0c5bf22/miniaudio-1.59-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b9e331d64756d7d3167b72478ae1dcf72cccc4cdd824176d1509e11b7a0896a",
                "md5": "ecd2ca395f743e3ca98acf6bb1fe4855",
                "sha256": "88930514e6a9a6258d3536638da5ceb3aaa1d6643122e0704db7fd08ff924368"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ecd2ca395f743e3ca98acf6bb1fe4855",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 376493,
            "upload_time": "2023-06-04T14:59:32",
            "upload_time_iso_8601": "2023-06-04T14:59:32.653817Z",
            "url": "https://files.pythonhosted.org/packages/7b/9e/331d64756d7d3167b72478ae1dcf72cccc4cdd824176d1509e11b7a0896a/miniaudio-1.59-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b02f7e82eb809ad1d42b53464a471bf174455f2678e9ad3d37a605ac01e68231",
                "md5": "cb0eb9a34d4fb0ea82fa02a57a45c9b9",
                "sha256": "6d195800a6162464731ba484580cdab3be5bcc47a366c8440be6015f16d059b1"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cb0eb9a34d4fb0ea82fa02a57a45c9b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 343492,
            "upload_time": "2023-06-04T14:59:34",
            "upload_time_iso_8601": "2023-06-04T14:59:34.791502Z",
            "url": "https://files.pythonhosted.org/packages/b0/2f/7e82eb809ad1d42b53464a471bf174455f2678e9ad3d37a605ac01e68231/miniaudio-1.59-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4812f65c411cf97bdc673fba3db95784541338d340db53a1606a30a9601196a",
                "md5": "a24400c236a1675ee1731893f7b50e1d",
                "sha256": "6fcd4484eea26629eb9602ebcab0181f515881e736deccb235c2c0d99d7b4215"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a24400c236a1675ee1731893f7b50e1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 686863,
            "upload_time": "2023-06-04T14:59:36",
            "upload_time_iso_8601": "2023-06-04T14:59:36.607775Z",
            "url": "https://files.pythonhosted.org/packages/e4/81/2f65c411cf97bdc673fba3db95784541338d340db53a1606a30a9601196a/miniaudio-1.59-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58c6d6fb5f396c0488dd38cd04a539826fbb7115807f9617c314f9a88f79836c",
                "md5": "df0b5273074ef947e8e0c3269f719f16",
                "sha256": "fa0ff716a9eb79799ed623f619ed6b0bc1669046cd1f2070de20d3dc6737a822"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df0b5273074ef947e8e0c3269f719f16",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 608250,
            "upload_time": "2023-06-04T14:59:39",
            "upload_time_iso_8601": "2023-06-04T14:59:39.585421Z",
            "url": "https://files.pythonhosted.org/packages/58/c6/d6fb5f396c0488dd38cd04a539826fbb7115807f9617c314f9a88f79836c/miniaudio-1.59-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c1aa5357bb2ad25268c7292f54846babde4eb3cf09d8feae49fc8dc099fa93d",
                "md5": "1104e8cb027f63c95e7de58af3833400",
                "sha256": "878623ffa77c366c76c4202d3095835943bd8f8f604bbdc1872030d646817e4a"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1104e8cb027f63c95e7de58af3833400",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 576990,
            "upload_time": "2023-06-04T14:59:41",
            "upload_time_iso_8601": "2023-06-04T14:59:41.498534Z",
            "url": "https://files.pythonhosted.org/packages/8c/1a/a5357bb2ad25268c7292f54846babde4eb3cf09d8feae49fc8dc099fa93d/miniaudio-1.59-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3954f89cd4fac7d3ff676fafe8bc70f55c2d46daf05477ce9678c480fa153825",
                "md5": "0751c5a4e89e961493509377fc7a7537",
                "sha256": "4aca5d9e9774ddbad5c4a5c65dfb1e7fba9e4570092ba6891f439f7c849d21ed"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0751c5a4e89e961493509377fc7a7537",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 606720,
            "upload_time": "2023-06-04T14:59:43",
            "upload_time_iso_8601": "2023-06-04T14:59:43.134736Z",
            "url": "https://files.pythonhosted.org/packages/39/54/f89cd4fac7d3ff676fafe8bc70f55c2d46daf05477ce9678c480fa153825/miniaudio-1.59-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa1a61dce3f2c52166de334e155a5593f0e6b7994f814d53ae872da467bee9cf",
                "md5": "c5dd2ffbf122507ff8e04cc4bf0a6f72",
                "sha256": "0e05f09d58ed32e7cdc1bad9342155b81e378ff2101242cf8a8f06cd56dae043"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "c5dd2ffbf122507ff8e04cc4bf0a6f72",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 227602,
            "upload_time": "2023-06-04T14:59:44",
            "upload_time_iso_8601": "2023-06-04T14:59:44.949260Z",
            "url": "https://files.pythonhosted.org/packages/aa/1a/61dce3f2c52166de334e155a5593f0e6b7994f814d53ae872da467bee9cf/miniaudio-1.59-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4521c1f280aae8accbaff92e0a30c15195c37a9612a553e55c818fb4c895f9f6",
                "md5": "32c2523a84e8b72a9019203e3591a5a9",
                "sha256": "0e51899a148b393e84ee3a201a72c8fa4d19413f5b1b705ff5ae9f8eee956a7a"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "32c2523a84e8b72a9019203e3591a5a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 262116,
            "upload_time": "2023-06-04T14:59:47",
            "upload_time_iso_8601": "2023-06-04T14:59:47.046565Z",
            "url": "https://files.pythonhosted.org/packages/45/21/c1f280aae8accbaff92e0a30c15195c37a9612a553e55c818fb4c895f9f6/miniaudio-1.59-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffb71626b5e79074aa69fcc65e5c720b98b0eac77605963988c2df401d4dd2af",
                "md5": "0296ab0cc58025cd5fafd5630657e31c",
                "sha256": "07de990f047e693681f15736be2e169e3f53064d1e6a7d0c37837297fa18929c"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0296ab0cc58025cd5fafd5630657e31c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 348810,
            "upload_time": "2023-06-04T14:59:48",
            "upload_time_iso_8601": "2023-06-04T14:59:48.631757Z",
            "url": "https://files.pythonhosted.org/packages/ff/b7/1626b5e79074aa69fcc65e5c720b98b0eac77605963988c2df401d4dd2af/miniaudio-1.59-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35ee4f3af30294c0adb3b5667bcf0c5030bfa63f81c2d5242f79690437099a5e",
                "md5": "ba91e142706cafe597c141109d5a4533",
                "sha256": "e03beea7dabeb2be1a0a4718458e0b85e3c23692563b0f8841164d71ef2c2eef"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ba91e142706cafe597c141109d5a4533",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 637656,
            "upload_time": "2023-06-04T14:59:50",
            "upload_time_iso_8601": "2023-06-04T14:59:50.943668Z",
            "url": "https://files.pythonhosted.org/packages/35/ee/4f3af30294c0adb3b5667bcf0c5030bfa63f81c2d5242f79690437099a5e/miniaudio-1.59-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "001c3d2efb107160e93a874d0079403bab928a255da270f1249f05b29bb00a4f",
                "md5": "5b7f72226c3265aaeb61a5fb488ad020",
                "sha256": "0c2cb1fdc92ace828bceabb602b4d2f52040a361632d71b810144656b8334738"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b7f72226c3265aaeb61a5fb488ad020",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 569575,
            "upload_time": "2023-06-04T14:59:52",
            "upload_time_iso_8601": "2023-06-04T14:59:52.829975Z",
            "url": "https://files.pythonhosted.org/packages/00/1c/3d2efb107160e93a874d0079403bab928a255da270f1249f05b29bb00a4f/miniaudio-1.59-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b270d35ad08a830a0c0ce90ca00c18f7cc8edbb5499bb57c5530a1f2c79a0841",
                "md5": "1930cf0ccd5a855680f38790c19899d4",
                "sha256": "5597384fa7dda1691adca46568ffaabcf39c0a224bf5b9548665a255b86a4f35"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1930cf0ccd5a855680f38790c19899d4",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 239128,
            "upload_time": "2023-06-04T14:59:54",
            "upload_time_iso_8601": "2023-06-04T14:59:54.519465Z",
            "url": "https://files.pythonhosted.org/packages/b2/70/d35ad08a830a0c0ce90ca00c18f7cc8edbb5499bb57c5530a1f2c79a0841/miniaudio-1.59-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71e1f25f19c95885948d6a2c3148ebc5c70ad5c86be52009282fd89f512b5cf4",
                "md5": "e05271810aa0eb0895853a1cb1e7d7f1",
                "sha256": "d253c994a27062788f60a8fb1f8571320b72ddc44fd4128fdd85634cf38717a4"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e05271810aa0eb0895853a1cb1e7d7f1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 348809,
            "upload_time": "2023-06-04T14:59:56",
            "upload_time_iso_8601": "2023-06-04T14:59:56.023716Z",
            "url": "https://files.pythonhosted.org/packages/71/e1/f25f19c95885948d6a2c3148ebc5c70ad5c86be52009282fd89f512b5cf4/miniaudio-1.59-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c36a57ec2e14d1b07a705779cbe25684acf444c4dd3d64da1270a96e106ee6f",
                "md5": "700fcc2ef5bdc5dc8c00bd91ffec6829",
                "sha256": "bb71fb5d5491335fc565c157a01a8c6907180e113c3c0d9a6c22e28458be5919"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "700fcc2ef5bdc5dc8c00bd91ffec6829",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 630442,
            "upload_time": "2023-06-04T14:59:57",
            "upload_time_iso_8601": "2023-06-04T14:59:57.802693Z",
            "url": "https://files.pythonhosted.org/packages/8c/36/a57ec2e14d1b07a705779cbe25684acf444c4dd3d64da1270a96e106ee6f/miniaudio-1.59-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9a624a04fafc984c2c962c668e5e5bfcf403e74a84fd325dfd23e91cdd90645",
                "md5": "614433fa0f0b18cc30ee7a99983602fd",
                "sha256": "21569111381b877d5445c917b00dfe038b434cb9dacaa4c548ca8c6b5e6d5b55"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "614433fa0f0b18cc30ee7a99983602fd",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 560907,
            "upload_time": "2023-06-04T14:59:59",
            "upload_time_iso_8601": "2023-06-04T14:59:59.642270Z",
            "url": "https://files.pythonhosted.org/packages/d9/a6/24a04fafc984c2c962c668e5e5bfcf403e74a84fd325dfd23e91cdd90645/miniaudio-1.59-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67308684b501df42a7df75d2534a3544fbdf62eaedc1b5e289ce3eca69765310",
                "md5": "89332b32d2399ca617f2d3acb32cb22b",
                "sha256": "8686712f90189eaa6f9fc3eb503eb3487b09ca52417690fd14ac53306d55a125"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "89332b32d2399ca617f2d3acb32cb22b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 239128,
            "upload_time": "2023-06-04T15:00:01",
            "upload_time_iso_8601": "2023-06-04T15:00:01.440008Z",
            "url": "https://files.pythonhosted.org/packages/67/30/8684b501df42a7df75d2534a3544fbdf62eaedc1b5e289ce3eca69765310/miniaudio-1.59-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1ac3ba7bbda7d4619b738d31aaf51121b8cdc4fc3613ef157c6ffae295925a0",
                "md5": "ea75a3105a877a3db16b59c7699b9074",
                "sha256": "4674c49ee2489595f65a8cdc1c48a3e8bc0f577b1eb957d918a942b88480e5a8"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea75a3105a877a3db16b59c7699b9074",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 348811,
            "upload_time": "2023-06-04T15:00:03",
            "upload_time_iso_8601": "2023-06-04T15:00:03.571200Z",
            "url": "https://files.pythonhosted.org/packages/a1/ac/3ba7bbda7d4619b738d31aaf51121b8cdc4fc3613ef157c6ffae295925a0/miniaudio-1.59-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e51ae006880327839dbb81130f647f0a12368de88762c1ef62e0421cabd1f81",
                "md5": "f8a1926752749e0e6bc7cddd9fb6ebca",
                "sha256": "0fa69c55197215dabf85bc8f9f9d7128af08db402f12aea962e16bad1ac4dca8"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f8a1926752749e0e6bc7cddd9fb6ebca",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 630436,
            "upload_time": "2023-06-04T15:00:05",
            "upload_time_iso_8601": "2023-06-04T15:00:05.483934Z",
            "url": "https://files.pythonhosted.org/packages/5e/51/ae006880327839dbb81130f647f0a12368de88762c1ef62e0421cabd1f81/miniaudio-1.59-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "505eb469d76f9133117493bf5e1732f9e97cfaec50112724ad605ddb7a56143c",
                "md5": "9847a274ff4c3abe888688c32e162a34",
                "sha256": "ce2668b03594612dacea4521483e38da56b51ce8a92d06106643f520ce092a82"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9847a274ff4c3abe888688c32e162a34",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 560898,
            "upload_time": "2023-06-04T15:00:07",
            "upload_time_iso_8601": "2023-06-04T15:00:07.327064Z",
            "url": "https://files.pythonhosted.org/packages/50/5e/b469d76f9133117493bf5e1732f9e97cfaec50112724ad605ddb7a56143c/miniaudio-1.59-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a87244e5950c4c6ca063dc5889a95a0da9041b977e18ba889df3c2931ba91b6",
                "md5": "893f9ae4bdbbf94c455788826777e9ef",
                "sha256": "6117c09da1944a59b7af3009d37c8eb6e0219174f5e00501b797687ddbe9c5a3"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "893f9ae4bdbbf94c455788826777e9ef",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 239130,
            "upload_time": "2023-06-04T15:00:09",
            "upload_time_iso_8601": "2023-06-04T15:00:09.668643Z",
            "url": "https://files.pythonhosted.org/packages/0a/87/244e5950c4c6ca063dc5889a95a0da9041b977e18ba889df3c2931ba91b6/miniaudio-1.59-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f00f8f101980bf9085809dad55dcc55663cf0c2e7d09b97d26d2d68d42bec4a5",
                "md5": "7c87b7818b0c9eaffbb2cc1aa26e1421",
                "sha256": "2b68f496a8655497cde827c77aba3c3557f0f2bb7c38a6ecab34090ab4556277"
            },
            "downloads": -1,
            "filename": "miniaudio-1.59.tar.gz",
            "has_sig": false,
            "md5_digest": "7c87b7818b0c9eaffbb2cc1aa26e1421",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1103350,
            "upload_time": "2023-06-04T15:00:11",
            "upload_time_iso_8601": "2023-06-04T15:00:11.601185Z",
            "url": "https://files.pythonhosted.org/packages/f0/0f/8f101980bf9085809dad55dcc55663cf0c2e7d09b97d26d2d68d42bec4a5/miniaudio-1.59.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-04 15:00:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "irmen",
    "github_project": "pyminiaudio",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "miniaudio"
}
        
Elapsed time: 0.07960s