**RTP Control Protocol** (RTCP) is a helper protocol for *Real-time Transport Protocol* (RTP).

learn more… | top users | synonyms

0
votes
0answers
27 views

RTSP Proxy implementation and testing

I'm trying to implement an RTSP proxy server in order to analyse RTCP packets and dynamically switch to higher or lower bitrate streams (served by Wowza). Can someone recommend an existing opensource ...
0
votes
0answers
113 views

RTSP, RTCP and RTP port numbers

I'm trying to understand how spydroid (https://code.google.com/p/spydroid-ipcamera/) works so I can write a similar app for my phone. Based off of spydroid here is what I understand about RTSP, RTCP ...
0
votes
1answer
253 views

How to send rtcp bye message using Java Media Framework (JMF)?

I am using a java application to set up a SIP session with nuance speech server using JAIN SIP java API. Then I prepared the system for recognition by setting it up by sending some MRCP commands like ...
0
votes
0answers
52 views

Packet Capture jnetpcap detect end of session

Implemenating packet capture using jnetpcap.I want to run an infinite loop until either the src/dest denies connection. pcap.loop runs infinitely but how to terminate the loop on detected a RTCP Bye ...
0
votes
0answers
150 views

RTP synchronizing audio and video at the receiver

I am trying to build an application with Java Media Framework. I am going to send audio and video data in separate RTP sessions. I am not sure how I should synchronize the audio and video at the ...
1
vote
0answers
280 views

How to receive a rtp, rtcp or udp, from a stream of gstreamer, on video HTML5?

I'm trying to get a video stream RTP/RTCP using HTML5, the stream was generated by gstreamer. I used examples of gstreamer, so I can pass through RTP ports:5000, and RTCP:5001, and can receive streams ...
0
votes
0answers
334 views

xuggler rtcp streaming

can anyone tell me how can I create an rtcp stream with use of xuggler(without use RED5) . I use the MEDIATOOL api ant IMEdiaReader to decode the saved video container, but how can I stream in the ...
0
votes
1answer
261 views

How to intercept packets from RTP-stream on loopback and access the data through C++-code?

I want to be able to intercept the packets of this stream and access the data from C++-code. How do I do this in C++-code? The RTP- media stream are streamed using this server: link I will then ...
1
vote
0answers
80 views

AVPF scheduling algorithm

According to RFC4585: If R's FB message(s) was not suppressed by other receiver FB messages as per 5, when te is reached, R MUST transmit the (minimal) compound RTCP packet ...
1
vote
1answer
109 views

Early media settings in AVPF

According to RFC4585, AVPF profile allows a device to send feedback earlier than the usual transmission of a regular RTCP packet. But, depending on the bandwidth, number of users and periodicity of ...
1
vote
2answers
588 views

How to keep RTSP session alive?

I tried streaming on Google nexus S (2.3.7), HTC Desire (2.3.3), and Samsung Galaxy (3.2). And only Google Nexus has RTSP session timeout issue. I read up on some threads about this problem. It ...
5
votes
2answers
743 views

RTCP / RTP communication issue

Unfortunately I'm still stuck with a little implementation of a RTP / RTCP communication to access my IP camera properly. What do I want to do The camera has an internal buffer which I want to read. ...
3
votes
2answers
980 views

How to fix incorrect timestamp calculations? [OpenRtspClient]

My RTSP Source's RTCP SR are not reliable for some of the calculated timestamps of H.264 streams frequently resulting in large negative jumps. Here is an example from the debug log. See how it jumps ...
2
votes
6answers
3k views

how to stream pcap file to RTP/RTCP stream?

Folks, I have captured three different stream as pcap file with meta datas. How can i stream back to RTP/RTCP stream. Please help me out with the command or procedure. Thanks
0
votes
3answers
2k views

Java RTP/RTCP library using NIO

Is there a Java RTP/RTCP library based on Java NIO or some Java NIO framework (Netty, MINA, ...)?
6
votes
3answers
2k views

How do I determine if a packet is RTP/RTCP?

I am using SharpPCap which is built on WinPCap to capture UDP traffic. My end goal is to capture the audio data from H.323 and save those phone conversations as WAV files. But first thing is first - I ...
0
votes
1answer
327 views

Is RTP suitable for delivery of data files to multiple recipients?

I have a need to transfer files from a single, centralized source to a several hundred client machines. We currently use UDPCast to do this sort of thing, but are looking for more of a standards ...