分类

单声道转立体声

将单声道音频文件转换为立体声(复制声道)

通过复制单个声道到左右声道将单声道音频转换为立体声。这会创建在双耳中听起来相同的立体声文件。适用于与仅支持立体声的系统兼容或需要立体声输出时。

Click to upload file or drag and drop file here

Maximum file size: 200MB Supported formats: audio/*

API 文档

请求端点

POST /zh/api/tools/mono-to-stereo

请求参数

参数名 类型 必填 描述
audioFile file (需要先上传) -
outputFormat select -

文件类型参数需要先通过 POST /upload/mono-to-stereo 上传获取 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-mono-to-stereo": {
      "name": "mono-to-stereo",
      "description": "将单声道音频文件转换为立体声(复制声道)",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=mono-to-stereo",
      "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]