onvif-rx-angular
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

onvif-rx-angular

A thin wrapper around onvif-rx to communicate with ONVIF devices and cameras in Angular applications.

Installation

npm i onvif-rx-angular onvif-rx stream

import { NgModule } from '@angular/core';
import { ONVIFModule } from 'onvif-rx-angular';
 
@NgModule({
  ...
  imports: [
    ...,
    ONVIFModule,
    ...
  ],
  ...
})
export class AppModule { }

You will also need to somehow expose a global object for the Buffer polyfill. You can do this by adding (window as any).global = window; to your polyfills.ts file.

Example Usage

import { Component } from '@angular/core';
import { ONVIFService } from 'onvif-rx-angular';
 
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss']
})
export class AppComponent {
  constructor(private onvif: ONVIFService) { }
 
  device = this.onvif.createManagedDevice({
    deviceUrl: 'http://192.168.1.142:80/onvif/device_service',
    password: 'admin',
    username: '123456'
  });
 
  getSomeInfo = () => 
    this.device.api.Media
    .GetServiceCapabilities()
    .toPromise()
    .then(response => {
      response.match({
        fail: console.log,
        ok: d => console.log(d.json)
      });
    })
}

Important

  • Your device must return CORS headers otherwise browsers will reject the responses. You can either run this in Electron or setup a proxy server that appends response headers.

Readme

Keywords

none

Package Sidebar

Install

npm i onvif-rx-angular

Weekly Downloads

9

Version

0.0.2

License

MIT

Unpacked Size

75.9 kB

Total Files

26

Last publish

Collaborators

  • patrickmichalina