3

I have a bunch of MP3 files and I have their paths grouped in a text file. Is it possible to join the relevant MP3 files based on the paths in the text file?

hhlp
  • 42,872
oshirowanen
  • 4,047

3 Answers3

5

One possible approach would be to use cat:

$ cat example1 example 2 > output

or

$ cat example* > output

This will join any two files together - not sure what it will do to the ID3 metadata though.

Jonathon
  • 2,491
1

I personally liked mp3wrap because it is more powerful and the size of the final file is three times less then the file merged with cat command.

Bakhtiyor
  • 12,804
1

There are at least a couple of tool: mpgtx and quelcom.

You can see their descriptions through any package manager, for example:

apt-cache show mpgtx quelcom
enzotib
  • 96,093