eyevinn-encore-transfer
- Description:
Introducing Encore Transfer - the ultimate service for seamless output transfer in a video processing pipeline. With easy installation and essential environment variables, this service is a game-changer for Open Source Cloud users. Dive into our comprehensive documentation and join our supportive community on Slack. Don't miss out on this opportunity to revolutionize your video workflow with Eyevinn Technology's innovative solution. Get in touch with us for further customization and support options!
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createEyevinnEncoreTransferInstance(context, body) → {EyevinnEncoreTransfer}
- Description:
Create a new Encore Transfer instance
Example
import { Context } from '@osaas/client-core';
import { createEyevinnEncoreTransferInstance } from '@osaas/client-services';
const ctx = new Context();
const body: EyevinnEncoreTransferConfig = { name: 'myinstance', ... };
const instance = await createEyevinnEncoreTransferInstance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
EyevinnEncoreTransferConfig | Service instance configuration |
Returns:
- Service instance
(async, static) getEyevinnEncoreTransferInstance(context, name) → {EyevinnEncoreTransfer}
- Description:
Get a Encore Transfer instance
Example
import { Context } from '@osaas/client-core';
import { getEyevinnEncoreTransferInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getEyevinnEncoreTransferInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the encore-transfer to be retrieved |
Returns:
- Service instance
(async, static) removeEyevinnEncoreTransferInstance(context, name)
- Description:
Remove a Encore Transfer instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the encore-transfer to be removed |