├── .gitignore ├── LICENSE ├── README.md ├── device ├── device.wsdl └── types.go ├── deviceService.go ├── events ├── addressing.go ├── events.wsdl └── types.go ├── eventsService.go ├── go.mod ├── go.sum ├── main └── main.go ├── media ├── media.wsdl └── types.go ├── mediaService.go ├── onvif ├── common.xsd ├── itemlist.go ├── message.go ├── onvif.xsd ├── posix_timezone.go └── types.go ├── onvifClient.go ├── onvifdevice.go ├── pullPointSubscription.go ├── soap ├── client.go ├── types.go └── wsSecurity.go └── xsd ├── anytype.go ├── duration.go └── types.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/README.md -------------------------------------------------------------------------------- /device/device.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/device/device.wsdl -------------------------------------------------------------------------------- /device/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/device/types.go -------------------------------------------------------------------------------- /deviceService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/deviceService.go -------------------------------------------------------------------------------- /events/addressing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/events/addressing.go -------------------------------------------------------------------------------- /events/events.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/events/events.wsdl -------------------------------------------------------------------------------- /events/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/events/types.go -------------------------------------------------------------------------------- /eventsService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/eventsService.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/faceterteam/onvif4go 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/main/main.go -------------------------------------------------------------------------------- /media/media.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/media/media.wsdl -------------------------------------------------------------------------------- /media/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/media/types.go -------------------------------------------------------------------------------- /mediaService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/mediaService.go -------------------------------------------------------------------------------- /onvif/common.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/onvif/common.xsd -------------------------------------------------------------------------------- /onvif/itemlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/onvif/itemlist.go -------------------------------------------------------------------------------- /onvif/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/onvif/message.go -------------------------------------------------------------------------------- /onvif/onvif.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/onvif/onvif.xsd -------------------------------------------------------------------------------- /onvif/posix_timezone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/onvif/posix_timezone.go -------------------------------------------------------------------------------- /onvif/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/onvif/types.go -------------------------------------------------------------------------------- /onvifClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/onvifClient.go -------------------------------------------------------------------------------- /onvifdevice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/onvifdevice.go -------------------------------------------------------------------------------- /pullPointSubscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/pullPointSubscription.go -------------------------------------------------------------------------------- /soap/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/soap/client.go -------------------------------------------------------------------------------- /soap/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/soap/types.go -------------------------------------------------------------------------------- /soap/wsSecurity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/soap/wsSecurity.go -------------------------------------------------------------------------------- /xsd/anytype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/xsd/anytype.go -------------------------------------------------------------------------------- /xsd/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/xsd/duration.go -------------------------------------------------------------------------------- /xsd/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faceterteam/onvif4go/HEAD/xsd/types.go --------------------------------------------------------------------------------