On 10/14/06, Steven P. Ulrick <lists-fedora@xxxxxxxxxxxx> wrote:
> I would like to glue two mp3 files into a single one. Is that > possible? If so, how can one do that? Hello, Paul I just tried something that I thought might work, and I was rather amused that it actually worked perfectly: cat filename1.mp3 filename2.mp3 > filename3.mp3 You could also do something like this: cat *.mp3 > filename.mp3
Nice solution, Steven! Thanks. Paul