I'm trying to add a remote device , the device is a rtsp-server.
I want the zonmidner will be a client of it
I don't know how to connect the zonminder to the server
I only mange to open the video using a browser
the server is a simple nodejs rtsp stream
Code: Select all
Stream = require('node-rtsp-stream')
stream = new Stream({
name: 'name',
streamUrl: 'rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov',
wsPort: 9999,
ffmpegOptions: { // options ffmpeg flags
'-stats': '', // an option with no neccessary value uses a blank string
'-r': 30 // options with required values specify the value after the key
}
})
and the server run on the same computer the zonminder run
so the WebSocket to connect should be :
Code: Select all
ws://localhost:9999/;
Code: Select all
remote
source
protocol rtsp
method rsp/rtsp/http
host name: ws://lcoalhost(try also the computer ip - 10.0.0.105)
pos 9999
when I connect from another computer to the server using html page
I can see the video playing (so eveything is working )
how to add it?
is it even possiable ?
Thanks,