Silence
Name | Type | Description |
---|---|---|
enabled | boolean | Enables this analysis type. |
is_optional | boolean | If set to true, the analyzer will not fail if this media type did not exist in the source. |
duration_sec | number | Silence must exceed this duration for triggering detection. maximum: 3600 default: 10 |
noise_db | number | The audio level must be above this value for being detected as a true audio signal. minimum: -90 default: -60 |
Example silence
{
"uid": "analyze_task",
"kind": "analyze",
"payload": {
"general_properties": {
"enabled": true
},
"deep_properties": {
"audio": [
{
"silence": {
"enabled": true,
"noise_db": -60,
"duration_sec": 1
}
}
]
}
}
}