Sequentially concatenate multiple ogg vorbis files into a single file with .NET?

716 Views Asked by At

Assuming I have multiple .ogg files which I need to combine sequentially into a single file, can anyone recommend a library or some code for doing so using .NET? Also assume they all have the same number of channels.

I found some reference to using the "copy /b" command from the command line, but this seams to combine them "vertically", the duration of the new file does not equal the sum of the combined files.

Thanks

1

There are 1 best solutions below

2
On BEST ANSWER

Google "oggcat windows" for a command line tool which you should be able to call from your app.