grusell-encore-profile-server

Namespace

grusell-encore-profile-server

Description:
  • Transform your video processing with the Encore Profile Server. Serve dynamic transcoding profiles directly from S3-compatible storage, seamlessly integrating AI capabilities for on-demand profile creation.

Author:

Methods

(async, static) createGrusellEncoreProfileServerInstance(context, body) → {GrusellEncoreProfileServer}

Description:
  • Create a new Encore Profile Server instance

Example
import { Context } from '@osaas/client-core';
import { createGrusellEncoreProfileServerInstance } from '@osaas/client-services';

const ctx = new Context();
const body: GrusellEncoreProfileServerConfig = { name: 'myinstance', ... };
const instance = await createGrusellEncoreProfileServerInstance(ctx, body);
console.log(instance.url);
Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

body GrusellEncoreProfileServerConfig

Service instance configuration

Returns:
  • Service instance
Type
GrusellEncoreProfileServer

(async, static) getGrusellEncoreProfileServerInstance(context, name) → {GrusellEncoreProfileServer}

Description:
  • Get a Encore Profile Server instance

Example
import { Context } from '@osaas/client-core';
import { getGrusellEncoreProfileServerInstance } from '@osaas/client-services';

const ctx = new Context();
const instance = await getGrusellEncoreProfileServerInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the encore-profile-server to be retrieved

Returns:
  • Service instance
Type
GrusellEncoreProfileServer

(async, static) removeGrusellEncoreProfileServerInstance(context, name)

Description:
  • Remove a Encore Profile Server instance

Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the encore-profile-server to be removed