Kantar_watermarking
Name | Type | Description |
---|---|---|
username | string | Login for authorization. |
password | string | Password for authorization. |
content_id | string | Identification string. |
channel_name | string | The channel name. If it is not available, it gets the first value from the Kantar server. |
license_id | number | The license id. If it is not available, it gets the first value from the Kantar server. |
offset | number | Optional: the audio offset in seconds. |
port | number | Optional: the ability to manually define the server port. |
url | string | Optional: the ability to manually define the server URL. |
metadata | object | Optional: the ability to set metadata (descriptions). |
results_file | object | The location for the output Kantar watermark log data. |
Example kantar_watermarking
{
"uid": "transcode_task",
"kind": "transcode",
"payload": {
"location": {},
"targets": [
{
"file_pattern": "{source_basename}_kantar.wav",
"container": {
"kind": "wav"
},
"audio": [
{
"codec": "pcm",
"channels": 2,
"filters": [
{
"kind": "kantar_watermarking",
"payload": {
"username": "Replace.This",
"password": "RePlAcEtHiS",
"content_id": "some_text",
"channel_name": "whatever",
"license_id": 123456,
"offset": 0,
"port": 443,
"url": "licenseofe.kantarmedia.com",
"metadata": {
"metadata_3": "1111"
}
}
}
]
}
]
}
]
}
}