Hi all,
I would like to stream a video playlist with VLC, to be played with a flash player on a web page.
VLC is started on the server with this command line:
:sout=#transcode{sfilter=logo,soverlay=logo,vcodec=FLV1,vb=1200,scale=1,acodec=mp3,ab=96,channels=1,samplerate=44100}:duplicate{dst=std{access=http,url=127.0.0.1:8080/stream.flv},dst=display}
Well.... I can't get anything on my local VLC (I try to read http://server's.ip:8080/stream.flv )
If I try this:
:sout=#transcode{sfilter=logo,soverlay=logo,vcodec=FLV1,vb=1200,scale=1,acodec=mp3,ab=96,channels=1,samplerate=44100}:duplicate{dst=std{access=mmsh,mux=asfh,dst=0.0.0.0:1234},dst=display}
it works.
It seems to be a problem with http protocol, but I don't know where.
I would like to use http because I think flash player is unable to read mms streams.
Thank you for your help.