How to play multiple .wav files simultaneously in delphi

后端 未结 6 770
梦毁少年i
梦毁少年i 2021-01-03 14:54

I wish to multiple .wav files simultaneously in delphi.

When I open and plat the first things are fine. However the second one causes a error when it tries to open.

6条回答
  •  半阙折子戏
    2021-01-03 15:18

    You can use SoX (Sound eXchange) for this. It can play and record audio files, apply various effects, convert various formats....
    Check -m parameter to play files simultaneously. Example:

    sox -m 1.wav 2.wav -d
    

提交回复
热议问题