multiplexing

screen broadcasting with multiplexation?

Hi. I want to broacast my screen, the problem is i've got very limited upload speed, if there are more than 2 clients screencast becomes absolutely awful. But i've got a server with a broadband channel (100MB). The question is: is there some screencast broadcasting software that runs on both win and linux and has multiplexer? I thoug...

What does the term multiplexing mean in computer science?

What does multiplexing mean (in it's abstract form)? I understand you have 'multiplexers' in hardware and 'muxing' in networks. What would a good high-level definition be? ...

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...

Connection Multiplexing

Hi; Supposing we have opened a connection of type either TCP or UDP to another remote machine. Having this connection, can we allow multiple connections virtually over this connection like VPN(but not VPN)? I mean multiple applications run on remote machine and you try to access to these applications, is there any multiplexing mechanism ...

Problem with MPEG2/MP4 video Demux

I've been working with Directshow for some time now. I've been working with codes (GMFBridge), and I recently started working with mp4demux. I saw it does a good work demuxing many compressed types, but there are a few types I work with that it still can't demux. I'm writing to ask about these ones. I have here a sample of a XDCAM-EX fi...

Use of tristates vs multiplexers in a RAM

Why are tristates favored over multiplexers to select the output from RAM? The explanation that I've heard of is that the RAM is too large for using a multiplexer but I need more details. A theory we've come up with is that using a multiplexer would necessitate a tree of OR-gates to select the output which would dramatically increase th...

multiplexer code

hi i have a Java library for working with multiplexer but i don't know how to take output from it ? any body can help ? this is the library link to download http://www.bozorgvar.com/multiplexer.rar ...

How to multiplex Vorbis and Theora streams using libogg

Hello, I am currently writing a simple Theora video encoder, which uses libogg, libvorbis and libtheora. Currently, I can submit frames to the Theora encoder, and PCM samples to the Vorbis encoder, pass the resulting packets to Ogg streams (one for Theora and one for Vorbis) and get pages out. When the program starts, it flushes the he...

C++ UDP Socket port multiplexing

How can I create a client UDP socket in C++ so that it can listen on a port which is being listened to by another application? In other words, how can I apply port multiplexing in C++? ...