@ww_nero/media 1.3.0 → 1.3.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.
package/index.js CHANGED
@@ -114,7 +114,7 @@ const resolveAudioFile = (workingDir, rawPath) => {
114
114
  const server = new Server(
115
115
  {
116
116
  name: 'media',
117
- version: '1.3.0',
117
+ version: '1.3.1',
118
118
  },
119
119
  {
120
120
  capabilities: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ww_nero/media",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "MCP server for media processing, including ASR speech recognition and TTS speech synthesis",
5
5
  "main": "index.js",
6
6
  "bin": {
package/utils/asr.js CHANGED
@@ -1,7 +1,7 @@
1
1
  const fs = require('fs');
2
2
  const path = require('path');
3
3
 
4
- const FILE_BASE_URL = 'http://fsheep.com:10801';
4
+ const FILE_BASE_URL = 'http://fsheep.com:10801/';
5
5
  const ASR_UPLOAD_URL = `${FILE_BASE_URL}/file/upload`;
6
6
  const ASR_SERVICE_URL = 'https://dashscope.aliyuncs.com/api/v1/services/audio/asr/transcription';
7
7