mux

Mux & Demux w/ LINQ

I'm playing around with using LINQ to Objects for multiplexing and demultiplexing but it seems to me that this is a pretty tricky problem. See this demuxer signature: public static IEnumerable<IEnumerable<TSource>> Demux<TSource>(this IEnumerable<TSource> source, int multiplexity) On an abstract level this is easy but ideally one wou...

Mixing multiple audio channels in Flex. Using Ogg with Alchemy.

I'm using Alchemy in Flex to play some ogg vorbis. Works great, but I can only get one stream to play at a time. When I start a second stream it just sounds all glitched and you can only hear the second stream. Anyway to mix (mux) more than one stream together, and then possibly have separate volume controls for each, so the user can m...