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

link|improve this question

I think binary concatenation only works if the stream IDs differ(which is usually the case). But not sure how good the player support is for this kind of file. – CodeInChaos Nov 30 '11 at 17:18
feedback

1 Answer

up vote 2 down vote accepted

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

link|improve this answer
this worked well. I will leave this question open another day or 2 to see if anyone can present a .NET code solution. BTW, here is the link to the tool, took me a little bit to find it. dev.streamnik.de/files.html – bulltorious Nov 30 '11 at 17:21
@bulltorious: You should then upvote this answer. OK, I do it for you – Serge - appTranslator Nov 30 '11 at 17:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.