eyevinn-web-video-review
- Description:
Unlock seamless video review with Web Video Review! Stream, analyze, and navigate broadcast videos straight from S3 storage. Experience real-time analysis, dynamic timeline navigation, and powerful transcoding with unparalleled ease. Deploy effortlessly using Docker and transform your video reviewing process today!
- Copyright:
- 2025 Eyevinn Technology AB
- See:
-
- Online docs for further information
Methods
(async, static) createEyevinnWebVideoReviewInstance(context, body) → {EyevinnWebVideoReview}
- Description:
Create a new Video Review instance
Example
import { Context } from '@osaas/client-core';
import { createEyevinnWebVideoReviewInstance } from '@osaas/client-services';
const ctx = new Context();
const body: EyevinnWebVideoReviewConfig = { name: 'myinstance', ... };
const instance = await createEyevinnWebVideoReviewInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
EyevinnWebVideoReviewConfig | Service instance configuration |
Returns:
- Service instance
(async, static) getEyevinnWebVideoReviewInstance(context, name) → {EyevinnWebVideoReview}
- Description:
Get a Video Review instance
Example
import { Context } from '@osaas/client-core';
import { getEyevinnWebVideoReviewInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getEyevinnWebVideoReviewInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the application to be retrieved |
Returns:
- Service instance
(async, static) removeEyevinnWebVideoReviewInstance(context, name)
- Description:
Remove a Video Review instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the application to be removed |