As the subject suggests, I have a local PTZ camera (it’s a sourced Tandberg PrecisionHD) I can capture and stream video fine via HDMI capture card. but control is seperate, I have it connected on My local COM port an via a software called camerapad but in NCS, I find no way How I can either control directly COM port or via camerapads’ webif (http://localhost:800).
Is there any way how to get control over this “virtual” device?
Ok, thanks for your quick response, good thing that this software has a webserver and therefore, can be addressed over IP as you suggest.
So how can one make a plugin or preset,for this camera, like the preconfigured ones already in the application? It should be simple, the video images come from a local source and the ptz control can be called via a Webserver. Jus like the existing profiles but two merged together.
Sorry, but that’s nothing we will look into.
Cameras of today handle all this using the ONVIF standard.
Maybe there are other softwares that can handle this.
good to know that you won’t, I won’t be asking you to do so anymore.
That doesn’t necessary mean that I can’t look into it. Just one more request. does a plugin Exist for VISCA control?
great idea, thanks for thinking outside the box
would it be possible to embed an external html control on the NCS webserver? Sure I can, I should look into the Webinterface’s source code, Right?
The root directory for the NCS web server is here C:\Program Files\Netcam Studio - 64-bit\WebServer
There are no limitations what I know. When call a webpage just use http://NCS_IP:8100/xx.htm (or xx.html)
Have fun
I decided not to take that route just yet, as it is not native and would not work from any other client application. Back to the drawing board. My challenge is: combining HDMI video from a usb capture device with PTZ control through Serial Port. and get combined control through preferred NCS. With the help from Duckduckgo, I came up with a few DIY ONVIF Camera solutions, unfortunately none offer PTZ control. There’s a cool Win application worth mentioning that does ONVIF desktop streaming…(DeskCamera) but still no PTZ
But then I came across RPOS (short for Raspberry Pi Onvif Server) baking off one of my pi’s was a BreeeZe. With my PTZ cam connected to the usb Videograbber and serial port of the Pi I have successfully built an ONVIF PTZ-camera.
ONVIF-DevMan, automatically picks up the ONVIF protocol and can control all aspect of the camera.
Unfortunately NCS can’t, When I select ONVIF source, The discovery feature finds the Pi and I can add it to the “edit video source” box, but I cannot save the config. I don’t know why that is but I thought it might have something to do with the calling of the ONVIF profiles?
On my Pi, I have Soap logging enabled and I notice an entirely different type of response between NCS and the Pi than between ONVIF-DevMan and the Pi.
Who knows why I cannot connect to this ONVIF camera? I have a chinese ptz dome cam, also here I cannot just press save in the ONVIF tab I must also add rtsp in the custom url, but at least then PTZ works on the dome. If I do the same to the Pi, Whhenever I try to control PTZ, the Pi’s SOAP tells me
Thanks for the tip, but as I said; it’s not retreiving any profile… I even tried by forcing the profilename (as used in ODM) onto NCS by inserting it straight into server.config
<SerializableSetting Category="Settings" Description="Token of the selected ONVIF Profile" Id="19" Key="OnvifProfileToken" ValueType="System.String" Visibility="Hidden">
<ValueSerialized>CurrentProfile</ValueSerialized>
Whilst trying out the various paths according to the Pi server, it replies in different ways each time
when I set /onvif/ptz_service I receive:
PTZService - Calltype : info, Data : Attempting to bind to /onvif/ptz_service
PTZService - Calltype : info, Data : Trying PTZ from path /onvif/ptz_service
PTZService received request GetConfigurations
When I try “/onvif/media_service”, I receive errors. same for “/onvif/Imaging_service” and “/onvif/Device_service”, always the same errors:
ImagingService - Calltype : error, Data : TypeError: Cannot read property ‘output’ of undefined
But when I declare only /onvif/ptz, my SOAP responses look a lot cleaner It only says:
web request received : /onvif/ptz
Unfortunately, still without movement
Finally I attach the response from the Pi as received first command from ODM and second from NCS, both using the /onvif/ptz_service
The problem is a bug in NCS.
They are sending GetProfiles requests to the wrong ONVIF URL.
They are sending GetProfiles to a URL ending /onvif/device_service
But GetProfiles is a Media command and not a Device command and needs to be sent to the URL given by the GetCapabilities command and the Media XADDR .
If NCS fix their bug then I expect it will work fine.
Can you confirm this as a bug, Hendrik? And is there anything I can do to further assist?