比特破碎效果
降低采样率和比特深度以产生低保真效果
通过降低采样率和比特深度模拟低质量数字音频。创造 gritty、crunchy 的声音,让人想起早期数字采样器、视频游戏机和低保真音乐制作。
API 文档
请求端点
POST /zh/api/tools/audio-bitcrusher
请求参数
| 参数名 | 类型 | 必填 | 描述 |
|---|---|---|---|
| audioFile | file (需要先上传) | 是 | - |
| preset | select | 否 | Choose the intensity of the bitcrushing effect. Mild = subtle degradation, Heavy = extreme digital distortion. |
| sampleRate | number | 否 | 目标采样率。值越低 = 更多的混叠和 gritty 数字伪影。 |
| bitDepth | number | 否 | 目标比特深度。值越低 = 更多的量化噪声和 harsh 数字失真。 |
| dither | select | 否 | 抖动通过添加噪声减少量化伪影。无 = 原始量化噪声。 |
| mix | range | 否 | 干声(原始)和湿声(比特破碎)信号之间的平衡。 |
| outputFormat | select | 否 | - |
文件类型参数需要先通过 POST /upload/audio-bitcrusher 上传获取 filePath,然后将 filePath 传递给对应的文件字段。
响应格式
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}
文件:
文件
AI MCP 文档
将此工具添加到您的 MCP 服务器配置中:
{
"mcpServers": {
"elysiatools-audio-bitcrusher": {
"name": "audio-bitcrusher",
"description": "降低采样率和比特深度以产生低保真效果",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=audio-bitcrusher",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}
你可以串联多个工具,比如:`https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`,最多20个。
支持 URL 文件链接或 Base64 编码作为文件参数。
如果遇见问题,请联系我们:[email protected]