Hi Brendan,
The streaming plugin requires libcurl >7.45.0 for RTSP connections. I see the following error.
Getting [WARN] RTSP digest authentication unsupported (needs libcurl >= 7.45.0)
I can pipe the rtsp to ffmpeg and use RTP.. but would like to use rtsp direct.
EDIT 2: This will build, but it didn't update curl like I wanted..
&& printf "\ndeb-src http://deb.debian.org/debian jessie main\ndeb-src http://deb.debian.org/debian jessie-updates main\n" >> /etc/apt/sources.list \
&& cat /etc/apt/sources.list && echo "starting update..." \
&& DEBIAN_FRONTEND=noninteractive apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get -y build-dep curl \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends wget \
&& mkdir ~/curl \
&& cd ~/curl \
&& wget http://curl.haxx.se/download/curl-7.50.2.tar.bz2 \
&& tar -xvjf curl-7.50.2.tar.bz2 \
&& cd curl-7.50.2 \
&& ./configure \
&& make \
&& make install \
&& ldconfig \
&& cd .. \
Hi Brendan,
The streaming plugin requires libcurl >7.45.0 for RTSP connections. I see the following error.
Getting [WARN] RTSP digest authentication unsupported (needs libcurl >= 7.45.0)
I can pipe the rtsp to ffmpeg and use RTP.. but would like to use rtsp direct.
EDIT 2: This will build, but it didn't update curl like I wanted..