audiomp3¶
Support for MP3-compressed audio files
-
class
audiomp3.MP3(file: typing.BinaryIO, buffer: bytearray)¶ Load a mp3 file for audio playback
-
file:Any¶ File to play back.
-
sample_rate:Any¶ 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.
-
bits_per_sample:Any¶ Bits per sample. (read only)
-
channel_count:Any¶ Number of audio channels. (read only)
-
rms_level:Any¶ The RMS audio level of a recently played moment of audio. (read only)
-
deinit(self)¶ Deinitialises the MP3 and releases all memory resources for reuse.
-
__enter__(self)¶ No-op used by Context Managers.
-
__exit__(self)¶ Automatically deinitializes the hardware when exiting a context. See Lifetime and ContextManagers for more info.
-