First time I'm posting in here, so bare with me please.
I have set up a "channel" using VLC that streams to multiple computers with videos media. The "channel" is just a playlist on the server side and the client points to it (duh). It works well, but I actually want it to work through a web browser instead.
With the web browser, I was able to get it to work using jwplayer, flowplayer and the VLC Mozilla plugin, but... whenever the playlist changes from one video to anotehr, the video at the client side (flash player, etc) stops and I have to either refresh or hit play again. This only happens using the web browser, not VLC client.
I would like to get it to play without stopping as it is through the regular VLC player and server. Hope that makes sense?
VLC Server Channel 1 - Works with VLC (Server) to VLC (Client):
VLC Server Channel 1 - Works with VLC (Server) to Flash (Client):vlc -I http --http-host localhost:8080 -vvv "J:\VLC Playlists\Media.xspf" --sout="#transcode{scale=1,deinterlace}:http{mux=ts,dst=:8080/} --no-sout-rtp-sap --sout-all --sout-keep"
JWPlayer Code (Flash) - Works but stops after change in media lineup from server:vlc -vvv "J:\VLC Playlists\Media.xspf" --sout="#transcode{vcodec=h264,vb=200,deinterlace,ab=32,fps=25,width=256,height=192,acodec=mp3,samplerate=44100}:duplicate{dst=std{access=http{mime=video/x-flv},mux=ffmpeg{mux=flv},dst=/media.flv},dst=0.0.0.0:8080/}"
VLC Firefox Plugin - Works but stops after change in media lineup from server. The control, such as "Fullscreen" don't work either:<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='640' height='480' id='player1' name='player1'>
<param name='movie' value='player.swf'>
<param name='allowfullscreen' value='true'>
<param name='allowscriptaccess' value='always'>
<param name='flashvars' value='buffertime=3&file=http://10.0.0.4:8080/media.flv&autostart=true'>
<embed id='player1'
name='player1'
src='player.swf'
width='640'
height='480'
allowscriptaccess='always'
allowfullscreen='true'
flashvars="buffertime=3&file=http://10.0.0.4:8080/media.flv&autostart=true"
/>
</object>
Anyway, hope someone can help me with this. Thanks!<embed type="application/x-vlc-plugin"
name="media"
autoplay="yes" width="640" height="480"
target="http://10.0.0.4:8080" />
<br />
<a href="javascript:;" onclick='document.media.play()'>Play</a>
<a href="javascript:;" onclick='document.media.pause()'>Pause</a>
<a href="javascript:;" onclick='document.media.stop()'>Stop</a>
<a href="javascript:;" onclick='document.media.fullscreen()'>Fullscreen</a>