Add video license key

License Key Required

The trial of Apryse SDK requires a trial license key, which is provided in the box titled "License Key". A commercial license key is required for use in a production environment. Please contact sales to purchase a commercial key or if you need any other license key assistance.

Keep your license keys confidential.

License keys are uniquely generated. Please make sure that it is not publicly available (e.g. in your public GitHub).

A watermark will be visible when no license key is entered and will be removed when you enter a valid license key.

String option

Pass your license key as a string to the initializeVideoViewer function.

For example if your license key is

key@domain.com///150:191:91:208:107:135:56:7:89:101:211:148:2:202:107...

then you would call:

JavaScript

1WebViewer({
2 path: '...'
3}).then((instance) => {
4 const {
5 loadVideo,
6 } = await initializeVideoViewer(
7 instance,
8 {
9 license: `key@domain.com///150:191:91:208:107:135:56:7:89:101:211:148:2:202:107...`,
10 }
11 );
12})

Please make sure you’re using the entire key string, but with no extra whitespace included (i.e. at the end, which can happen when you copy/paste out of an email or the website)

File option

Alternatively instead of passing a string, one can a pass a file url. The contents of the file should only be the entire license key.

JavaScript

1WebViewer({
2 path: '...'
3}).then((instance) => {
4 const {
5 loadVideo,
6 } = await initializeVideoViewer(
7 instance,
8 {
9 license: `/path/to/license.txt`
10 }
11 );
12})

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales