On Thu, Mar 25, 2021 at 06:29:43PM +0000, Long Wind wrote: > i ask other question: which command can merge two mp3 file?this command is > mp3 file version of DOS command "copy file1+file2 file3"
The Unix version of that is: cat file1 file2 > file3 However, this is NOT something you can do with MP3 files. They are not designed to be concatenated. (Ogg Vorbis files *are*. MP3 files aren't.) I tried this: unicorn:~$ apt-cache search concatenate mp3 poc-streamer - MP3/Ogg multicast/HTTP streamer and MP3 cutting tool You can check that out, or try your own searches. Or wait for other people to respond with suggestions.