Some test text!
Web / FAQ / Add a video license key
A watermark will be visible when no license key is entered and will be removed when you enter a valid license key.
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:
WebViewer({
path: '...'
}).then((instance) => {
const {
loadVideo,
} = await initializeVideoViewer(
instance,
{
license: `key@domain.com///150:191:91:208:107:135:56:7:89:101:211:148:2:202:107...`,
}
);
})
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)
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.
WebViewer({
path: '...'
}).then((instance) => {
const {
loadVideo,
} = await initializeVideoViewer(
instance,
{
license: `/path/to/license.txt`
}
);
})
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales