ablindberg-osc-vmaf-studio

Namespace

ablindberg-osc-vmaf-studio

Description:
  • Transform your video quality assessment with OSC VMAF Studio, a cloud-based tool leveraging OSC and Eyevinn EasyVMAF. Enjoy effortless S3 storage management, detailed VMAF analysis, and secure credentials.

Author:

Methods

(async, static) createAblindbergOscVmafStudioInstance(context, body) → {AblindbergOscVmafStudio}

Description:
  • Create a new VMAF Studio instance

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

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

Open Source Cloud configuration context

body AblindbergOscVmafStudioConfig

Service instance configuration

Returns:
  • Service instance
Type
AblindbergOscVmafStudio

(async, static) getAblindbergOscVmafStudioInstance(context, name) → {AblindbergOscVmafStudio}

Description:
  • Get a VMAF Studio instance

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

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

Open Source Cloud configuration context

name string

Name of the vmaf-studio to be retrieved

Returns:
  • Service instance
Type
AblindbergOscVmafStudio

(async, static) removeAblindbergOscVmafStudioInstance(context, name)

Description:
  • Remove a VMAF Studio instance

Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the vmaf-studio to be removed