a music player for playdate
Visit this page on Playdate's website for information on how to sideload.
When I first created musik, there were no public music players out for playdate (except for Audition, but it wasn't made to be an iPod type music player), so I decided to make one!
Check out the user manual!
Head to the "issues" tab on Github and file a bug report.
Try dragging them into Audacity and re-exporting them as MP3s with no metadata.
If one of your MP3s has a different audio rate than the others, it can play back slower or faster than the others.
To fix this, you can either (for all of your MP3s if you're unsure, or for the one MP3 that has a different play rate):
- drag your MP3 into something like Audacity
- change the project rate (it should be in the bottom left corner) to 44100 Hz (or whichever you would like)
- re-export the MP3
or...
- change the sample rate with ffmpeg:
ffmpeg -i input.mp3 -ar 44100 output.mp3