
lucataco/audio-boost

Audio processing tool to help boost (or decrease) audio volume
Run lucataco/audio-boost with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
audio |
string
|
Input audio file to process
|
|
volume_boost |
number
|
2
Max: 10 |
Volume boost factor. 1.0 = no change, 2.0 = double volume, 0.5 = half volume
|
normalize |
boolean
|
True
|
Apply audio normalization to prevent clipping and optimize levels
|
noise_reduction |
boolean
|
False
|
Apply basic noise reduction filter
|
bass_boost |
number
|
0
Min: -20 Max: 20 |
Bass boost in dB (positive values boost bass, negative values reduce)
|
treble_boost |
number
|
0
Min: -20 Max: 20 |
Treble boost in dB (positive values boost treble, negative values reduce)
|
output_format |
None
|
mp3
|
Output audio format
|
bitrate |
None
|
192k
|
Audio bitrate (higher = better quality, larger file)
|
{
"type": "object",
"title": "Input",
"required": [
"audio"
],
"properties": {
"audio": {
"type": "string",
"title": "Audio",
"format": "uri",
"x-order": 0,
"description": "Input audio file to process"
},
"bitrate": {
"enum": [
"128k",
"192k",
"256k",
"320k"
],
"type": "string",
"title": "bitrate",
"description": "Audio bitrate (higher = better quality, larger file)",
"default": "192k",
"x-order": 7
},
"normalize": {
"type": "boolean",
"title": "Normalize",
"default": true,
"x-order": 2,
"description": "Apply audio normalization to prevent clipping and optimize levels"
},
"bass_boost": {
"type": "number",
"title": "Bass Boost",
"default": 0,
"maximum": 20,
"minimum": -20,
"x-order": 4,
"description": "Bass boost in dB (positive values boost bass, negative values reduce)"
},
"treble_boost": {
"type": "number",
"title": "Treble Boost",
"default": 0,
"maximum": 20,
"minimum": -20,
"x-order": 5,
"description": "Treble boost in dB (positive values boost treble, negative values reduce)"
},
"volume_boost": {
"type": "number",
"title": "Volume Boost",
"default": 2,
"maximum": 10,
"minimum": 0,
"x-order": 1,
"description": "Volume boost factor. 1.0 = no change, 2.0 = double volume, 0.5 = half volume"
},
"output_format": {
"enum": [
"mp3",
"wav",
"aac",
"ogg"
],
"type": "string",
"title": "output_format",
"description": "Output audio format",
"default": "mp3",
"x-order": 6
},
"noise_reduction": {
"type": "boolean",
"title": "Noise Reduction",
"default": false,
"x-order": 3,
"description": "Apply basic noise reduction filter"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
{
"type": "string",
"title": "Output",
"format": "uri"
}
'https://replicate.delivery/xezq/H8DF8bWtMgYSIpkHZGvU3pniWnTMCfrtxArsReamv9R048KVA/tmpg0my6rh0.mp3'