Download Wav Format
How can I get a link to wav format?
@tasimski On suno.com when tapping the "Download .wav Audio" button, the /api/gen/<song_id>/convert_wav/ request is sent. After that, their job is checking whether the .wav audio is ready by calling api/gen/<song_id>/wav_file/ request. When .wav audio is ready, the latter request instead of responding with "wav_file_url": null responds with:
{
"wav_file_url": "https://cdn1.suno.ai/<song_id>.wav"
}
That's the way you can extend this
1 question about that, can the wav be of better quality if it's the mp3 converted to wav ?
I think wav sounds far better when it is converted in Suno.
The issue is how we can pass the conversion call using this API.