title | update | |||||||||
---|---|---|---|---|---|---|---|---|---|---|
MaixCAM MaixPy Playback Audio |
|
This document provides instructions on how to play audio
The MaixCAM
does not have a built-in speaker, so you will need to solder a 1W
speaker yourself. The pins for soldering the speaker are shown in the diagram above on the VOP
and VON
pins corresponding to the Speaker.
Note: If the MaixCAM
has copper posts attached to these pins, they can be soldered directly to the posts, or on the other side of the board for aesthetic reasons.
from maix import audio, time, app
p = audio.Player("/root/output.wav")
p.play()
while not app.need_exit():
time.sleep_ms(10)
print("play finish!")
Steps:
-
Import the audio, time and app modules:
from maix import audio, time, app
-
Initialize the player:
p = audio.Player("/root/output.wav")
- Note that the default sample rate is 48k, the sample format is little-endian format - signed 16-bit, and the sample channel is 1. You can also customise the parameters like this
p = audio.Player(sample_rate=48000, format=audio.Format.FMT_S16_LE, channel = 1)
. So far only tested with sample rate 48000, formatFMT_S16_LE
, and number of sampling channels 1. - If it is a
.wav
file, the sample rate, sample format and sample channel are automatically obtained.
-
Playing audio
p.play()
- This will block until all audio data is written, but not until all audio data is actually played. If you exit the programme after calling
play()
, some of the audio data to be played may be lost.
- Done
from maix import audio, time, app
p = audio.Player()
with open('/root/output.pcm', 'rb') as f:
ctx = f.read()
p.play(bytes(ctx))
while not app.need_exit():
time.sleep_ms(10)
print("play finish!")
Steps:
-
Import the audio, time and app modules:
from maix import audio, time, app
-
Initialize the player:
p = audio.Player()
- Note that the default sample rate is 48k, the sample format is little-endian format - signed 16-bit, and the sample channel is 1. You can also customise the parameters like this
p = audio.Player(sample_rate=48000, format=audio.Format.FMT_S16_LE, channel = 1)
. So far only tested with sample rate 48000, formatFMT_S16_LE
, and number of sampling channels 1.
-
Open and playback a PCM file
with open('/root/output.pcm', 'rb') as f: ctx = f.read() p.play(bytes(ctx)) while not app.need_exit(): time.sleep_ms(10)
with open(‘xxx’,‘rb’) as f:
open filexxx
and get file objectf
ctx = f.read()
reads the contents of the file intoctx
p.play(bytes(ctx))
plays the audio,p
is the opened player object,ctx
is thePCM
data converted to type bytestime.sleep_ms(10)
Here there is a loop to wait for the playback to complete, as the playback operation is performed asynchronously, and if the program exits early, then it may result in the audio not being played completely.
- Done
The Player
and Recorder
modules have some bugs
to be worked out, make sure they are created before other modules (Camera
module, Display
module, etc.). For example:
# Create Player and Recorder first.
p = audio.Player()
r = audio.Recorder()
# Then create the Camera
c = camera.Camera()