You have a large audio file that has been split into multiple mp3s.
You want to merge these and convert to a m4a (optional) so that you can use it with https://github.com/scottopell/audiobook-podcast
# Combine MP3s
ffmpeg -i "concat:$(ls *.mp3 | tr '\n' '|')" -acodec copy out.mp3