issue: Sonos didn’t played back some mp3’s and showed an network related error message. At the same time Sonos could playback other mp3’s. So it was not a network issue.
solution: ffmpeg
- macOS install ffmpeg in terminal
brew install ffmpeg
- batch convert
for i in *.mp3; do ffmpeg -i "$i" "${i%.*}_fixed.mp3"; done
sources: