@hsiehchenwei/mcp-gemini-transcriber 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hsiehchenwei/mcp-gemini-transcriber",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "type": "module",
5
5
  "description": "MCP 音訊轉逐字稿工具(使用 Gemini API)- 支援語者識別與情緒分析",
6
6
  "main": "server.mjs",
package/server.mjs CHANGED
@@ -2034,7 +2034,7 @@ server.tool(
2034
2034
  }
2035
2035
 
2036
2036
  // 切割音頻片段
2037
- const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), 'speaker-analysis-'));
2037
+ const tempDir = await fs.mkdtemp(path.join(tmpdir(), 'speaker-analysis-'));
2038
2038
  const segmentPath = path.join(tempDir, 'segment.mp3');
2039
2039
 
2040
2040
  await new Promise((resolve, reject) => {