Questions tagged [onvif]

ONVIF is established as a non-profit organization. It is an open industry forum for the development of a global standard for the interface of IP-based physical security products.

ONVIF is established as a non-profit organization. It is an open industry forum for the development of a global standard for the interface of IP-based physical security products.

ONVIF describes itself as the market's leading standardization initiative for IP-based physical security products. Founded in 2008, the forum already has more than 330 members, representing the majority of the world's largest manufacturers of network video equipment.

410 questions
0
votes
1 answer

Http 400 Bad Request while authenticating with ONVIF camera

I am trying to authenticate with the ONVIF camera by sending the "usernametoken" soap request to get the device capabilities. But I am getting "The action requested requires authorization and the sender is not authorized" error back from the camera.…
0
votes
1 answer

What wsdl to implement to add NetworkVideoTransmitter to supported ProbeMatch with CXF?

Apache CXF implements WSDiscoveryServiceImpl to support WS-Discovery. And it iterates over published services to check supported Probes and requested: WS-Discovery with Apache CXF. How to specify device type?. What wsdl should i implement and…
4ntoine
  • 19,816
  • 21
  • 96
  • 220
0
votes
1 answer

Network Camera Streaming Capabilities via ONVIF

How could I know how many video streams a network camera is capable to transmit simultaneously via ONVIF and if there are any restrictions? I've search in every ONVIF's specs and nothing shows up. So far I've been able to know it through the…
pepOS
  • 335
  • 4
  • 22
0
votes
1 answer

How to save video stream without using a SDK

I'm developing an app that interacts with ONVIF compliant network cameras. So far I've been able to manage discovery, security, streaming and ptz by my self according to ONVIF specifications. Now I need to save a video stream to a file on my PC, but…
user4096371
0
votes
1 answer

Why LoadLibrary() fail's on libvlc.dll when I changed the target framework in C#

I encountered an strange problem in c#... I was trying to connect to an ONVIF camera through VLC library(tell me if there's a better way) And I found a nice pre-implemented library called nVLC on the NuGet, then I used it, and it was very good, But…
Ali Kherad
  • 834
  • 8
  • 25
0
votes
2 answers

Delphi Onvif SOAP Calls

I'd like to get started using Delphi to access and control IP-cameras with the Onvif SOAP protocol. However, I do not understand how to actually perform the calls from Delphi. I've imported the following…
TomRay74
  • 513
  • 6
  • 17
0
votes
1 answer

Possible approaches to stream video from an IP camera to chromecast or raspberry pi

This is related to this question, which is not answered yet. Basically I want to know if it is possible to: Cast the stream from an IP camera to chromecast or some other devices (like raspberry pi) The IP camera I have is a D-Link one, with some…
XoXo
  • 1,560
  • 1
  • 16
  • 35
0
votes
1 answer

Onvif compatibility

I have been using Onvif for one month and I am able to receive stream URI and have the control over all the configuration stuff from my own client program designed in C#. In my application I want to take the videos (1 or 2 min streams) from 10 IP…
0
votes
1 answer

Events in Onvif Device Manager

I'm developing an application that needs to receive events from cameras(eg. motion detection) using ONVIF protocol. I've downloaded the latest ONVIF Device Manage version from link, and was able to compile and run it. I would like to create…
user3154369
  • 139
  • 1
  • 3
  • 13
0
votes
1 answer

Is it possible to add type when 'TypeNotFound' exception in SUDS raises?

When I try to load http://www.onvif.org/ver10/device/wsdl/devicemgmt.wsdl the exception Type not found: '(IPAddressFilter, http://www.onvif.org/ver10/schema/onvif.xsd, )' raises. Is it possible to fix? from suds.client import Client client =…
Kin
  • 4,466
  • 13
  • 54
  • 106
0
votes
1 answer

Getting the details of an ONVIF FaultException

This answer explains how to get the text of a SOAP FaultException, but it only works when the contents are a serialised string, resulting in details. This ONVIF device…
Deanna
  • 23,876
  • 7
  • 71
  • 156
0
votes
2 answers

OnVif integration error - unauthorized with client authentication scheme 'Digest'

Using this code to connect to OnVif service on my IP Camera in C# .Net 4.5. Very next to that code, I am trying to get Device information as follows: string str = client.GetDeviceInformation(out model, out firmware, out serial, out hardwareId); And…
theGeekster
  • 6,081
  • 12
  • 35
  • 47
0
votes
1 answer

Generating client web services from Onvif wsdl file

I'm trying to create the client web services from the Onvif standard wsdl file located here. After I pass through all steps in Eclipse wizard using Apache CFX, I get this output: Loading FrontEnd jaxws ... Loading DataBinding jaxb ... wsdl2java…
artaxerxe
  • 6,281
  • 21
  • 68
  • 106
0
votes
0 answers

onvif Device discovery in Java with idea about SOAP implementation

How to perform onvif device discovery. From where to start and how to write classes for probe ,probematch in java.How client can access service with help of soap protocol.Do I have to write code for it.I am new to web service and SOAP.
0
votes
1 answer

ONVIF video stream on camera side (not client side)

I am trying to write an ONVIF video stream at the camera side on Linux Fedora (not the client side). I already installed the WSDL2H and ran: wsdl2h -c o onvif.h http://www.onvif.org/onvif/ver10/device/wsdl This command built the onvif.h I wrote a…