From c5af972fecb3ca04f4e1c24ab583b3ddfbf106e1 Mon Sep 17 00:00:00 2001 From: ABelliqueux Date: Sat, 14 Aug 2021 11:31:15 +0200 Subject: [PATCH] Correct ffmpeg cmd --- hello_multi_xa/README.md | 2 +- hello_xa/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hello_multi_xa/README.md b/hello_multi_xa/README.md index eb959e5..a9cf5e7 100644 --- a/hello_multi_xa/README.md +++ b/hello_multi_xa/README.md @@ -27,7 +27,7 @@ make cleansub ### Sound to WAV conversion with ffmpeg ```bash -ffmpeg -i input.mp3 -acodec pcm_s16le -ac 1 -ar 44100 output.wav +ffmpeg -i input.mp3 -acodec pcm_s16le -ac 2 -ar 44100 output.wav ``` ### WAV to XA conversion diff --git a/hello_xa/README.md b/hello_xa/README.md index 1667af2..17f4ded 100644 --- a/hello_xa/README.md +++ b/hello_xa/README.md @@ -8,7 +8,7 @@ You also need [`psxavenc` and `xainterleave`](https://github.com/ABelliqueux/can Use ffmpeg to create a 16-bit ADPCM mono WAV file - change -ar to reduce filesize (and quality) ```bash -$ ffmpeg -i input.mp3 -acodec pcm_s16le -ac 1 -ar 44100 output.wav +$ ffmpeg -i input.mp3 -acodec pcm_s16le -ac 2 -ar 44100 output.wav ``` You can use Audacity to edit sound, but as mentionned in [xatut.pdf](http://psx.arthus.net/sdk/Psy-Q/DOCS/XATUT.pdf), p17 :