Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/takana-v/sasawrapper
CeVIO AIの外部連携インターフェイスのラッパー
https://github.com/takana-v/sasawrapper
cevio
Last synced: about 1 month ago
JSON representation
CeVIO AIの外部連携インターフェイスのラッパー
- Host: GitHub
- URL: https://github.com/takana-v/sasawrapper
- Owner: takana-v
- License: mit
- Created: 2022-02-05T15:54:10.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-05T21:11:58.000Z (almost 3 years ago)
- Last Synced: 2024-10-11T09:18:52.637Z (3 months ago)
- Topics: cevio
- Language: Python
- Homepage:
- Size: 2.84 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## sasa_wrapper
CeVIO AIの外部連携インターフェイスのラッパー
CeVIO AIの起動が必要(していない場合は自動で起動する)
python 3.8で動作確認済
## APIドキュメント
https://takana-v.github.io/sasawrapper/
## インストール
```bash
pip install sasawrapper
```## 使用例
### コマンドラインから
```bash
python -m sasawrapper speak こんにちは
python -m sasawrapper speak --cast さとうささら --volume 60 --emotion 怒り 50 --emotion 哀しみ 50 色々オプション付きの例です
```コマンドの一覧は`python -m sasawrapper -h`参照
コマンドの詳細は`python -m sasawrapper コマンド名 -h`参照### モジュールとして利用
```python
import sasawrapper
sasawrapper.speak("こんにちは")
```