Hide buffer display icon
Hi all!
I',m using the latest version of JW Player. I'm using it for display my network camera stream. Everything is perfect except 1 thing. During the stream a buffer icon is always displayed and i can't hide it. I already tried many variations like: icons: false icons: "false" icons=false icons="false" non if them worked for me. here is my html source:
<script type="text/javascript">
jwplayer('video-jwplayer').setup({
flashplayer:"/jwplayer/jwplayer.flash.swf"
, file:"http://192.168.1.103:8090/webcam.flv"
, autoStart: false
, mute: true
, rtmp:{
bufferlength:0.1
}
, deliveryType: "streaming"
, width: 640
, height: 480
, player: {
modes: {
linear: {
controls: {
stream: {
manage:false
, enabled: false
}
}
}
}
}
, shows: {
streamTimer: {
enabled: true
, tickRate: 100
}
}
});
</script>