Tagged Questions

The Real-time Transport Protocol (RTP) defines a standardized packet format for delivering audio and video over IP networks.

learn more… | top users | synonyms

18
votes
4answers
46k views

Streaming via RTSP or RTP in HTML5

I'm building a web app that should play back an RTSP/RTP stream from a server (http://lscube.org/projects/feng). Does the HTML5 video/audio tag support the rtsp or rtp? If not, what would the easiest ...
16
votes
1answer
453 views

Saving JPEG file coming from Network Camera RTP Stream

I had a RTP Stream socket, receiving a JPEG Stream, from a samsung network camera. I dont know much about how JPEG format works, but i do know that this incoming JFIF or JPEG stream is giving me the ...
16
votes
1answer
981 views

Camera streaming using RTP from Android to PC

I'd like to write an application for Android for camera streaming to PC (H.263, MPEG_4). I found some libraries: sipandroid, jlibrtp. SIPandroid: RTP packets are streamed (wireshark catches it on PC ...
12
votes
4answers
1k views

Streaming Video From Android

I'm trying to stream video from the Android phone, which should be watched in an mediaplayer. I've been looking at ...
8
votes
11answers
15k views

Why Does RTP use UDP instead of TCP?

I wanted to know why UDP is used in RTP rather than TCP ?. Major VoIP Tools used only UDP as i hacked some of the VoIP OSS.
6
votes
3answers
792 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 ...
5
votes
2answers
536 views

How to process raw UDP packets so that they can be decoded by a decoder filter in a directshow source filter

Long Story: There is an H264/MPEG-4 Source I can able to connect this source with RTSP protocol. I can able to get raw UDP packets with RTP protocol Then send those raw UDP packets to a ...
5
votes
4answers
11k views

Best C++ RTP/RTSP library

I'm looking for a RTP/RTSP library in C++. I found pjsip but it is more C-style. I'm looking for more OO library. Thanks
5
votes
2answers
3k views

How to start RTP stream inside a SIP/SDP call

I've managed to set up a SIP call using the JAIN-SIP API for Java. Now I would like to stream some video once a dialog has been established. I've read that this is possible with SDP and RTP, and I've ...
5
votes
5answers
5k views

Multiple H.264 video streams in one RTP session

I would like to dynamically switch the video source in a streaming video application. However, the different video sources have unique image dimensions. I can generate individual SDP files for each ...
4
votes
1answer
151 views

HTTP tunneling (of RTP) for cameras

My company is developing a system that interfaces with several network cameras. The way we stream video from the cameras is over HTTP (mainly because of camera limitations combined with the fact that ...
4
votes
1answer
2k views

RTP on Android MediaPlayer

I've implemented RTSP on Android MediaPlayer using VLC as rtsp server with this code: # vlc -vvv /home/marco/Videos/pippo.mp4 --sout ...
4
votes
1answer
1k views

Streaming Avi files from C# using RTP

I have a read/seek input stream of a video file (.avi mpeg4\xVid\ect..) in C# and I would like to stream it to a video player with jump to moment X feature enabled. How can I implement this? I heard ...
4
votes
2answers
2k views

RTP Client Application on Android Mobile Device

Hey folks,i am developing a RTP client on an Android device which can play streaming videos from a server. I am confused regarding how should i start about? i am thinking of developing a web app, ...
4
votes
1answer
2k views

Writing custom DirectShow RTSP/RTP Source push filter - timestamping data coming from live sources

I'm writing custom DirectShow source push filter which is supposed to receive RTP data from video server and push them to the renderer. I wrote a CVideoPushPin class which inherits from CSourceStream ...
4
votes
2answers
767 views

Java and RTP - related experiences

I'm trying to collect some experiences about using a Java library to stream RTP. In your experience, which is the most suitable library for this task? I am currently evaluating: JMF, FMJ, jrtp, ...
3
votes
2answers
169 views

J2ME Audio Streaming through SIP Connection

I am creating a J2ME real time streaming audio player with RTP and through SIP connection. Also I am new for these things. I want to take look deeply those things. If any one know a good working ...
3
votes
3answers
487 views

Get Stream and save as jpeg (image) file from IP Camera using ffmpeg

How i can get stream from Ip Camera, Its using RTP, stream is MPEG4, i have multicast address and port,and i have ip camera's IP address and Port Number. And I cant reach via http forexample ...
3
votes
2answers
2k views

Live555 on Android

I'm trying to get the RTSP video stream play in my Android App using the build-in Videoview/MediaPlayer, but there're always various problems on different ROMs or different network status(UDP packets ...
3
votes
4answers
473 views

VOIP C++ Programming

I want to write a program to create VOIP application for my final year project. For this time being, I spend my time to understand how SIP works and later I need to implement it into my project. As ...
3
votes
1answer
491 views

RTP Packets - c# code

How can I convert a .wav file to RTP packet and send it to a sip Client? I would really appreciate some example code. I'm working in C#.
3
votes
2answers
2k views

Does android support APIs for implementing RTP,RTSP for VoIP and PTT Project?

I am going to make a PTT project on Android. Could you tell me how deep Android supports Voice and Multimedia API (such as RTP,RTSP,VoIP) for developers?
3
votes
3answers
776 views

libpcap setfilter() function and packet loss

this is my first question here @stackoverflow. I'm writing a monitoring tool for some VoIP production servers, particularly a sniff tool that allows to capture all traffic (VoIP calls) that match a ...
3
votes
2answers
280 views

RTP RFC (3550) interpretation question

I'm doing a Java implementation of RFC 3550 (RTP) and I've ran into a little problem: In chapter 11, paragraph 2, it states that: (...) A participant MUST NOT assume that the source port of the ...
3
votes
2answers
565 views

Anyone know of an open source RTP Server?

I specifically want to be able to stream Video. With the Server preferably implemented in Java, Python or Erlang?
3
votes
1answer
1k views

Proper Java RTP/RTCP stack

I've been struggling to find a decent RTP stack implementation for Java. JMF or FMJ are not options here as I don't want all the bells and whistles of codecs and audio/video capture; I just need to ...
2
votes
0answers
17 views

Why JMF is not working on Audio streaming with Mjsip?

I am using Mjsip to create a softphone. In the code there is three type option for audio straming. Using JMF (Java Media Framework) Using Java Audio Using RAT (Robust Audio Tool) I am not using ...
2
votes
0answers
21 views

RTP/RTSP start up latency: Would this method help to reduce it, and if yes, why we don't have it

This is probably not the best forum for such a specialized question, but at the moment I don't know of a better one (open to suggestions/recommendations). I work on a video product which for the last ...
2
votes
1answer
59 views

How to change a CMake file to produce a dll instead of static lib?

I am working on a project where I have to use JRTP (Jori Real Time Tranfer Protocol) library. I m using the version 3.9.1 of the library. When I tried to compile that library I used the following ...
2
votes
1answer
47 views

How can I compile jrtp source to a dll file?

How can I compile JRTP (Jori Real Time Transfer protocol) Library?
2
votes
4answers
312 views

sip stack for iphone and android

I am looking for the SIP stacks for Android and iPhone. I found plenty of similar questions, which are sometimes quite old... I do not care too much if the solution is commercial (but this is ...
2
votes
0answers
367 views

How to decode RTP packets and save it has .wav file

I am trying to develop an application in which a sip call is established and then i am capturing rtp audio packets. As they are encoded so i need to decode them and save it has .wav file. Tried using ...
2
votes
3answers
1k views

H.264 over RTP/RTSP (iPhone)

Is it possible to view video stream (H.264 live feed) over RTP/RTSP in iPhone natively? If not, is it possible to write an application for this purpose?
2
votes
2answers
478 views

H.264 RTSP Absolute TIMESTAMP

Is it possible to read an absolute timestamp from an H.264 stream sent trough RTSP from an Axis camera? It will be necessary to know when the frame has been taken by the camera. Thanks Andrea
2
votes
1answer
1k views

Android: mpeg4/H.264 packetization example

I need to split mpeg4 video stream (actually from android video camera) to send it through RTP. The specification is little large for quick reference. I wonder if there any example/open source code ...
2
votes
2answers
505 views

CPU usage and memory of Gstreamer pipleline

I'm using gstreamer to capture video from a webcam, encode it with x264 and stream it using a gstrtpbin. It works great. However, it uses about 50% of all four of my cores and a lot of memory. Is ...
2
votes
2answers
1k views

How to fragment H264 Packets in RTP compliant with RFC3984

I have the FFMPEG streaming baseline h264 video, which I have to encapsulate in RTP and send to SIP phones for their decoding. I am using Linphone with the h264 plugin for Windows and Mirial for the ...
2
votes
1answer
569 views

Streaming synchronized media to multiple devices over WiFi

I want to stream synchronized media to multiple devices (also called multi-room audio), similar to what is done with Sonos or AirPlay. I figured this would be easy to do using RTP multicast, as you ...
2
votes
1answer
748 views

How to send RTP on Android? [closed]

Possible Duplicate: RTP Client Application on Android Mobile Device Are there any robust codes available?
2
votes
1answer
355 views

GStreamer transrating / transcoding to multiple Outputs

is it possible to transrate / transcode a RTMP or RTP Stream with GStreamer to multiple output streams? For example: Input: RTP h264 Stream with 1500 kbits Outputs: - RTP h.264 Stream with 1500 ...
2
votes
0answers
383 views

WPF RTP Streaming

I am currently in the process of writing an application that will receive an RTP Video Stream from a VLC Client. I am hoping to implement this in WPF and so have been looking for any solutions online ...
2
votes
1answer
358 views

record encode play and save a wav file

Can someone give an example of how to record, play, save and also encode a .wav file in a pcm file (u-law encode for ex). I would like to create a rtp stream. THX
2
votes
1answer
528 views

rtp and rtsp player integration to browser

I am trying to build a web service that will stream music over a web browser. I got a server running to open up a web page that says "hello world". The problem is that I do not understand what I need ...
2
votes
4answers
2k views

Streaming server by RTP or RTSP

I'm thinking about developing a streaming server and I have the following question, do over RTSP (example url: rtsp://192.168.0.184/myvideo.mpg) or RTP (example url: rtp://192.168.0.184). As I have ...
2
votes
1answer
140 views

Ruby RTP management

is there any gem that makes RTP(audio stream) management possible with Ruby? Thanks
2
votes
0answers
653 views

QuckTime RTSP/RTP over HTTP and Java

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 ...
2
votes
4answers
7k views

Problem to Decode H264 video over RTP with ffmpeg (libavcodec)

I set profile_idc, level_idc, extradata et extradata_size of AvCodecContext with the profile-level-id et sprop-parameter-set of the SDP. I separate the decoding of Coded Slice, SPS, PPS and ...
2
votes
1answer
711 views

Using flash api to access WebCam in an ASP.NET application

Greetings, I'm trying to play with live web cam using asp.net with C#. I want to access/stream web cam content using flash then send the captured streams using Real-time Transport Protocol. How is ...
2
votes
2answers
436 views

Is there simple way to play an rtp video/audio stream in WPF?

I need to create a WPF control that will play an rtp stream with the requirement that the latency needs to be as low as possible. I've looked at the following two projects: ...
2
votes
1answer
1k views

FFMpeg encoding RGB images to H264

Hello I'm developing a DirectShow filter which has 2 input pins (1 for audio, 1 for video). I'm using libavcodec/libavformat/libavutil of FFMpeg for encoding the video to H264, audio to AAC and mux ...

1 2 3 4 5 6