-
-
Notifications
You must be signed in to change notification settings - Fork 4
Songs play too slowly #3
Copy link
Copy link
Open
Description
The OGGs I dumped from F 2nd (Vita) and MEGA39's (Switch) are both 48,000 Hz, but Project DS seems to be expecting 44,100 Hz, so they play too slowly.
Converting them down to 44,100 Hz they seem to be playing correctly to me, so I just used this to convert with ffmpeg instead:
#!/bin/bash
cd "$(dirname "$0")"
mkdir -p pcm
for OGG in ogg/*; do
echo $(basename $OGG)
ffmpeg -i $OGG -f s16le -ar 44100 -ac 1 pcm/$(basename $OGG .ogg).pcm -loglevel error
doneReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels