dotwoo / onvif-rs

A native Rust ONVIF client library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ONVIF-rs

ONVIF-rs is a Rust client library implementation of the ONVIF specification.

Features

  • all ONVIF types are generated from official schema
  • all ONVIF operations are generated from official schema
  • operations are async (currently only tokio runtime is supported)
  • device discovery on the local network using WS-discovery which is mandatory for all ONVIF devices
  • authentication using WS-Security UsernameToken which is mandatory for all ONVIF devices
  • zero unsafe

Usage

Cargo.toml:

[dependencies]
onvif = { git = "https://github.com/lumeohq/onvif-rs" }

Troubleshooting

If you have an issue with OpenSSL build under Ubuntu, perform the following actions:

sudo apt install openssl1.0 libssl1.0.0 libssl1.0-dev
cargo clean
export OPENSSL_LIB_DIR=/usr/lib/x86_64-linux-gnu
export OPENSSL_INCLUDE_DIR=/usr/include/openssl
cargo build

Examples

To discover devices on the local network:

cargo run --example discovery

To inspect and control a camera:

cargo run --example camera -- help

cargo run --example camera -- get-system-date-and-time \
    --uri=http://192.168.0.2:8000

cargo run --example camera -- set-hostname \
    --uri=http://192.168.0.2:8000 --username=admin --password=qwerty cam2

cargo run --example camera -- get-stream-uris --uri=http://192.168.0.2:8000

Dependencies

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

About

A native Rust ONVIF client library.

License:MIT License


Languages

Language:Rust 100.0%