stemit-cli 1.0.4 → 1.0.7

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 CHANGED
@@ -66,7 +66,7 @@ You get back clean, studio-quality isolated tracks you can drop straight into yo
66
66
 
67
67
  ## Prerequisites
68
68
 
69
- stemit requires two system-level dependencies. Everything else (including Demucs itself) is installed automatically on first run.
69
+ stemit requires three system-level dependencies. Everything else (including Demucs itself) is installed automatically on first run.
70
70
 
71
71
  | Dependency | Minimum Version | Install |
72
72
  |---|---|---|
@@ -76,6 +76,10 @@ stemit requires two system-level dependencies. Everything else (including Demucs
76
76
 
77
77
  > **Note:** Demucs (the AI model) and all Python dependencies are installed automatically into a private virtualenv at `~/.stemit/venv` the first time you run any `stemit` command. You do not need to `pip install` anything yourself.
78
78
 
79
+ > **System requirements disclaimer:** stemit depends on local CPU performance, OS audio tooling, network reliability (for URL downloads), and third-party binaries (`ffmpeg`, Python packages, model downloads). Performance and output quality can vary across machines and environments.
80
+ >
81
+ > If you run into setup issues, command failures, or unexpected output, please open an issue with your OS, Node/Python versions, command used, and error logs so I can help quickly.
82
+
79
83
  ---
80
84
 
81
85
  ## Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stemit-cli",
3
- "version": "1.0.4",
3
+ "version": "1.0.7",
4
4
  "description": "CLI tool to split audio into stems (vocals/drums/bass/other), analyze BPM & key, and mute/solo tracks",
5
5
  "type": "module",
6
6
  "bin": {
@@ -114,20 +114,11 @@ async function ensureDemucsVenv(systemPython) {
114
114
  process.exit(1)
115
115
  }
116
116
  console.log(chalk.green(' ✔ demucs installed'))
117
-
118
- // macOS: fix SSL certificate verification (common issue with python.org installer)
119
- if (process.platform === 'darwin') {
120
- const certScript = spawnSync(
121
- VENV_PYTHON,
122
- ['-c', 'import certifi, ssl, urllib.request; urllib.request.install_opener(urllib.request.build_opener(urllib.request.HTTPSHandler(context=ssl.create_default_context(cafile=certifi.where()))))'],
123
- { encoding: 'utf8', stdio: 'pipe' }
124
- )
125
- if (certScript.status !== 0) {
126
- console.log(chalk.yellow(
127
- ' ⚠ SSL cert fix skipped. If you see SSL errors, run:\n' +
128
- ' /Applications/Python\\ 3.x/Install\\ Certificates.command'
129
- ))
130
- }
117
+ } else {
118
+ // Ensure certifi is present even if venv was created without it
119
+ const certifiCheck = spawnSync(VENV_PYTHON, ['-c', 'import certifi'], { encoding: 'utf8', stdio: 'pipe' })
120
+ if (certifiCheck.status !== 0) {
121
+ spawnSync(VENV_PIP, ['install', '--quiet', 'certifi'], { encoding: 'utf8', stdio: 'inherit' })
131
122
  }
132
123
  }
133
124