Questions tagged [multiplexing]

In telecommunications and computer networks, multiplexing (also known as muxing) is a method by which multiple analogue message signals or digital data streams are combined into one signal over a shared medium.

In telecommunications and computer networks, multiplexing (also known as muxing) is a method by which multiple analogue message signals or digital data streams are combined into one signal over a shared medium.

The aim is to share an expensive resource. For example, in telecommunications, several telephone calls may be carried using one wire. Multiplexing originated in telegraphy in the 1870s, and is now widely applied in communications.

In telephony, George Owen Squier is credited with the development of telephone carrier multiplexing in 1910.

243 questions
7
votes
1 answer

Android Extract Decode Encode Mux Audio

I am trying to adapt the code found in ExtractDecodeEditEncodeMuxTest.java in order to extract audio and video from a mp4 recorded via Cordova's device.capture.captureVideo, decode the audio, edit the decoded audio samples, encode the audio, and mux…
6
votes
3 answers

fastcgi multiplexing?

I'm in process of implementation of a fastcgi application, after reading fastCGI spec I've found a feature called "request multiplexing". It reminded me Adobe RTMP multiplexing back in the days that protocol was proprietary and closed. As far as I…
Igore Vitaller
  • 163
  • 2
  • 8
6
votes
4 answers

Elegant way of implementing call multiplexing in a C++ aggregate class?

When multiplexing calls to many sub-objects, what is an elegant way of preventing looping-boilerplate code? Problem description by example: struct Foo { void Boo(); void Hoo(); bool IsActivated(); }; struct FooAggregator { ... void…
Martin Ba
  • 37,187
  • 33
  • 183
  • 337
6
votes
1 answer

Recording multiplexed Audio/Video to a file using JMF

I have a project that uses JMF, and records for a short time (a few seconds to a couple of minutes) both the web camera, and audio inputs, and then writes the results to a file. The problem with my project is that this file is never produced…
SplinterReality
  • 3,400
  • 1
  • 23
  • 45
6
votes
2 answers

why http/2 stream id must be ascending?

in RFC 7540 section 5.1.1. (https://www.rfc-editor.org/rfc/rfc7540#section-5.1.1), it specifies as following: The identifier of a newly established stream MUST be numerically greater than all streams that the initiating endpoint has opened or…
Paul Yang
  • 63
  • 4
6
votes
0 answers

Multiplexing online audio and video streams in android

There are two media files hosted on external servers - audio and video. I need to mux them and play as online stream through Android MediaPlayer class. The main problem, is that I don't know, if there is any possible solution for continuous…
6
votes
2 answers

Netty nested pipelines / multiplexing

I'm pretty new to Netty, but how would one implement a case in Netty 4.x when several protocols (e.g. P1 and P2) are encapsulated inside another protocol? +-------------+ | decoder | +-------------+ …
avtolstoy
  • 63
  • 4
6
votes
2 answers

FFMPEG how to mux MJPEG encoded data into mp4 or avi container c++

I'm looking for a way to mux mjpeg (compressed) video data into a video container like mp4 or avi. (I'll also need to add audio in the future). Since i use FFMPEG in other parts of my project as well i'd like to do it using those libraries if…
p.streef
  • 3,652
  • 3
  • 26
  • 50
5
votes
1 answer

Do jpos QMUX supports limiting number of concurrent ISO request?

I updated my old spring/java application which pushes the transaction to the remote ISO server (a Bank).With classical approach (channel.seng(isoMsg)) by a synchronized method, because sending multiple ISO request through same channel makes…
Sanjok
  • 341
  • 1
  • 9
5
votes
5 answers

Can socket connections be multiplexed?

Is it possible to multiplex sa ocket connection? I need to establish multiple connections to yahoo messenger and i am looking for a way to do this efficiently without having to hold a socket open for each client connection. so far i have to use one…
Charles Okwuagwu
  • 10,538
  • 16
  • 87
  • 157
5
votes
1 answer

PERF_TYPE_HARDWARE and PERF_TYPE_HW_CACHE concurrent monitoring

I'm working on a custom implementation on top of perf_event_open syscall. The implementation aims to support various of PERF_TYPE_HARDWARE, PERF_TYPE_SOFTWARE and PERF_TYPE_HW_CACHE events for specific threads on any core. In Intel® 64 and IA-32…
Orion Papadakis
  • 398
  • 1
  • 14
5
votes
2 answers

Is there still a practical 6 connection limit when using Server Sent Events with HTTP2?

I've been googling around and I cannot seem to find a straight answer to this question, and some people offer contradictory answers. Most browsers have a 6 connection limit for each domain. So for example, if your website is example.com and it…
Ryan Peschel
  • 11,087
  • 19
  • 74
  • 136
5
votes
3 answers

Why HTTP/2 does multiplexing altough tcp does same thing?

As far as i know, TCP break down a message into segments. So, Why is multiplexing again on HTTP2? What are the benefits of multiplexing twice?
devhak
  • 155
  • 1
  • 6
5
votes
3 answers

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++?
SkypeMeSM
  • 3,197
  • 8
  • 43
  • 61
5
votes
1 answer

Service Multiplexing using Apache Thrift

Server code: TMultiplexedProcessor processor = new TMultiplexedProcessor(); processor.registerProcessor( "AddService", new AddService.Processor(new AddHandler())); …
1
2
3
16 17