Turn your DIVOOM PIXOO64 into a dynamic visual companion with this script. It fetches and displays the album cover art of the currently playing track, enhancing your musical experience. It also extracts valuable data like the artist's name and the dominant color from the album art, which can be used for further automation in your Home Assistant environment. The script supports AI image creation using pollinations.ai and shows alternative AI-generated album cover art when no album art is available, or when using services like SoundCloud where the script can't fetch the image. It also works with some streaming radio stations.
- Image Cropping: The script removes any existing borders from the image for a better viewing experience. This is particularly useful for album art with borders or minimalist backgrounds with centralized elements. By trimming the borders, the script ensures that the main subject of the picture is not too small, providing a more detailed view of the album art.
- Image Enhancer: Amplifies the color vibrancy of the image for a more striking display.
- Sensor Data Storage: All extracted data is stored in a dedicated sensor entity within Home Assistant, making it readily available for further automation possibilities.
- RTL Support: Ensures that the artist’s name or song title is displayed correctly in right-to-left languages.
- Title Normalization: Normalizes titles and artist names for easier integration with automations and consistent display, regardless of regional characters or symbols. For instance, the artist name “Beyoncé” (with an accent) would be normalized to “Beyonce” (accent removed).
- Light Dynamic Color Integration: Uses the dominant color from the album art to set the background color on any RGB light.
- AI Image Support: The script supports AI-generated images and activates on fallback when no image is associated with the music file.
- DIVOOM PIXOO64
- Home Assistant (with add-on functionality)
- AppDaemon (Home Assistant add-on)
Tip
Create a Toggle Helper in Home Assistant. For example, input_boolean.pixoo64_album_art
can be used to control when the script runs. This means that whenever the player starts a track, the album art will appear if the toggle is on. Establish this helper within the Home Assistant User Interface or YAML code. It’s best to do this prior to installation. Here’s how you can proceed:
- Open
configuration.yaml
. - Add this lines and restart Home Assistant:
#/homeassistant/configuration.yaml
input_boolean:
pixoo64_album_art:
name: Pixoo64 Album Art
icon: mdi:framed_picture
Ensure that the helper sensor is created prior to executing the script for the first time.
- Install AppDaemon from the Home Assistant add-on store.
- On the AppDaemon Configuration page, install the
requests
,numpy==1.26.4
,pillow
,python-bidi
andunidecode
Python packages.
Important
Not installing the packadges may cause the script not work
# http://homeassistant.local:8123/hassio/addon/a0d7b954_appdaemon/config
system_packages: []
python_packages:
- requests
- unidecode
- pillow
- numpy==1.26.4
- python-bidi
init_commands: []
- Download the Python file from This Link.
- Place the downloaded file inside the
appdaemon/apps
directory and proceed to the final step
- In Home Assistant: Navigate to
HACS
>Automation
- If this option is not available, go to
Settings
>Integrations
>HACS
>Configure
and enableAppDaemon apps discovery & tracking
. After enabling, return to the main HACS screen and selectAutomation
- If this option is not available, go to
- Navigate to the
Custom Repositories
page and add the following repository asAutomation
:https://github.com/idodov/pixoo64-media-album-art/
- Return to the
HACS Automation
screen, press the+
button, search forPIXOO64 Media Album Art
, and click onDownload
Important
In AppDaemon, make sure to specify the apps directory in /addon_configs/a0d7b954_appdaemon/appdaemon.yaml
.
Also, remember to transfer all files from /addon_configs/a0d7b954_appdaemon/apps/
to /homeassistant/appdaemon/apps/
.
#/addon_configs/a0d7b954_appdaemon/appdaemon.yaml
---
secrets: /homeassistant/secrets.yaml
appdaemon:
app_dir: /homeassistant/appdaemon/apps/
Open /appdaemon/apps/apps.yaml
and add this code:
Tip
If you’re using the File Editor add-on, it’s set up by default to only allow file access to the main Home Assistant directory. However, the AppDaemon add-on files are located in the root directory. To access these files, follow these steps:
# appdaemon/apps/apps.yaml
---
pixoo64_media_album_art:
module: pixoo64_media_album_art
class: Pixoo64_Media_Album_Art
home_assistant:
ha_url: "http://homeassistant.local:8123" # Home Assistant URL
media_player: "media_player.era300" # Media player entity ID
toggle: "input_boolean.pixoo64_album_art" # Boolean sensor to control script execution (Optional)
pixoo_sensor: "sensor.pixoo64_media_data" # Sensor to store media data (Optional)
light: False # RGB light entity ID (if any) or False (Optional)
ai_fallback: turbo # Create alternative AI image when fallback - use model 'flex' or 'turbo'
pixoo:
url: "http://192.168.86.21:80/post" # Pixoo device URL
full_control: True # Control display on/off with play/pause
contrast: True # Apply 50% contrast filter
clock: True # Show clock top corner
clock_align: Right # Clock align - Left or Right
tv_icon: True # Shows TV icon when playing sound from TV
show_text:
enabled: False # Show media artist and title
clean_title: True # Remove "Remaster" labels, track number and file extentions from the title if any
text_background: True # Change background color or better text display with image
font: 2 # Pixoo internal font type (0-7) for fallback text when there is no image
color: False # Use alternative font color
crop_borders:
enabled: True # Crop image borders if present
extra: True # Apply enhanced border crop
Warning
Only save it once you’ve made the described changes to the settings.
Parameter | Description | Example Values |
---|---|---|
ha_url |
Home Assistant URL | "http://homeassistant.local:8123" |
media_player |
Media player entity ID | "media_player.era300" |
toggle |
Boolean sensor to control script execution (Optional) | "input_boolean.pixoo64_album_art" |
pixoo_sensor |
Sensor to store media data (Optional) | "sensor.pixoo64_media_data" |
light |
RGB light entity ID (if any) (Optional) | False or light.rgb_light |
ai_fallback |
Create alternative album art cover using the power of AI. Can be flux or turbo |
turbo |
url |
Pixoo device URL | "http://192.168.86.21:80/post" |
full_control |
Control display on/off with play/pause | True |
contrast |
Apply 50% contrast filter | True |
clock |
Show a clock top corner | False |
clock_align |
Align to clock Left or Right |
Left |
tv_icon |
Shows TV art when playing sound from TV | True |
show_text - enabled |
Show media info with image | False |
show_text - clean_title |
Remove "Remaster" labels, track number and file extentions from the title if any | True |
show_text - text_background |
Change background of text area | True |
show_text - font |
Pixoo internal font type (0-7). Used in fallback screen only | 2 |
show_text - color |
Use alternative font color | False |
crop_borders - enabled |
Crop image borders if present | True |
crop_borders - extra |
Apply enhanced border crop | True |
Note
The light feature is a built-in automation that sends a ‘turn on’ command with RGB values corresponding to the most dominant color in the image. If the image is black, white, or gray, the automation will select a soft random color.
Given the Pixoo screen’s 64x64 pixel size, it is highly recommended to utilize the crop feature. Many album cover arts come with borders, occasionally wide ones, which can distort the display of the cover art on the screen. To rectify this, the script ensures the removal of the picture frame border.
Original | Crop | Extra |
---|---|---|
Make sure that input_boolean.pixoo64_album_art
is turned on
. The next time you play a track, the album cover art will be displayed, and all the usable picture data will be stored in a new sensor.
The sensor sensor.pixoo64_media_data
is a virtual entity created in Home Assistant. It’s designed to store useful picture data from the album cover art of the currently playing song. This includes the artist’s name, the title of the media and color information such as the color of the font and the background. This sensor allows for dynamic visual experiences and automation possibilities based on the music being played.
Attribute | Description |
---|---|
artist |
The original name of the artist |
normalized_artist |
The artist's name in Latin letters |
media_title |
The original title of the media |
normalized_title |
The media title in Latin letters |
font_color |
The color of the font |
font_color_alternative |
An alternative color for the font |
background_color_brightness |
The brightness level of the background color |
background_color |
The color of the lower part in background |
background_color_rgb |
The RGB values of the background color (lower part) |
color_alternative |
The most common color of the background |
color_alternative_rgb |
The RGB values of the most common background color |
Here’s an examples of the sensor attributes:
artist: Björk & Trio Gudmundar Ingolfssonar
normalized_artist: Bjork & Trio Gudmundar Ingolfssonar
media_title: Það Sést Ekki Sætari Mey
normalized_title: Thad Sest Ekki Saetari Mey
font_color: "#00ff00"
font_color_alternative: "#37457a"
background_color_brightness: 173
background_color: "#c8ba85"
color_alternative_rgb:
- 198
- 185
- 132
background_color_rgb:
- 200
- 186
- 133
recommended_font_color_rgb:
- 55
- 69
- 122
color_alternative: "#c6b984"
Arabic Title When Normalized (letters changed to English):
....
media_title: آمين
normalized_title: amyn
....
Tip
The following music services have been tested: Apple Music, Spotify, Tidal, YouTube Music, MixCloud, and Sonos Radio.
Note
While experimenting with the device, you may notice occasional freezes. These could potentially be due to power issues. To address this, it’s suggested to use a USB charger with an output of 3A for optimal performance. If you’re using a charger with a lower voltage (2A, which is the minimum required), it’s advisable to limit the screen brightness to no more than 90%.
Also, at times, an overloaded Wi-Fi network might result in the Pixoo64 responding slowly. Most often, rebooting the Wi-Fi network or the router rectifies this problem.
Disclaimer: This software is not an official product from Divoom. As a result, Divoom bears no responsibility for any damages or issues arising from the use of this script. Additionally, Divoom does not offer end-user support for this script. Please utilize it at your own risk.