1
General Jo Engine Help / Re: CD-DA Audio in Jo is broken...?
« on: January 15, 2019, 03:32:27 pm »
I know this topic is a little older, but i just wanted to share a way I managed to get it to work with yabause.
1. Let make build the iso and cue like before
2. Convert the audio to binary format with:
3. In sl_coff.cue replace
4. Use binmerge python script from https://github.com/putnam/binmerge to merge everything to a new .bin and .cue file
It would be nice if anyone could confirm it works for him as well.
1. Let make build the iso and cue like before
2. Convert the audio to binary format with:
Quote
ffmpeg -i track1.wav -f s16le -ar 44100 -acodec pcm_s16le - >> track1.bin(repeat for every track. works as well for flac and mp3, just replace the filename)
3. In sl_coff.cue replace
Quote
FILE "track1.wav" WAVEwith
Quote
FILE "track1.bin" BINARYfor every track.
4. Use binmerge python script from https://github.com/putnam/binmerge to merge everything to a new .bin and .cue file
Quote
python3 binmerge sl_coff.cue new
It would be nice if anyone could confirm it works for him as well.