:mod:`audiomixer`
=================
.. py:module:: audiomixer
.. autoapi-nested-parse::
Support for audio mixing
.. raw:: html
Available on these boards
- AITHinker ESP32-C3S_Kit
- ARAMCON Badge 2019
- ARAMCON2 Badge
- ATMegaZero ESP32-S2
- Adafruit CLUE nRF52840 Express
- Adafruit Circuit Playground Bluefruit
- Adafruit EdgeBadge
- Adafruit Feather Bluefruit Sense
- Adafruit Feather ESP32-S2 TFT
- Adafruit Feather ESP32S2
- Adafruit Feather M4 CAN
- Adafruit Feather M4 Express
- Adafruit Feather RP2040
- Adafruit Feather nRF52840 Express
- Adafruit FunHouse
- Adafruit Grand Central M4 Express
- Adafruit Hallowing M4 Express
- Adafruit ItsyBitsy M4 Express
- Adafruit ItsyBitsy RP2040
- Adafruit ItsyBitsy nRF52840 Express
- Adafruit KB2040
- Adafruit LED Glasses Driver nRF52840
- Adafruit Macropad RP2040
- Adafruit MagTag
- Adafruit Matrix Portal M4
- Adafruit Metro ESP32S2
- Adafruit Metro M4 Airlift Lite
- Adafruit Metro M4 Express
- Adafruit Metro nRF52840 Express
- Adafruit Monster M4SK
- Adafruit PyGamer
- Adafruit PyPortal
- Adafruit PyPortal Pynt
- Adafruit PyPortal Titano
- Adafruit Pybadge
- Adafruit QT Py ESP32S2
- Adafruit QT Py RP2040
- Adafruit QT2040 Trinkey
- Adafruit Trellis M4 Express
- AloriumTech Evo M51
- Arduino Nano 33 BLE
- Arduino Nano RP2040 Connect
- Artisense Reference Design RD00
- AtelierDuMaker nRF52840 Breakout
- BDMICRO VINA-D51
- BLE-SS dev board Multi Sensor
- BastBLE
- BastWiFi
- BlueMicro840
- CP32-M4
- Capable Robot Programmable USB Hub
- Challenger NB RP2040 WiFi
- Challenger RP2040 LTE
- Challenger RP2040 WiFi
- CircuitBrains Deluxe
- CrumpS2
- Cytron Maker Nano RP2040
- Cytron Maker Pi RP2040
- DynOSSAT-EDU-OBC
- ESP 12k NodeMCU
- Electronut Labs Blip
- Electronut Labs Papyr
- EncoderPad RP2040
- Feather ESP32S2 without PSRAM
- FeatherS2
- FeatherS2 Neo
- FeatherS2 PreRelease
- Franzininho WIFI w/Wroom
- Franzininho WIFI w/Wrover
- Gravitech Cucumber M
- Gravitech Cucumber MS
- Gravitech Cucumber R
- Gravitech Cucumber RS
- HMI-DevKit-1.1
- HiiBot BlueFi
- IkigaiSense Vita nRF52840
- Kaluga 1
- LILYGO TTGO T8 ESP32-S2 w/Display
- MDBT50Q-DB-40
- MDBT50Q-RX Dongle
- MORPHEANS MorphESP-240
- MakerDiary nRF52840 MDK
- MakerDiary nRF52840 MDK USB Dongle
- Makerdiary M60 Keyboard
- Makerdiary Pitaya Go
- Makerdiary nRF52840 M.2 Developer Kit
- Melopero Shake RP2040
- MicroDev microC3
- MicroDev microS2
- Mini SAM M4
- Oak Dev Tech BREAD2040
- Oak Dev Tech PixelWing ESP32S2
- Open Hardware Summit 2020 Badge
- PCA10056 nRF52840-DK
- PCA10059 nRF52840 Dongle
- PCA10100 nRF52833 DK
- Particle Argon
- Particle Boron
- Particle Xenon
- PewPew M4
- Pimoroni Interstate 75
- Pimoroni Keybow 2040
- Pimoroni PGA2040
- Pimoroni Pico LiPo (16MB)
- Pimoroni Pico LiPo (4MB)
- Pimoroni PicoSystem
- Pimoroni Plasma 2040
- Pimoroni Tiny 2040
- PyCubedv04
- PyCubedv04-MRAM
- PyCubedv05
- PyCubedv05-MRAM
- PyKey60
- RP2040 Stamp
- Raspberry Pi Pico
- Robo HAT MM1 M4
- S2Mini
- S2Pico
- SAM E54 Xplained Pro
- SAM32v26
- Saola 1 w/Wroom
- Saola 1 w/Wrover
- Seeeduino Wio Terminal
- Silicognition LLC M4-Shim
- SparkFun MicroMod RP2040 Processor
- SparkFun MicroMod SAMD51 Processor
- SparkFun MicroMod nRF52840 Processor
- SparkFun Pro Micro RP2040
- SparkFun Pro nRF52840 Mini
- SparkFun Thing Plus - RP2040
- SparkFun Thing Plus - SAMD51
- TG-Boards' Datalore IP M4
- TG-Watch
- Targett Module Clip w/Wroom
- Targett Module Clip w/Wrover
- Teknikio Bluebird
- The Open Book Feather
- Thingz - Galaxia
- TinkeringTech ScoutMakes Azul
- TinyS2
- UARTLogger II
- WarmBit BluePixel nRF52840
- micro:bit v2
- nanoESP32-S2 w/Wrover
- nanoESP32-S2 w/Wroom
- nice!nano
.. py:class:: Mixer(voice_count: int = 2, buffer_size: int = 1024, channel_count: int = 2, bits_per_sample: int = 16, samples_signed: bool = True, sample_rate: int = 8000)
Mixes one or more audio samples together into one sample.
Create a Mixer object that can mix multiple channels with the same sample rate.
Samples are accessed and controlled with the mixer's `audiomixer.MixerVoice` objects.
:param int voice_count: The maximum number of voices to mix
:param int buffer_size: The total size in bytes of the buffers to mix into
:param int channel_count: The number of channels the source samples contain. 1 = mono; 2 = stereo.
:param int bits_per_sample: The bits per sample of the samples being played
:param bool samples_signed: Samples are signed (True) or unsigned (False)
:param int sample_rate: The sample rate to be used for all samples
Playing a wave file from flash::
import board
import audioio
import audiocore
import audiomixer
import digitalio
a = audioio.AudioOut(board.A0)
music = audiocore.WaveFile(open("cplay-5.1-16bit-16khz.wav", "rb"))
drum = audiocore.WaveFile(open("drum.wav", "rb"))
mixer = audiomixer.Mixer(voice_count=2, sample_rate=16000, channel_count=1,
bits_per_sample=16, samples_signed=True)
print("playing")
# Have AudioOut play our Mixer source
a.play(mixer)
# Play the first sample voice
mixer.voice[0].play(music)
while mixer.playing:
# Play the second sample voice
mixer.voice[1].play(drum)
time.sleep(1)
print("stopped")
.. py:attribute:: playing
:annotation: :bool
True when any voice is being output. (read-only)
.. py:attribute:: sample_rate
:annotation: :int
32 bit value that dictates how quickly samples are played in Hertz (cycles per second).
.. py:attribute:: voice
:annotation: :Tuple[MixerVoice, Ellipsis]
A tuple of the mixer's `audiomixer.MixerVoice` object(s).
.. code-block:: python
>>> mixer.voice
(,)
.. py:method:: deinit() -> None
Deinitialises the Mixer and releases any hardware resources for reuse.
.. py:method:: __enter__() -> Mixer
No-op used by Context Managers.
.. py:method:: __exit__() -> None
Automatically deinitializes the hardware when exiting a context. See
:ref:`lifetime-and-contextmanagers` for more info.
.. py:method:: play(sample: _typing.AudioSample, *, voice: int = 0, loop: bool = False) -> None
Plays the sample once when loop=False and continuously when loop=True.
Does not block. Use `playing` to block.
Sample must be an `audiocore.WaveFile`, `audiocore.RawSample`, `audiomixer.Mixer` or `audiomp3.MP3Decoder`.
The sample must match the Mixer's encoding settings given in the constructor.
.. py:method:: stop_voice(voice: int = 0) -> None
Stops playback of the sample on the given voice.
.. py:class:: MixerVoice
Voice objects used with Mixer
Used to access and control samples with `audiomixer.Mixer`.
MixerVoice instance object(s) created by `audiomixer.Mixer`.
.. py:attribute:: level
:annotation: :float
The volume level of a voice, as a floating point number between 0 and 1.
.. py:attribute:: playing
:annotation: :bool
True when this voice is being output. (read-only)
.. py:method:: play(sample: _typing.AudioSample, *, loop: bool = False) -> None
Plays the sample once when ``loop=False``, and continuously when ``loop=True``.
Does not block. Use `playing` to block.
Sample must be an `audiocore.WaveFile`, `audiocore.RawSample`, `audiomixer.Mixer` or `audiomp3.MP3Decoder`.
The sample must match the `audiomixer.Mixer`'s encoding settings given in the constructor.
.. py:method:: stop() -> None
Stops playback of the sample on this voice.