0.0.2 • Published 5 years ago

onvif-rx-angular v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

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.
0.0.2

5 years ago

0.0.1

5 years ago