Looks like the curl library is not properly linked.
Below are the instructions from the CloudSuite web page that are related to your problem. Make sure the paths are correct when you run the configure and gcc commands.


Prepare the RTSP client
The code is provided in the same streaming directory, faban-streaming/streaming/rtspclientfinal.c, you need to download the cURL version that works on your platform.
unpack the downloaded cURL distribution.
To install cURL, in the curl directory:
mkdir curlinst
./configure --prefix=/path/to/curldirectory/curlinst/ --enable-rtsp
make
make install
Now, compile the RTSP client code (from the /path/to/faban-streaming/streaming) gcc -I /path/to/curl/curlinst/include -L /path/to/curl/curlinst/lib/ -lcurl rtspclientfinal.c -o rtspclient.o

Make a preliminary test:
./rtspclient.o
If the installation was done correctly, you should receive the following message: "ERROR: enter a valid URL" simply because it expects a parameter indicating where to find the video.

Cansu

On 06/10/2014 03:49 PM, Alexandre Ternis Ferreira wrote:
Protocol rtsp not supported or disabled in libcurl

Reply via email to