improved detection of nothing playing

This commit is contained in:
ChuckBuilds
2025-05-25 17:31:32 -05:00
parent e2f67c04db
commit e244b2cfd4
2 changed files with 147 additions and 164 deletions

View File

@@ -1,4 +1,4 @@
Pillow==10.0.0 Pillow>=10.3.0
pytz==2023.3 pytz==2023.3
requests==2.31.0 requests==2.31.0
timezonefinder==6.2.0 timezonefinder==6.2.0

View File

@@ -40,6 +40,7 @@ class MusicManager:
self.enabled = False # Default self.enabled = False # Default
self.preferred_source = "auto" # Default self.preferred_source = "auto" # Default
self.stop_event = threading.Event() self.stop_event = threading.Event()
self.track_info_lock = threading.Lock() # Added lock
# Display related attributes moved from DisplayController # Display related attributes moved from DisplayController
self.album_art_image = None self.album_art_image = None
@@ -155,62 +156,48 @@ class MusicManager:
return return
# Only process if YTM is the preferred source, or if auto and Spotify isn't actively playing. # Only process if YTM is the preferred source, or if auto and Spotify isn't actively playing.
# This check is to ensure we don't override an active Spotify session if preferred_source is 'auto' spotify_is_playing_flag = False
# and Spotify just happens to be paused but YTM starts playing something. with self.track_info_lock:
# The main polling loop has more robust logic for who 'wins' in auto mode. if self.current_source == MusicSource.SPOTIFY and self.current_track_info and self.current_track_info.get('is_playing'):
# This direct callback should primarily act when YTM is the clear choice or nothing else is playing. spotify_is_playing_flag = True
spotify_is_playing = False
if self.current_source == MusicSource.SPOTIFY and self.current_track_info and self.current_track_info.get('is_playing'):
spotify_is_playing = True
if not (self.preferred_source == "ytm" or (self.preferred_source == "auto" and not spotify_is_playing)): if not (self.preferred_source == "ytm" or (self.preferred_source == "auto" and not spotify_is_playing_flag)):
logger.debug("Skipping YTM direct update due to preferred_source/Spotify state.") logger.debug("Skipping YTM direct update due to preferred_source/Spotify state.")
return return
# Check if player is actually playing (not paused, not an ad)
player_info = ytm_data.get('player', {}) player_info = ytm_data.get('player', {})
video_info = ytm_data.get('video', {})
is_actually_playing_ytm = (player_info.get('trackState') == 1) and not player_info.get('adPlaying', False) is_actually_playing_ytm = (player_info.get('trackState') == 1) and not player_info.get('adPlaying', False)
if not ytm_data or not is_actually_playing_ytm: simplified_info = self.get_simplified_track_info(ytm_data if is_actually_playing_ytm else None,
# If YTM is not playing or data is null, and we were on YTM, treat as a stop. MusicSource.YTM if is_actually_playing_ytm else MusicSource.NONE)
if self.current_source == MusicSource.YTM:
logger.info("YTM direct update indicates YTM stopped. Clearing YTM info.")
simplified_info = self.get_simplified_track_info(None, MusicSource.NONE)
polled_source = MusicSource.NONE # Effectively, nothing is playing from YTM's perspective
else:
# Not currently on YTM, and YTM is not playing, so no change to announce from YTM's side.
return
else:
simplified_info = self.get_simplified_track_info(ytm_data, MusicSource.YTM)
polled_source = MusicSource.YTM
has_changed = False has_changed = False
if simplified_info != self.current_track_info: with self.track_info_lock:
has_changed = True if simplified_info != self.current_track_info:
has_changed = True
old_album_art_url = self.current_track_info.get('album_art_url') if self.current_track_info else None old_album_art_url = self.current_track_info.get('album_art_url') if self.current_track_info else None
new_album_art_url = simplified_info.get('album_art_url') if simplified_info else None new_album_art_url = simplified_info.get('album_art_url') if simplified_info else None
self.current_track_info = simplified_info self.current_track_info = simplified_info
# Only set current_source to YTM if YTM is actually playing and preferred or auto self.current_source = MusicSource.YTM if is_actually_playing_ytm and simplified_info.get('source') == 'YouTube Music' else self.current_source
self.current_source = polled_source if is_actually_playing_ytm and polled_source == MusicSource.YTM else self.current_source if not is_actually_playing_ytm and self.current_source == MusicSource.YTM:
if not is_actually_playing_ytm and self.current_source == MusicSource.YTM: self.current_source = MusicSource.NONE
self.current_source = MusicSource.NONE # If YTM stopped, it's no longer the source
if new_album_art_url != old_album_art_url: if new_album_art_url != old_album_art_url:
self.album_art_image = None self.album_art_image = None
self.last_album_art_url = new_album_art_url self.last_album_art_url = new_album_art_url
display_title = self.current_track_info.get('title', 'None') if self.current_track_info else 'None' display_title = self.current_track_info.get('title', 'None') if self.current_track_info else 'None'
logger.debug(f"YTM Direct Update: Track change detected. Source: {self.current_source.name}. Track: {display_title}") logger.debug(f"YTM Direct Update: Track change detected. Source: {self.current_source.name}. Track: {display_title}")
else: else:
logger.debug("YTM Direct Update: No change in simplified track info.") logger.debug("YTM Direct Update: No change in simplified track info.")
if has_changed and self.update_callback: if has_changed and self.update_callback:
try: try:
self.update_callback(self.current_track_info) # This is the callback to DisplayController # Pass a copy of the track info to the callback
with self.track_info_lock:
track_info_copy = self.current_track_info.copy() if self.current_track_info else None
self.update_callback(track_info_copy)
except Exception as e: except Exception as e:
logger.error(f"Error executing DisplayController update callback from YTM direct update: {e}") logger.error(f"Error executing DisplayController update callback from YTM direct update: {e}")
@@ -257,25 +244,23 @@ class MusicManager:
"""Continuously polls music sources for updates, respecting preferences.""" """Continuously polls music sources for updates, respecting preferences."""
if not self.enabled: if not self.enabled:
logging.warning("Polling attempted while music manager is disabled. Stopping polling thread.") logging.warning("Polling attempted while music manager is disabled. Stopping polling thread.")
return # Should not happen if start_polling checks enabled, but safety check return
while not self.stop_event.is_set(): while not self.stop_event.is_set():
polled_track_info = None polled_track_info_data = None
polled_source = MusicSource.NONE polled_source = MusicSource.NONE
is_playing = False is_playing_from_poll = False # Renamed to avoid conflict
# Determine which sources to poll based on preference
poll_spotify = self.preferred_source in ["auto", "spotify"] and self.spotify and self.spotify.is_authenticated() poll_spotify = self.preferred_source in ["auto", "spotify"] and self.spotify and self.spotify.is_authenticated()
poll_ytm = self.preferred_source in ["auto", "ytm"] and self.ytm # Check if ytm object exists poll_ytm = self.preferred_source in ["auto", "ytm"] and self.ytm
# --- Try Spotify First (if allowed and available) ---
if poll_spotify: if poll_spotify:
try: try:
spotify_track = self.spotify.get_current_track() spotify_track = self.spotify.get_current_track()
if spotify_track and spotify_track.get('is_playing'): if spotify_track and spotify_track.get('is_playing'):
polled_track_info = spotify_track polled_track_info_data = spotify_track
polled_source = MusicSource.SPOTIFY polled_source = MusicSource.SPOTIFY
is_playing = True is_playing_from_poll = True
logging.debug(f"Polling Spotify: Active track - {spotify_track.get('item', {}).get('name')}") logging.debug(f"Polling Spotify: Active track - {spotify_track.get('item', {}).get('name')}")
else: else:
logging.debug("Polling Spotify: No active track or player paused.") logging.debug("Polling Spotify: No active track or player paused.")
@@ -283,25 +268,19 @@ class MusicManager:
logging.error(f"Error polling Spotify: {e}") logging.error(f"Error polling Spotify: {e}")
if "token" in str(e).lower(): if "token" in str(e).lower():
logging.warning("Spotify auth token issue detected during polling.") logging.warning("Spotify auth token issue detected during polling.")
# --- Try YTM if Spotify isn't playing OR if YTM is preferred --- should_poll_ytm_now = poll_ytm and (self.preferred_source == "ytm" or (self.preferred_source == "auto" and not is_playing_from_poll))
# If YTM is preferred, poll it even if Spotify might be playing (config override)
# If Auto, only poll YTM if Spotify wasn't found playing
should_poll_ytm_now = poll_ytm and (self.preferred_source == "ytm" or (self.preferred_source == "auto" and not is_playing))
if should_poll_ytm_now: if should_poll_ytm_now:
# Re-check availability just before polling
if self.ytm and self.ytm.is_connected: if self.ytm and self.ytm.is_connected:
try: try:
ytm_track = self.ytm.get_current_track() ytm_track_data = self.ytm.get_current_track() # Data from YTMClient's cache
# Ensure ytm_track is not None before trying to access its player info if ytm_track_data and ytm_track_data.get('player') and not ytm_track_data.get('player', {}).get('isPaused') and not ytm_track_data.get('player',{}).get('adPlaying', False):
if ytm_track and ytm_track.get('player') and not ytm_track.get('player', {}).get('isPaused'): if self.preferred_source == "ytm" or not is_playing_from_poll:
# If YTM is preferred, it overrides Spotify even if Spotify was playing polled_track_info_data = ytm_track_data
if self.preferred_source == "ytm" or not is_playing:
polled_track_info = ytm_track
polled_source = MusicSource.YTM polled_source = MusicSource.YTM
is_playing = True is_playing_from_poll = True # YTM is now considered playing
logging.debug(f"Polling YTM: Active track - {ytm_track.get('track', {}).get('title')}") logger.debug(f"Polling YTM: Active track - {ytm_track_data.get('track', {}).get('title')}")
else: else:
logging.debug("Polling YTM: No active track or player paused (or track data missing player info).") logging.debug("Polling YTM: No active track or player paused (or track data missing player info).")
except Exception as e: except Exception as e:
@@ -310,43 +289,60 @@ class MusicManager:
logging.debug("Skipping YTM poll: Client not initialized or not connected.") logging.debug("Skipping YTM poll: Client not initialized or not connected.")
# Consider setting self.ytm = None if it becomes unavailable repeatedly? # Consider setting self.ytm = None if it becomes unavailable repeatedly?
# --- Consolidate and Check for Changes --- simplified_info_poll = self.get_simplified_track_info(polled_track_info_data, polled_source)
simplified_info = self.get_simplified_track_info(polled_track_info, polled_source)
has_changed = False has_changed_poll = False
if simplified_info != self.current_track_info: with self.track_info_lock:
has_changed = True if simplified_info_poll != self.current_track_info:
has_changed_poll = True
# Update internal state old_album_art_url_poll = self.current_track_info.get('album_art_url') if self.current_track_info else None
old_album_art_url = self.current_track_info.get('album_art_url') if self.current_track_info else None new_album_art_url_poll = simplified_info_poll.get('album_art_url') if simplified_info_poll else None
new_album_art_url = simplified_info.get('album_art_url') if simplified_info else None
self.current_track_info = simplified_info self.current_track_info = simplified_info_poll
self.current_source = polled_source self.current_source = polled_source
if new_album_art_url != old_album_art_url: if new_album_art_url_poll != old_album_art_url_poll:
self.album_art_image = None self.album_art_image = None
self.last_album_art_url = new_album_art_url self.last_album_art_url = new_album_art_url_poll
display_title = self.current_track_info.get('title', 'None') if self.current_track_info else 'None' display_title_poll = self.current_track_info.get('title', 'None') if self.current_track_info else 'None'
logger.debug(f"Track change detected. Source: {self.current_source.name}. Track: {display_title}") logger.debug(f"Poll Update: Track change detected. Source: {self.current_source.name}. Track: {display_title_poll}")
else: else:
logger.debug("No change in simplified track info.") logger.debug("Poll Update: No change in simplified track info.")
if has_changed and self.update_callback: if has_changed_poll and self.update_callback:
try: try:
self.update_callback(self.current_track_info) with self.track_info_lock:
track_info_copy_poll = self.current_track_info.copy() if self.current_track_info else None
self.update_callback(track_info_copy_poll)
except Exception as e: except Exception as e:
logger.error(f"Error executing update callback: {e}") logger.error(f"Error executing update callback from poll: {e}")
time.sleep(self.polling_interval) time.sleep(self.polling_interval)
# Modified to accept data and source, making it more testable/reusable # Modified to accept data and source, making it more testable/reusable
def get_simplified_track_info(self, track_data, source): def get_simplified_track_info(self, track_data, source):
"""Provides a consistent format for track info regardless of source.""" """Provides a consistent format for track info regardless of source."""
# Default "Nothing Playing" structure
nothing_playing_info = {
'source': 'None',
'title': 'Nothing Playing',
'artist': '',
'album': '',
'album_art_url': None,
'duration_ms': 0,
'progress_ms': 0,
'is_playing': False,
}
if source == MusicSource.SPOTIFY and track_data: if source == MusicSource.SPOTIFY and track_data:
item = track_data.get('item', {}) item = track_data.get('item', {})
if not item: return None is_playing_spotify = track_data.get('is_playing', False)
if not item or not is_playing_spotify:
return nothing_playing_info.copy()
return { return {
'source': 'Spotify', 'source': 'Spotify',
'title': item.get('name'), 'title': item.get('name'),
@@ -355,63 +351,52 @@ class MusicManager:
'album_art_url': item.get('album', {}).get('images', [{}])[0].get('url') if item.get('album', {}).get('images') else None, 'album_art_url': item.get('album', {}).get('images', [{}])[0].get('url') if item.get('album', {}).get('images') else None,
'duration_ms': item.get('duration_ms'), 'duration_ms': item.get('duration_ms'),
'progress_ms': track_data.get('progress_ms'), 'progress_ms': track_data.get('progress_ms'),
'is_playing': track_data.get('is_playing', False), 'is_playing': is_playing_spotify, # Should be true here
} }
elif source == MusicSource.YTM and track_data: elif source == MusicSource.YTM and track_data:
video_info = track_data.get('video', {}) # Corrected: song details are in 'video' video_info = track_data.get('video', {})
player_info = track_data.get('player', {}) player_info = track_data.get('player', {})
title = video_info.get('title', 'Unknown Title') title = video_info.get('title') # Check if title exists
artist = video_info.get('author', 'Unknown Artist') artist = video_info.get('author')
album = video_info.get('album') # Can be null, handled by .get in return
duration_seconds = video_info.get('durationSeconds')
duration_ms = int(duration_seconds * 1000) if duration_seconds is not None else 0
# Progress is in player_info.videoProgress (in seconds)
progress_seconds = player_info.get('videoProgress')
progress_ms = int(progress_seconds * 1000) if progress_seconds is not None else 0
# Album art
thumbnails = video_info.get('thumbnails', [])
album_art_url = thumbnails[0].get('url') if thumbnails else None
# Play state: player_info.trackState: -1 Unknown, 0 Paused, 1 Playing, 2 Buffering # Play state: player_info.trackState: -1 Unknown, 0 Paused, 1 Playing, 2 Buffering
track_state = player_info.get('trackState') track_state = player_info.get('trackState')
is_playing = (track_state == 1) # 1 means Playing is_playing_ytm = (track_state == 1) # 1 means Playing
# Check for ad playing, treat as 'paused' for track display purposes
if player_info.get('adPlaying', False): if player_info.get('adPlaying', False):
is_playing = False # Or handle as a special state if needed is_playing_ytm = False
logging.debug("YTM: Ad is playing, reporting track as not actively playing.") logging.debug("YTM: Ad is playing, reporting track as not actively playing.")
if not title or not artist or not is_playing_ytm: # If no title/artist, or not truly playing
return nothing_playing_info.copy()
album = video_info.get('album')
duration_seconds = video_info.get('durationSeconds')
duration_ms = int(duration_seconds * 1000) if duration_seconds is not None else 0
progress_seconds = player_info.get('videoProgress')
progress_ms = int(progress_seconds * 1000) if progress_seconds is not None else 0
thumbnails = video_info.get('thumbnails', [])
album_art_url = thumbnails[0].get('url') if thumbnails else None
return { return {
'source': 'YouTube Music', 'source': 'YouTube Music',
'title': title, 'title': title,
'artist': artist, 'artist': artist,
'album': album if album else '', # Ensure album is not None for display 'album': album if album else '',
'album_art_url': album_art_url, 'album_art_url': album_art_url,
'duration_ms': duration_ms, 'duration_ms': duration_ms,
'progress_ms': progress_ms, 'progress_ms': progress_ms,
'is_playing': is_playing, 'is_playing': is_playing_ytm, # Should be true here
} }
else: else:
# Return a default structure for 'nothing playing' # This covers cases where source is NONE, or track_data is None for Spotify/YTM
return { return nothing_playing_info.copy()
'source': 'None',
'title': 'Nothing Playing',
'artist': '',
'album': '',
'album_art_url': None,
'duration_ms': 0,
'progress_ms': 0,
'is_playing': False,
}
def get_current_display_info(self): def get_current_display_info(self):
"""Returns the currently stored track information for display.""" """Returns the currently stored track information for display."""
# This method might be used by DisplayController if it still needs a snapshot with self.track_info_lock:
return self.current_track_info return self.current_track_info.copy() if self.current_track_info else None
def start_polling(self): def start_polling(self):
# Only start polling if enabled # Only start polling if enabled
@@ -446,27 +431,28 @@ class MusicManager:
# Method moved from DisplayController and renamed # Method moved from DisplayController and renamed
def display(self, force_clear: bool = False): def display(self, force_clear: bool = False):
if force_clear: # When DisplayController switches to music mode if force_clear:
self.display_manager.clear() self.display_manager.clear()
self.activate_music_display() # Ensure YTM connection is initiated and is_music_display_active is true self.activate_music_display()
# current_track_info might be stale this frame, leading to "Nothing Playing" initially,
# but YTM connection will be active to receive updates.
display_info = self.current_track_info with self.track_info_lock:
current_display_info = self.current_track_info.copy() if self.current_track_info else None
# We also need self.last_album_art_url and self.album_art_image under the same lock if they are read here and written elsewhere
# For now, last_album_art_url is updated along with current_track_info under the lock
# album_art_image is assigned here or if it's None and last_album_art_url exists, fetched.
# Let's assume current_display_info correctly snapshots necessary parts or that album art fetching uses locked members.
local_last_album_art_url = self.last_album_art_url
local_album_art_image = self.album_art_image
if not display_info or not display_info.get('is_playing', False) or display_info.get('title') == 'Nothing Playing': # Simplified condition to prevent "Nothing Playing" flicker:
# Music is not playing or info is not available. # Show screen if we have any track info, unless it's explicitly "Nothing Playing".
# The 'is_playing' check within get_simplified_track_info should handle ads/paused state correctly by returning 'Nothing Playing' title if appropriate.
if not current_display_info or current_display_info.get('title') == 'Nothing Playing':
if not hasattr(self, '_last_nothing_playing_log_time') or \ if not hasattr(self, '_last_nothing_playing_log_time') or \
time.time() - getattr(self, '_last_nothing_playing_log_time', 0) > 30: time.time() - getattr(self, '_last_nothing_playing_log_time', 0) > 30:
logger.info("Music Screen (MusicManager): Nothing playing or info unavailable.") logger.info("Music Screen (MusicManager): Nothing playing or info explicitly 'Nothing Playing'.")
self._last_nothing_playing_log_time = time.time() self._last_nothing_playing_log_time = time.time()
# DEACTIVATION LOGIC REMOVED FROM HERE.
# YTM will remain connected as long as the music display mode is active.
# Deactivation is handled by stop_polling or an explicit call if DisplayController
# signals a mode change away from music.
# Ensure screen is clear if not already by force_clear.
if not force_clear: if not force_clear:
self.display_manager.clear() self.display_manager.clear()
@@ -476,27 +462,22 @@ class MusicManager:
self.display_manager.draw_text("Nothing Playing", x=x_pos, y=y_pos, font=self.display_manager.regular_font) self.display_manager.draw_text("Nothing Playing", x=x_pos, y=y_pos, font=self.display_manager.regular_font)
self.display_manager.update_display() self.display_manager.update_display()
self.scroll_position_title = 0 with self.track_info_lock: # Protect writes to shared state
self.scroll_position_artist = 0 self.scroll_position_title = 0
self.title_scroll_tick = 0 self.scroll_position_artist = 0
self.artist_scroll_tick = 0 self.title_scroll_tick = 0
self.album_art_image = None self.artist_scroll_tick = 0
self.last_album_art_url = None self.album_art_image = None # Clear any fetched art if we are showing Nothing Playing
# self.last_album_art_url = None # Keep last_album_art_url so we don't re-fetch if it was a brief flicker
return return
# If we've reached here, it means we are about to display actual music info. # If we've reached here, it means we are about to display actual music info.
# Ensure music display components (like YTM connection) are active if not already.
if not self.is_music_display_active: if not self.is_music_display_active:
# This might be called if display() is invoked when music mode is already considered
# active by DisplayController but is_music_display_active is False in MusicManager
# (e.g. after an error or unexpected state).
self.activate_music_display() self.activate_music_display()
# Ensure screen is cleared if not force_clear but needed (e.g. transition from "Nothing Playing" to actual music) if not force_clear:
if not force_clear: # If force_clear was true, screen is already blank and ready.
self.display_manager.draw.rectangle([0, 0, self.display_manager.matrix.width, self.display_manager.matrix.height], fill=(0, 0, 0)) self.display_manager.draw.rectangle([0, 0, self.display_manager.matrix.width, self.display_manager.matrix.height], fill=(0, 0, 0))
# Album Art Configuration
matrix_height = self.display_manager.matrix.height matrix_height = self.display_manager.matrix.height
album_art_size = matrix_height - 2 album_art_size = matrix_height - 2
album_art_target_size = (album_art_size, album_art_size) album_art_target_size = (album_art_size, album_art_size)
@@ -505,26 +486,30 @@ class MusicManager:
text_area_x_start = album_art_x + album_art_size + 2 text_area_x_start = album_art_x + album_art_size + 2
text_area_width = self.display_manager.matrix.width - text_area_x_start - 1 text_area_width = self.display_manager.matrix.width - text_area_x_start - 1
# Fetch and display album art using self.last_album_art_url and self.album_art_image # Fetch and display album art using local_last_album_art_url and potentially updating self.album_art_image
if self.last_album_art_url and not self.album_art_image: if local_last_album_art_url and not local_album_art_image: # Check local_album_art_image
logger.info(f"MusicManager: Fetching album art from: {self.last_album_art_url}") logger.info(f"MusicManager: Fetching album art from: {local_last_album_art_url}")
self.album_art_image = self._fetch_and_resize_image(self.last_album_art_url, album_art_target_size) fetched_image = self._fetch_and_resize_image(local_last_album_art_url, album_art_target_size)
if self.album_art_image: if fetched_image:
logger.info(f"MusicManager: Album art fetched and processed successfully.") logger.info(f"MusicManager: Album art fetched and processed successfully.")
with self.track_info_lock:
self.album_art_image = fetched_image # Update shared state
local_album_art_image = fetched_image # Update local copy for current render
else: else:
logger.warning(f"MusicManager: Failed to fetch or process album art.") logger.warning(f"MusicManager: Failed to fetch or process album art.")
# Do not clear self.album_art_image here, might be a temporary glitch
if self.album_art_image: if local_album_art_image: # Use local_album_art_image for display
self.display_manager.image.paste(self.album_art_image, (album_art_x, album_art_y)) self.display_manager.image.paste(local_album_art_image, (album_art_x, album_art_y))
else: else:
self.display_manager.draw.rectangle([album_art_x, album_art_y, self.display_manager.draw.rectangle([album_art_x, album_art_y,
album_art_x + album_art_size -1, album_art_y + album_art_size -1], album_art_x + album_art_size -1, album_art_y + album_art_size -1],
outline=(50,50,50), fill=(10,10,10)) outline=(50,50,50), fill=(10,10,10))
# Use current_display_info for text, which is a snapshot from the beginning of the method
title = display_info.get('title', ' ') title = current_display_info.get('title', ' ')
artist = display_info.get('artist', ' ') artist = current_display_info.get('artist', ' ')
album = display_info.get('album', ' ') album = current_display_info.get('album', ' ')
font_title = self.display_manager.small_font font_title = self.display_manager.small_font
font_artist_album = self.display_manager.bdf_5x7_font font_artist_album = self.display_manager.bdf_5x7_font
@@ -539,7 +524,6 @@ class MusicManager:
title_width = self.display_manager.get_text_width(title, font_title) title_width = self.display_manager.get_text_width(title, font_title)
current_title_display_text = title current_title_display_text = title
if title_width > text_area_width: if title_width > text_area_width:
# Ensure scroll_position_title is valid for the current title length
if self.scroll_position_title >= len(title): if self.scroll_position_title >= len(title):
self.scroll_position_title = 0 self.scroll_position_title = 0
current_title_display_text = title[self.scroll_position_title:] + " " + title[:self.scroll_position_title] current_title_display_text = title[self.scroll_position_title:] + " " + title[:self.scroll_position_title]
@@ -560,7 +544,6 @@ class MusicManager:
artist_width = self.display_manager.get_text_width(artist, font_artist_album) artist_width = self.display_manager.get_text_width(artist, font_artist_album)
current_artist_display_text = artist current_artist_display_text = artist
if artist_width > text_area_width: if artist_width > text_area_width:
# Ensure scroll_position_artist is valid for the current artist length
if self.scroll_position_artist >= len(artist): if self.scroll_position_artist >= len(artist):
self.scroll_position_artist = 0 self.scroll_position_artist = 0
current_artist_display_text = artist[self.scroll_position_artist:] + " " + artist[:self.scroll_position_artist] current_artist_display_text = artist[self.scroll_position_artist:] + " " + artist[:self.scroll_position_artist]
@@ -586,8 +569,8 @@ class MusicManager:
# --- Progress Bar --- # --- Progress Bar ---
progress_bar_height = 3 progress_bar_height = 3
progress_bar_y = matrix_height - progress_bar_height - 1 progress_bar_y = matrix_height - progress_bar_height - 1
duration_ms = display_info.get('duration_ms', 0) duration_ms = current_display_info.get('duration_ms', 0)
progress_ms = display_info.get('progress_ms', 0) progress_ms = current_display_info.get('progress_ms', 0)
if duration_ms > 0: if duration_ms > 0:
bar_total_width = text_area_width bar_total_width = text_area_width