Constructor
VideoOther
new VideoOther()Example
Creating an 'other' camera stream
// In your device.js file
async onInit() {
const video = await this.homey.videos.createVideoOther();
video.registerVideoUrlListener(async () => {
return { url: `https://${this.getSetting('ip')}/stream.mp4` };
});
await this.setCameraVideo('front_door', 'Front Door', video);
}