├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .python-version ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── notebook └── yohane.ipynb ├── pixi.lock ├── pixi.toml ├── pyproject.toml ├── renovate.json ├── samples ├── CRYCHIC - 春日影 ⧸ THE FIRST TAKE [NJ1tne9u8YM].ass └── 【組曲】花譜×ズーカラデル # 124「秘密の言葉」【オリジナルMV】 [rnpL3ZugPLc].ass ├── uv.lock ├── yohane-cli ├── pyproject.toml └── yohane_cli │ ├── __init__.py │ ├── __main__.py │ ├── app.py │ ├── audio.py │ └── lyrics.py └── yohane ├── __init__.py ├── __main__.py ├── audio.py ├── lyrics.py ├── pipeline.py ├── py.typed ├── subtitles.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/README.md -------------------------------------------------------------------------------- /notebook/yohane.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/notebook/yohane.ipynb -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/pixi.lock -------------------------------------------------------------------------------- /pixi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/pixi.toml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/renovate.json -------------------------------------------------------------------------------- /samples/CRYCHIC - 春日影 ⧸ THE FIRST TAKE [NJ1tne9u8YM].ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/samples/CRYCHIC - 春日影 ⧸ THE FIRST TAKE [NJ1tne9u8YM].ass -------------------------------------------------------------------------------- /samples/【組曲】花譜×ズーカラデル # 124「秘密の言葉」【オリジナルMV】 [rnpL3ZugPLc].ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/samples/【組曲】花譜×ズーカラデル # 124「秘密の言葉」【オリジナルMV】 [rnpL3ZugPLc].ass -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/uv.lock -------------------------------------------------------------------------------- /yohane-cli/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane-cli/pyproject.toml -------------------------------------------------------------------------------- /yohane-cli/yohane_cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane-cli/yohane_cli/__init__.py -------------------------------------------------------------------------------- /yohane-cli/yohane_cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane-cli/yohane_cli/__main__.py -------------------------------------------------------------------------------- /yohane-cli/yohane_cli/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane-cli/yohane_cli/app.py -------------------------------------------------------------------------------- /yohane-cli/yohane_cli/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane-cli/yohane_cli/audio.py -------------------------------------------------------------------------------- /yohane-cli/yohane_cli/lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane-cli/yohane_cli/lyrics.py -------------------------------------------------------------------------------- /yohane/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane/__init__.py -------------------------------------------------------------------------------- /yohane/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane/__main__.py -------------------------------------------------------------------------------- /yohane/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane/audio.py -------------------------------------------------------------------------------- /yohane/lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane/lyrics.py -------------------------------------------------------------------------------- /yohane/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane/pipeline.py -------------------------------------------------------------------------------- /yohane/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yohane/subtitles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane/subtitles.py -------------------------------------------------------------------------------- /yohane/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Japan7/yohane/HEAD/yohane/utils.py --------------------------------------------------------------------------------