get_sound_analysis
Retrieve detailed audio analysis data for Freesound samples, including descriptors and normalized values, to understand sound characteristics and properties.
Instructions
Get audio analysis data for a specific sound
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sound_id | Yes | The ID of the sound | |
| descriptors | No | Comma-separated list of analysis descriptors to retrieve | |
| normalized | No | Whether to normalize descriptor values |
Input Schema (JSON Schema)
{
"properties": {
"descriptors": {
"description": "Comma-separated list of analysis descriptors to retrieve",
"type": "string"
},
"normalized": {
"description": "Whether to normalize descriptor values",
"type": "boolean"
},
"sound_id": {
"description": "The ID of the sound",
"type": "number"
}
},
"required": [
"sound_id"
],
"type": "object"
}