diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-12 22:42:23 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-12 22:42:23 -0600 |
| commit | fd9cce59993556400b635256d712a65d87f5d72d (patch) | |
| tree | b07670fc4c68c5f69db268f323a86197fba28456 | |
| parent | da0441ad597dc92b916fdec1fa40f35518d2993b (diff) | |
fix: Configure Mopidy for M3U playlists and analog audio output
- Set playlists_dir to /home/cjennings/music for M3U discovery
- Change default_extension from .m3u8 to .m3u for existing playlists
- Configure explicit pulsesink to analog audio device
- Reduce buffer_time from 15000ms to 1000ms for local file playback
- Prevents Bluetooth audio latency/jumpiness issues
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
| -rw-r--r-- | dotfiles/system/.config/mopidy/mopidy.conf | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dotfiles/system/.config/mopidy/mopidy.conf b/dotfiles/system/.config/mopidy/mopidy.conf index 973bcf3..a386dbd 100644 --- a/dotfiles/system/.config/mopidy/mopidy.conf +++ b/dotfiles/system/.config/mopidy/mopidy.conf @@ -16,10 +16,10 @@ color = true [audio] mixer = software mixer_volume = -output = autoaudiosink -# Buffer time in milliseconds - increase for smoother streaming -# Default is 1000ms, setting to 15000ms (15 seconds) for radio streams -buffer_time = 15000 +output = pulsesink device=alsa_output.pci-0000_00_1f.3.analog-stereo +# Buffer time in milliseconds - 1000ms works well for local files +# Explicitly using analog output to avoid Bluetooth latency/jumpiness issues +buffer_time = 1000 [proxy] scheme = @@ -61,8 +61,8 @@ default_app = mopidy enabled = true base_dir = /home/cjennings/music default_encoding = latin-1 -default_extension = .m3u8 -playlists_dir = +default_extension = .m3u +playlists_dir = /home/cjennings/music [softwaremixer] enabled = true |
