:mod:`audiomp3` =============== .. py:module:: audiomp3 .. autoapi-nested-parse:: Support for MP3-compressed audio files .. raw:: html

Available on these boards

.. py:class:: MP3Decoder(file: BinaryIO, buffer: _typing.WriteableBuffer) Load a mp3 file for audio playback Load a .mp3 file for playback with `audioio.AudioOut` or `audiobusio.I2SOut`. :param typing.BinaryIO file: Already opened mp3 file :param ~_typing.WriteableBuffer buffer: Optional pre-allocated buffer, that will be split in half and used for double-buffering of the data. If not provided, two buffers are allocated internally. The specific buffer size required depends on the mp3 file. Playing a mp3 file from flash:: import board import audiomp3 import audioio import digitalio # Required for CircuitPlayground Express speaker_enable = digitalio.DigitalInOut(board.SPEAKER_ENABLE) speaker_enable.switch_to_output(value=True) data = open("cplay-16bit-16khz-64kbps.mp3", "rb") mp3 = audiomp3.MP3Decoder(data) a = audioio.AudioOut(board.A0) print("playing") a.play(mp3) while a.playing: pass print("stopped") .. py:attribute:: file :annotation: :BinaryIO File to play back. .. py:attribute:: sample_rate :annotation: :int 32 bit value that dictates how quickly samples are loaded into the DAC in Hertz (cycles per second). When the sample is looped, this can change the pitch output without changing the underlying sample. .. py:attribute:: bits_per_sample :annotation: :int Bits per sample. (read only) .. py:attribute:: channel_count :annotation: :int Number of audio channels. (read only) .. py:attribute:: rms_level :annotation: :float The RMS audio level of a recently played moment of audio. (read only) .. py:method:: deinit() -> None Deinitialises the MP3 and releases all memory resources for reuse. .. py:method:: __enter__() -> MP3Decoder 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.