get_tracks_by_bpm_range
Filter and retrieve tracks from the rekordbox database based on a specified BPM range, enabling precise selection of music for DJ sets or playlists.
Instructions
Get tracks within a specific BPM range.
Args: bpm_min: Minimum BPM bpm_max: Maximum BPM
Returns: List of tracks within the BPM range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bpm_max | Yes | ||
bpm_min | Yes |
Input Schema (JSON Schema)
{
"properties": {
"bpm_max": {
"title": "Bpm Max",
"type": "number"
},
"bpm_min": {
"title": "Bpm Min",
"type": "number"
}
},
"required": [
"bpm_min",
"bpm_max"
],
"type": "object"
}