UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

42 lines (41 loc) 1.87 kB
import BitmovinResource from './BitmovinResource'; import NexGuardWatermarkingStrength from './NexGuardWatermarkingStrength'; import NexGuardWatermarkingType from './NexGuardWatermarkingType'; /** * @export * @class NexGuardFileMarker */ export declare class NexGuardFileMarker extends BitmovinResource { /** * Use the base64 license string that Nagra provides you. (required) * @type {string} * @memberof NexGuardFileMarker */ license?: string; /** * The type of watermarking to be used: * `OTT` - A/B watermarking (for video streams only) * `DUPLICATED` - Stream duplication to match A/B video streams in CDN delivery (for audio streams only) * @type {NexGuardWatermarkingType} * @memberof NexGuardFileMarker */ watermarkType?: NexGuardWatermarkingType; /** * Specify the payload ID that you want to be associated with this output. Valid values vary depending on your Nagra NexGuard forensic watermarking workflow. For PreRelease Content (NGPR), specify an integer from 1 through 4,194,303. You must generate a unique ID for each asset you watermark, and keep a record of th ID. Neither Nagra nor Bitmovin keep track of this for you. * @type {number} * @memberof NexGuardFileMarker */ payload?: number; /** * Enter one of the watermarking preset strings that Nagra provides you. * @type {string} * @memberof NexGuardFileMarker */ preset?: string; /** * Optional. Ignore this setting unless Nagra support directs you to specify a value. When you don't specify a value here, the Nagra NexGuard library uses its default value. * @type {NexGuardWatermarkingStrength} * @memberof NexGuardFileMarker */ strength?: NexGuardWatermarkingStrength; constructor(obj?: Partial<NexGuardFileMarker>); } export default NexGuardFileMarker;