├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── TODO.md ├── device.go ├── device_test.go ├── digest └── digest.go ├── discovery.go ├── events.go ├── get_stream_url_test.go ├── go.mod ├── go.sum ├── lib_onvif.go ├── media.go ├── media_test.go ├── model.go ├── ptz.go ├── ptz_test.go ├── recording.go ├── relay.go ├── search.go ├── soap.go └── utils.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/TODO.md -------------------------------------------------------------------------------- /device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/device.go -------------------------------------------------------------------------------- /device_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/device_test.go -------------------------------------------------------------------------------- /digest/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/digest/digest.go -------------------------------------------------------------------------------- /discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/discovery.go -------------------------------------------------------------------------------- /events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/events.go -------------------------------------------------------------------------------- /get_stream_url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/get_stream_url_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/go.sum -------------------------------------------------------------------------------- /lib_onvif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/lib_onvif.go -------------------------------------------------------------------------------- /media.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/media.go -------------------------------------------------------------------------------- /media_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/media_test.go -------------------------------------------------------------------------------- /model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/model.go -------------------------------------------------------------------------------- /ptz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/ptz.go -------------------------------------------------------------------------------- /ptz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/ptz_test.go -------------------------------------------------------------------------------- /recording.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/recording.go -------------------------------------------------------------------------------- /relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/relay.go -------------------------------------------------------------------------------- /search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/search.go -------------------------------------------------------------------------------- /soap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/soap.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quocson95/go-onvif/HEAD/utils.go --------------------------------------------------------------------------------