dsh-audiogen 0.4.11 → 0.4.13
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/README.md +23 -23
- package/README.zh-CN.md +5 -5
- package/docs/images/hero.png +0 -0
- package/docs/images/library-detail.png +0 -0
- package/docs/images/library.png +0 -0
- package/docs/images/models-page.png +0 -0
- package/docs/images/settings-channels.png +0 -0
- package/docs/images/settings-stability.png +0 -0
- package/lib/client.js +344 -344
- package/lib/client.js.map +1 -1
- package/package.json +1 -1
- package/src/protocol.ts +3 -3
- package/docs/images/history-panel.png +0 -0
- package/docs/images/panel-compare.png +0 -0
- package/docs/images/panel-music.png +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-audiogen",
|
|
3
3
|
"description": "AI audio generation plugin for the dsh web GUI: multi-vendor TTS/music/sound-effect channels (OpenAI-compatible, ElevenLabs, MiniMax, Stability AI and custom), per-channel model/voice catalogs, Agent tool and a sidebar AI 音频 panel.",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.13",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"exports": {
|
package/src/protocol.ts
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
export const AUDIOGEN_SETTINGS_NAMESPACE = 'dsh-audiogen'
|
|
9
9
|
|
|
10
10
|
/** Published package version shared by the host updater and the client UI. */
|
|
11
|
-
export const PLUGIN_VERSION = '0.4.
|
|
11
|
+
export const PLUGIN_VERSION = '0.4.13'
|
|
12
12
|
|
|
13
13
|
/** Same-origin route family (loopback-only, mirroring dsh-imagegen). */
|
|
14
14
|
export const SETTINGS_API = {
|
|
@@ -163,7 +163,7 @@ export interface GenerateAudioRequest {
|
|
|
163
163
|
loop?: boolean
|
|
164
164
|
/** ElevenLabs 音效:提示词影响度 0-1(prompt_influence,默认 0.3)。 */
|
|
165
165
|
promptInfluence?: number
|
|
166
|
-
/** Stable Audio 随机种子(seed,0.4.
|
|
166
|
+
/** Stable Audio 随机种子(seed,0.4.134967294,默认 0=随机)。 */
|
|
167
167
|
seed?: number
|
|
168
168
|
/** Stable Audio 采样步数(steps,按模型收敛:stable-audio-2: 30-100;2.5/3: 4-8)。 */
|
|
169
169
|
steps?: number
|
|
@@ -193,7 +193,7 @@ export interface GenerateAudioRequest {
|
|
|
193
193
|
latexRead?: boolean
|
|
194
194
|
/** MiniMax 发音词典 tone 条目,元素形如 "处理/(chu3)(li3)" 或 "危险/dangerous"。 */
|
|
195
195
|
pronunciationTone?: string[]
|
|
196
|
-
/** MiniMax 采样率:16000/24000/32000.4.
|
|
196
|
+
/** MiniMax 采样率:16000/24000/32000.4.130/48000,默认 32000。 */
|
|
197
197
|
sampleRate?: number
|
|
198
198
|
/** MiniMax 码率(bps):64000-320000,默认 128000。 */
|
|
199
199
|
bitrate?: number
|
|
Binary file
|
|
Binary file
|
|
Binary file
|