Muse proto plays audio slower

Hi everyone

Using the Muse proto with Home Assistant via WiFi to play an audio file after a doorbell press.

Since a while the audio plays at a slower tempo and is sometimes stuttered.

Anyone with tips for a cause/solution?

Thanks and best regards
OWK

hi can you detail the yaml and automation that you are using?

HI,

Here it is:

ESP32

esphome:
name: raspiaudio-muse-proto-d40a44

esp32:
board: esp-wrover-kit
framework:
type: arduino

i2s_audio:
i2s_lrclk_pin: GPIO25
i2s_bclk_pin: GPIO5

media_player:

  • platform: i2s_audio
    id: media_out
    name: raspiaudio-muse-proto-d40a44 #${name} player ESPHome I2S Media Player
    dac_type: external
    i2s_dout_pin: GPIO26
    mode: mono
    mute_pin:
    number: GPIO21
    inverted: true

Enable logging

logger:

Enable Home Assistant API

api:

ota:
platform: esphome

wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password

Enable fallback hotspot (captive portal) in case wifi connection fails

ap:
ssid: “-”
password: “-”

captive_portal:

—————————————————————————

Home Assistant:

action:

  • service: media_player.play_media
    target:
    entity_id: media_player.raspiaudio_muse_proto_d40a44
    data:
    media_content_id: media-source://media_source/local/audio/DasGlockenspiel.wav
    media_content_type: audio/x-wav

Hi there

After updating the player using a HA provided ESPHome update the problem is solved. It now plays at the correct speed.

Regards
OWK

1 Like