@nodaro/sdk 1.1.1 → 1.2.0
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/dist/index.cjs +12 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -16
- package/dist/index.d.ts +23 -16
- package/dist/index.js +12 -8
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -1523,18 +1523,22 @@ var VoicesResource = class {
|
|
|
1523
1523
|
* ElevenLabs UUID) OR a {@link VoiceChangerProVoice} object carrying per-voice
|
|
1524
1524
|
* ElevenLabs speech-to-speech settings (stability / similarityBoost / style /
|
|
1525
1525
|
* useSpeakerBoost / `seed`) plus a loudness `volumeMode` (and a manual
|
|
1526
|
-
* `volume`)
|
|
1526
|
+
* `volume`) — OR `null`, meaning keep this speaker's original voice (requires
|
|
1527
|
+
* a platform running cloud-plugins with keep-slot support). At least one
|
|
1528
|
+
* entry must be non-null. A per-voice `seed` makes that speaker's recast
|
|
1529
|
+
* reproducible.
|
|
1527
1530
|
*
|
|
1528
1531
|
* Pass `audioUrl` for audio-only recast or `videoUrl` to recast the audio
|
|
1529
1532
|
* track of a video clip (the server demuxes, recasts, and remuxes).
|
|
1530
1533
|
*
|
|
1531
|
-
* Voice and music are ALWAYS separated first —
|
|
1532
|
-
* isolated vocal stem
|
|
1533
|
-
* `true`) only controls whether that
|
|
1534
|
-
* under the new voices; set it `false`
|
|
1535
|
-
* `separationQuality` selects the
|
|
1536
|
-
*
|
|
1537
|
-
*
|
|
1534
|
+
* Voice and music are ALWAYS separated first — before recasting, the source
|
|
1535
|
+
* is split into an isolated vocal stem and a music/SFX stem.
|
|
1536
|
+
* `preserveBackground` (default `true`) only controls whether that
|
|
1537
|
+
* music/instrumental stem is mixed back under the new voices; set it `false`
|
|
1538
|
+
* for a clean voice-only result. `separationQuality` selects the quality of
|
|
1539
|
+
* the voice/music separation: `"fast"` (default, quicker — preserves more of
|
|
1540
|
+
* the voice) or `"best"` (finer voice/music separation).
|
|
1541
|
+
* `removeBackgroundNoise` additionally denoises the result.
|
|
1538
1542
|
* `musicVolumeMode` sets the level of that preserved background (only relevant
|
|
1539
1543
|
* when `preserveBackground` is on): `"match"` (default) keeps the original
|
|
1540
1544
|
* level, `"normalize"` loudnorms it, `"manual"` uses `musicVolume`%.
|