@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 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`). A per-voice `seed` makes that speaker's recast reproducible.
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 — ElevenLabs only ever sees the
1532
- * isolated vocal stem, never the music bed. `preserveBackground` (default
1533
- * `true`) only controls whether that music/instrumental stem is mixed back
1534
- * under the new voices; set it `false` for a clean voice-only result.
1535
- * `separationQuality` selects the demucs model used for that split: `"fast"`
1536
- * (default, htdemucs — preserves more of the voice) or `"best"` (htdemucs_ft
1537
- * finer separation). `removeBackgroundNoise` additionally denoises the result.
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`%.