tags:

views:

253

answers:

2

I am implementing a client/server application where video streaming occurs between two computers (in one direction). I would like to have the server publish an SDP file when it starts streaming. The client would then be able to download this SDP file and use it to get the stream. In order to implement this it seems I need to include a RTSP server in my server application.

I am planning to use either libVLC or GStreamer for the client. Both are able to get incoming video streams using the info from an SDP file.

Server-side I don't really know where to start. Can anyone recommend a good C++ library that would allow me to create a small RTSP server?

+1  A: 

Use this LGPL library or for fun, read the RFC and implement :-)

Vijay Mathew
Thanks, I just found live555 myself.
StackedCrooked
+1  A: 

ffmpeg, ffserver

Vinay