Hi,
I deal with rtp packets of gtalk video. I want to make video using gtalk rtp payload data. According to my search gtalk use h264 codec for video.
I combined all of rtp payload which is send with gtalk video and wanted to play ffplay using this comment "ffplay -f h264 "filename" but I can't see
anything and I take this error "Co...
Hello.
I have webcam. I can work with it using RTSP/RTP over HTTP tunneling (because only 80 port is opened for me).
QuickTime player plays video.
I want to catch this video and save it to disc in AVI container using java.
Can I use JMF? Does it support "RTSP/RTP over HTTP tunneling" ?
I heared about QTJ, but it is windows and mac os ...
Hi all, I have to implement a little software that sends an audio stream between two pc in the same WiFi network..
In little words, I get audio from device like a mic and then I have to transmit this audio in real time..
maybe I'll use Java..
To transmit data trough UDP something like this:
//create UDP socket
DatagramSocket socket = ...
Trying to form RTP packets using CCRTP library. I use Wireshark to look at the packets, and see that the packets appear as MALFORMED RTP packet, and fragmented IP packets. Please help.
I am not sure how to attach the error pcap file here. So I am specifying the error packets as .csv format right here.
---------------------------- ERR...
Hello All,
I am working with gstreamer, mainly playing around with music playback features.
I am currently trying to use RTP to send mp3 streams over our LAN, but unsuccessfully until now.
On sender side I use the following pipeline:
gst-launch -v filesrc location=./my_music_file.mp3 ! ffdemux_mp3 ! rtpmpapay ! udpsink port=6969 host...
Hi, I captured a tcpdump of a SIP call to debug DTMF problem (repeated digits), but I have some problem interpreting it.
From what I understand, when I parse the captured traffic through wireshark's "VOIP CALL", I should see something like this (for digits 123) :
CAPTURE 1
RTP telephone event DTMF One 1
(end of event)
RTP telephone eve...
Hi,
I am developing a live video streaming application on Nokia N97. I have video and audio buffer in H.263 and AMR format respectively (from live camera source) and want to stream these to some sever that can broadcast it with RTSP. That RTSP broadcast server will be on internet. I need to know which RTSP servers can do this job that c...
I have the following code to send as audio RTP packet some DTMF digits:
int count=0
for(int j = 0; j < samples; j++)
{
waves = 0;
// dtmf tone 1
waves += sin( ((PI * 2.0f / 8000) * 697.0f) * count );
waves += sin( ((PI * 2.0f / 8000) * 1209.0f) * count);
waves *= 8191.0f; //amplitude
++coun...
My C++ application receives a H.264 RTP video stream.
Right now it decodes the stream, saves it into a YUV file and later I use ffmpeg to re-ecode the file into something suitable to watch on a Windows PC (eg. Mpeg4 AVI).
Shouldn't it be possible to save the H.264 stream into a AVI (or similar) container without having to decode and re...
I am looking for an RTP lirbary for Android. So far I could not find any. Is there any such library?
Alternatively, I think I can use any RTP library for JSE for which I can get the source code. I can compile the code in Android. I will be writing a proprietary application so the license has to permit that. Can anyone suggest a library ...
Is there any public RTP repo where can I download a lot of RTP traces (in addition to the ones in example wireshark traces)? Any suggestions are welcome.
...
Hi,
I'm using some code related to RTSP, RTP to listen to various RTSP Streams Using FFMPEG, it works!
BUT
The noise is being decoded in such a way that every 10 seconds a glitch in the ASF decoding of the stream occurs, where the Volume Peaks and makes a loud Popping sound.
Generally the sound you hear when a packet is corrupted...
...