@nodaro/sdk 1.1.1 → 1.1.2

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
@@ -1528,13 +1528,14 @@ var VoicesResource = class {
1528
1528
  * Pass `audioUrl` for audio-only recast or `videoUrl` to recast the audio
1529
1529
  * track of a video clip (the server demuxes, recasts, and remuxes).
1530
1530
  *
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.
1531
+ * Voice and music are ALWAYS separated first — before recasting, the source
1532
+ * is split into an isolated vocal stem and a music/SFX stem.
1533
+ * `preserveBackground` (default `true`) only controls whether that
1534
+ * music/instrumental stem is mixed back under the new voices; set it `false`
1535
+ * for a clean voice-only result. `separationQuality` selects the quality of
1536
+ * the voice/music separation: `"fast"` (default, quicker preserves more of
1537
+ * the voice) or `"best"` (finer voice/music separation).
1538
+ * `removeBackgroundNoise` additionally denoises the result.
1538
1539
  * `musicVolumeMode` sets the level of that preserved background (only relevant
1539
1540
  * when `preserveBackground` is on): `"match"` (default) keeps the original
1540
1541
  * level, `"normalize"` loudnorms it, `"manual"` uses `musicVolume`%.