-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy path__init__.py
More file actions
19 lines (16 loc) · 725 Bytes
/
__init__.py
File metadata and controls
19 lines (16 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""PyWorld is a Python wrapper for WORLD vocoder.
PyWorld wrappers WORLD, which is a free software for high-quality speech
analysis, manipulation and synthesis. It can estimate fundamental frequency (F0),
aperiodicity and spectral envelope and also generate the speech like input speech
with only estimated parameters.
For more information, see https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder
"""
from __future__ import division, print_function, absolute_import
import sys
if sys.version_info >= (3, 8):
from importlib.metadata import version
__version__ = version('pyworld')
else:
import pkg_resources
__version__ = pkg_resources.get_distribution('pyworld').version
from .pyworld import *