I want to listen to an audio stream:
$ vlc http://www.tv-radio.com/station/france_ ... p3-32k.m3u
VLC media player 1.0.6 Goldeneye
[0x20ee9b8] main interface error: no interface module matched "screensaver,none"
[0x20ee9b8] main interface error: no suitable interface module
[0x1fec888] main libvlc error: interface "screensaver,none" initialization failed
[0x1fec888] main libvlc error: option drawable-xid does not exist
[0x20d6fa8] main interface error: no interface module matched "globalhotkeys,none"
[0x20d6fa8] main interface error: no suitable interface module
[0x1fec888] main libvlc error: interface "globalhotkeys,none" initialization failed
[0x1fec888] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
Remote control interface initialized. Type `help' for help.
[0x20fc838] access_http access error: error: HTTP/1.1 404 Not Found
[0x20fc838] access_http access error: error: HTTP/1.1 404 Not Found
[0x20fc838] access_mms access error: error: HTTP/1.1 404 Not Found
[0x7f7388000f78] main input error: open of `http://www.tv-radio.com/station/france_ ... p3-32k.m3u' failed: (null)
[0x7f7388000f78] main input error: Your input can't be opened
[0x7f7388000f78] main input error: VLC is unable to open the MRL 'http://www.tv-radio.com/station/france_ ... p3-32k.m3u'. Check the log for details.
That's all fine, because here I am behind a proxy:
$ vlc --http-proxy http://127.0.0.1:3128 http://www.tv-radio.com/station/france_ ... p3-32k.m3u
VLC media player 1.0.6 Goldeneye
[0x8d5e58] main interface error: no interface module matched "screensaver,none"
[0x8d5e58] main interface error: no suitable interface module
[0x7d0888] main libvlc error: interface "screensaver,none" initialization failed
[0x7d0888] main libvlc error: option drawable-xid does not exist
[0x8d2058] main interface error: no interface module matched "globalhotkeys,none"
[0x8d2058] main interface error: no suitable interface module
[0x7d0888] main libvlc error: interface "globalhotkeys,none" initialization failed
[0x7d0888] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
Remote control interface initialized. Type `help' for help.
[0x8e12e8] access_http access error: error: HTTP/1.1 404 Not Found
[0x8e12e8] access_http access error: error: HTTP/1.1 404 Not Found
[0x8e12e8] access_mms access error: error: HTTP/1.1 404 Not Found
[0x8d9038] main input error: open of `http://www.tv-radio.com/station/france_ ... p3-32k.m3u' failed: (null)
[0x8d9038] main input error: Your input can't be opened
[0x8d9038] main input error: VLC is unable to open the MRL 'http://www.tv-radio.com/station/france_ ... p3-32k.m3u'. Check the log for details.
However, still, no success. The proxy works (see below).
The last thing I could do, was
$ wget http://www.tv-radio.com/station/france_ ... p3-32k.m3u
$ cat france_musique_mp3-32k.m3u
#EXTM3U
#EXTINF:france_musique_mp3
http://mp3.live.tv-radio.com/francemusi ... ue-32k.mp3
$
So I am lucky here; there is just one file in the stream:
$vlc --http-proxy http://127.0.0.1:3128 http://mp3.live.tv-radio.com/francecult ... re-32k.mp3
VLC media player 1.0.6 Goldeneye
[0x1e9a098] main interface error: no interface module matched "screensaver,none"
[0x1e9a098] main interface error: no suitable interface module
[0x1d94888] main libvlc error: interface "screensaver,none" initialization failed
[0x1d94888] main libvlc error: option drawable-xid does not exist
[0x7f09a8000e58] main interface error: no interface module matched "globalhotkeys,none"
[0x7f09a8000e58] main interface error: no suitable interface module
[0x1d94888] main libvlc error: interface "globalhotkeys,none" initialization failed
[0x1d94888] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
Remote control interface initialized. Type `help' for help.
[0x1ea08f8] access_http access: Raw-audio server found, mp3 demuxer selected
TagLib: Could not open file mp3.live.tv-radio.com/franceculture/all/franceculture-32k.mp3
... and there we go. Including the proxy.
My question: Why can't vlc disassemble the m3u (extract the file) and play it?
If I didn't make any mistake, this would be my wish-list for today ...
Uwe