Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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の外部連携インターフェイスのラッパー

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("こんにちは")
```