Hello
I am using a vlc 1.0.4 for streaming. Works fine, but recently I wanted to add support for free.fr RTSP IPTV
Following the documentation I've read, I downloaded the m3u and tried to open some URL. I had the following error :
[0x1df69a8] live555 demux error: Failed to connect with rtsp://mafreebox.freebox.fr/freeboxtv/203
[0x1df69a8] main demux warning: no access_demux module matching "rtsp" could be loaded
[0x1df06a8] main access error: no access module matched "rtsp"
[0x1ddf4f8] main input error: open of `rtsp://mafreebox.freebox.fr/freeboxtv/203' failed: no access module matched "rtsp"
[0x1ddf4f8] main input error: Your input can't be opened
[0x1ddf4f8] main input error: VLC is unable to open the MRL 'rtsp://mafreebox.freebox.fr/freeboxtv/203'. Check the log for details.
So I recompiled my vlc with --enable-rtsp. In my config.log :
$ ./configure --enable-realrtsp --enable-ogg --enable-avcodec --enable-avforma
t --enable-swscale --enable-theora --enable-faad --enable-postproc --enable-x264
--disable-nls --disable-mozilla --disable-hal --disable-dbus --disable-gme --en
able-run-as-root --with-live555-tree=/usr/src/live/ --disable-x11 --disable-skin
s2 --disable-qt4
## --------- ##
## Platform. ##
## --------- ##
hostname = dom0
uname -m = x86_64
uname -r = 2.6.26-2-xen-amd64
uname -s = Linux
uname -v = #1 SMP Thu Nov 5 04:27:12 UTC 2009
I now see the same modules twice (?)
Before:
dom0:/usr/src/vlc-1.0.4# vlc --list |grep rtsp
VLC media player 1.0.4 Goldeneye
LibVLC has detected an unusable buggy GNU/libc version.
Please update to version 2.8 or newer.
vod_rtsp RTSP VoD server
access_realrtsp Real RTSP
After:
dom0:/usr/src/vlc-1.0.4# ./vlc --list |grep rtsp
VLC media player 1.0.4 Goldeneye
LibVLC has detected an unusable buggy GNU/libc version.
Please update to version 2.8 or newer.
access_realrtsp Real RTSP
vod_rtsp RTSP VoD server
vod_rtsp RTSP VoD server
access_realrtsp Real RTSP
Yet I still have the same error. I tried to change the URL, put the IP, etc. Nothing works. Yet I can perfectly ping the IP (!)
[0x1cd8038] live555 demux error: Failed to connect with rtsp://212.27.38.253:31336/fbxtv_pub/stream?namespace=1&service=203&flavour=l
[0x1cd8038] live555 demux error: Failed to connect with rtsp://212.27.38.253:31336/fbxtv_pub/stream?namespace=1&service=203&flavour=l
[0x1cd8038] main demux warning: no access_demux module matching "rtsp" could be loaded
[0x1cb5d48] signals interface error: Caught Interrupt signal, exiting...
[0x1cd4f48] access_realrtsp access error: cannot connect to 212.27.38.253:31336
[0x1cd4f48] main access error: Connection failed
[0x1cd4f48] main access error: VLC could not connect to "212.27.38.253:31336".
[0x1cd4f48] access_realrtsp access error: cannot connect to 212.27.38.253:31336
[0x1cd4f48] main access error: Connection failed
[0x1cd4f48] main access error: VLC could not connect to "212.27.38.253:31336".
[0x1cd4f48] main access warning: no access module matching "rtsp" could be loaded
Any idea about whtat I did wrong and what I should do to enable proper RTSP/IPTV ?