Metadata-Version: 2.1
Name: strcuta
Version: 0.0.9
Summary: Loading UTAU voice banks into the Python data structure.
Home-page: https://github.com/takagiy/strcuta-py
Author: takagiy
Author-email: takagiy.4dev@gmail.com
License: BSL-1.0
Project-URL: Repository, https://github.com/takagiy/strcuta-py
Project-URL: Bug reports, https://github.com/takagiy/strcuta-py/issues
Platform: UNKNOWN
Description-Content-Type: text/markdown

<!-- Copyright (C) Yuki Takagi 2020 -->
<!-- Distributed under the Boost Software License, Version 1.0. -->
<!-- (See accompanying file LICENSE_1_0.txt or copy at -->
<!-- https://www.boost.org/LICENSE_1_0.txt) -->

# strcuta - Loading UTAU voice banks into the Python data structure

## Little example

```python
from strcuta import voicebank

renri = voicebank.load("../闇音レンリ・連続音Ver1.5")
uta = renri.voice("u た", "F#5")

uta.write("uta_fs5.wav")
uta.ovl().write("uta_fs5_ovl.wav")
uta.pre().write("uta_fs5_pre.wav")
# fixed() or con()
uta.fixed().write("uta_fs5_vc-.wav")
# stretchable() or vow()
uta.stretchable().write("uta_fs5_-v.wav")

# play voice with the sounddevice package
uta.play()
uta.ovl().play()
```

Currently, `strcuta` can load -
  * `*.wav`
  * `*.frq`
  * `oto.ini`
  * `prefix.map`.


