mirror of
https://github.com/got-feedBack/feedBack.git
synced 2026-07-21 20:31:21 +00:00
25 lines
650 B
Python
25 lines
650 B
Python
#!/usr/bin/env python3
|
|
"""Stub: the standalone sloppak stem-splitting tool has been removed.
|
|
|
|
This script previously split a sloppak's full-mix stem into per-instrument
|
|
stems via Demucs. Its implementation lived in the removed `sloppak_convert`
|
|
module. Use the in-app stem separation (Studio / stem-mixer) instead.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
|
|
def main() -> int:
|
|
print(
|
|
"split_stems.py: the stem-splitting tool is no longer available.\n"
|
|
"Use the in-app stem separation (Studio / stem-mixer) instead.",
|
|
file=sys.stderr,
|
|
)
|
|
return 2
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|