birme-video-uploader
- Description:
Effortlessly upload and manage your videos with our intuitive Video Uploader. Enjoy seamless drag-and-drop functionality, real-time upload tracking, and support for large files, all on your preferred S3-compatible storage.
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createBirmeVideoUploaderInstance(context, body) → {BirmeVideoUploader}
- Description:
Create a new S3 Video Uploader instance
Example
import { Context } from '@osaas/client-core';
import { createBirmeVideoUploaderInstance } from '@osaas/client-services';
const ctx = new Context();
const body: BirmeVideoUploaderConfig = { name: 'myinstance', ... };
const instance = await createBirmeVideoUploaderInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
BirmeVideoUploaderConfig | Service instance configuration |
Returns:
- Service instance
- Type
- BirmeVideoUploader
(async, static) getBirmeVideoUploaderInstance(context, name) → {BirmeVideoUploader}
- Description:
Get a S3 Video Uploader instance
Example
import { Context } from '@osaas/client-core';
import { getBirmeVideoUploaderInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getBirmeVideoUploaderInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the uploader to be retrieved |
Returns:
- Service instance
- Type
- BirmeVideoUploader
(async, static) removeBirmeVideoUploaderInstance(context, name)
- Description:
Remove a S3 Video Uploader instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the uploader to be removed |