I'm not going to say that it's anywhere near production quality, but simply playing multiple wav files at once is something my timed-media library can do. Incidentally, it does simply pipe data to aplay for output (not with cat, though), which if you're on Linux should be ok and means you won't need any other libraries. The biggest problem is that it doesn't support loading stereo files (that is, in stereo – you can load either the left or right channel), but for mono it works and also supports quite reliable, if not very high-quality (only linear interpolation), sample rate conversion, which might be important for multiple files.
See the aplayWAVfile example, as you see it's pretty much exactly your "ideal API" example. Mixing multiple files works simply by using mix [audio1, audio2, ...] in place of audio.
Example of playing two WAV files at once:
import Control.Concurrent
import Media.Timed.Audio.ALSAPlay
import Media.Timed.Audio.SimpleFileIO
import Media.Timed.Timecode.Arith
main = do
classicJungle <- loadWAV "/home/chris/Samples/ClassicJungle/A4.wav"
realTech <- loadWAV "/home/chris/Samples/RealTech/A4.wav"
case classicJungle of
Left problem -> print problem
Right classicJungle ->
case realTech of
Left problem -> print problem
Right realTech -> do
forkIO $ aplaySimple (timecode(0:0:[0])) classicJungle
threadDelay (1000*1000)
aplaySimple (timecode(0:0:[0])) realTech
print "Finished."
where loadWAV = loadWAVfileChan 0 (timecode(0:0:[0]))
Unfortunately it never prints the line “Finished.”