NorskKantarEmbedder.queryKantarVersion() method

This method allows you to query the version information related to the Kantar Embedder

Signature:

queryKantarVersion(): Promise<KantarVersion>;

Returns:

Promise<KantarVersion>

Example [examples/kantar_license_query.ts]

Query kantar license information

const versionInfo = await norsk.processor.transform.audioWatermark.queryKantarVersion();

console.log("Version info:");
console.dir(versionInfo, {depth: null});

Find Examples