RVC-CH / lib /rvc /__init__.py
ozipoetra
refactor: create own RVC library from ultimate_rvc
754f043
raw
history blame
391 Bytes
"""RVC Voice Conversion Library.
This is a minimal rewrite of the ultimate-rvc library for voice conversion.
"""
from __future__ import annotations
from pathlib import Path
# Base directory for RVC resources
BASE_DIR = Path(__file__).parent.parent.parent
# Models directory
MODELS_DIR = BASE_DIR / "rvc_models"
# Configs directory (for model configs)
CONFIGS_DIR = BASE_DIR / "configs"