fixtSE
FixtSEFixtSE
Blog
Membership
Shop
Booking
About
Blog
Membership
Shop
Booking
About

Youtube
Instagram
RSS
Github
Patreon
Privacy
Fixtâ€ĸŠ 2025
Published: Aug 26, 2023—2 min read

Integrate all streaming services using Music Assistant

Written by: Fixt

If you're subscribed to our Channel
Login with your Google account to get our Smart Tutorial Experience!

TABLE OF CONTENTS
InstallationMusic Assistant Add-onAutomation ExampleMusic Group Card Example

Featured

Easiest way to Control your Smart Home with AI: Ollama + Home AssistantEasiest way to Control your Smart Home with AI: Ollama + Home Assistant
Beginner DIY ESPHome mmWave Presence SensorBeginner DIY ESPHome mmWave Presence Sensor

Related

Tags

Integration
Home-Assistant
Add-on
Tutorial
Music
Automation

If you like my work, please consider supporting me on Ko-fi! ☕🎉

← Back to the blog

Installation
#

Open your Home Assistant instance and open a repository inside the Home Assistant Community Store.
You can use this button to import the repository and be redirected to the download page.
You can find the documentation here.

Music Assistant Add-on
#

Open your Home Assistant instance and show the dashboard of a Supervisor add-on.
You can use this button to import the repository and go to the add-on's page in Home Assistant.

Automation Example
#

Play/Pause/Resume with a single Button

alias: Living Room Single Switch
description: ""
trigger:
  - entity_id: sensor.switch_bedroom
    platform: state
    to: single
condition: []
action:
  - choose:
      - conditions:
          - condition: or
            conditions:
              - condition: state
                entity_id: media_player.living_room_2












































Music Group Card Example
#

Dinamic Group Card Example

type: vertical-stack
cards:
  - type: conditional
    conditions:
      - entity: media_player.living_room_2
        state_not: playing
      - entity: media_player.kitchen_2
        state_not: playing
    card:
      type: media-control
      entity: media_player.exterior_group_2
  - type: conditional
    conditions:
      










Tags

Integration
Home-Assistant
Add-on
Tutorial
Music
Automation
← Back to the blog

Featured

Easiest way to Control your Smart Home with AI: Ollama + Home AssistantEasiest way to Control your Smart Home with AI: Ollama + Home Assistant
Beginner DIY ESPHome mmWave Presence SensorBeginner DIY ESPHome mmWave Presence Sensor

Related

Tags

Integration
Home-Assistant
Add-on
Tutorial
Music
Automation
state: "off"
- condition: state
entity_id: media_player.living_room_2
state: idle
- condition: state
entity_id: media_player.living_room_2
state: standby
sequence:
- service: media_player.shuffle_set
data:
shuffle: true
target:
entity_id: media_player.living_room_2
- service: media_player.play_media
target:
entity_id: media_player.exterior_group_2
data:
media_content_id: ""
media_content_type: ""
metadata: {}
- conditions:
- condition: or
conditions:
- condition: state
entity_id: media_player.living_room_2
state: playing
- condition: state
entity_id: media_player.living_room_2
state: buffering
sequence:
- service: media_player.media_pause
data: {}
target:
entity_id: media_player.living_room_2
- conditions:
- condition: state
entity_id: media_player.living_room_2
state: paused
sequence:
- service: media_player.media_play
data: {}
target:
entity_id: media_player.living_room_2
default: []
mode: single
-
entity
:
media_player.exterior_group_2
state_not: playing
card:
type: media-control
entity: media_player.living_room_2
- type: conditional
conditions:
- entity: media_player.exterior_group_2
state_not: playing
card:
type: media-control
entity: media_player.kitchen_2