ffplay can use the concat demuxer similar to ffmpeg.
Create a file that lists up the files you want to play:
# list.txt file 'audiofileA.mp3' file 'audiofileB.mp3' Then run ffplay:
ffplay -f concat -i list.txt Other useful options:
- Use
-autoexitto make it exit when it's done - Use
-loop 0to loop forever (press q to quit). - Use
-savesafe 0if the file paths are absolute (or contain other special characters).
See the ffmpeg wiki about concat demuxer for more details.