Skip to content

Commit

Permalink
Merge pull request #36 from axinc-ai/ailia_speech_voice_python
Browse files Browse the repository at this point in the history
Added python api for speech and voice
  • Loading branch information
kyakuno authored Sep 25, 2024
2 parents 5e0d992 + 4ea76cd commit c8252c6
Show file tree
Hide file tree
Showing 83 changed files with 10,692 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,15 @@ ailia Speech is a library for speech recognition. It uses ailia SDK and ailia.au

- [C++ API (EN)](https://axinc-ai.github.io/ailia-sdk/supplemental/speech/cpp/en/) [(JP)](https://axinc-ai.github.io/ailia-sdk/supplemental/speech/cpp/jp/)
- [Unity API (EN)](https://axinc-ai.github.io/ailia-sdk/supplemental/speech/unity/en/) [(JP)](https://axinc-ai.github.io/ailia-sdk/supplemental/speech/unity/jp/)
- [Python API (EN)](https://axinc-ai.github.io/ailia-sdk/supplemental/speech/python/en/)

### ailia Voice

ailia AI Voice is a library generating speech from text. Using ailia AI Voice, you can easily integrate AI powered text-to-speech into your applications.

- [C++ API (EN)](https://axinc-ai.github.io/ailia-sdk/supplemental/voice/cpp/en/) [(JP)](https://axinc-ai.github.io/ailia-sdk/supplemental/voice/cpp/jp/)
- [Unity API (EN)](https://axinc-ai.github.io/ailia-sdk/supplemental/voice/unity/en/) [(JP)](https://axinc-ai.github.io/ailia-sdk/supplemental/voice/unity/jp/)
- [Python API (EN)](https://axinc-ai.github.io/ailia-sdk/supplemental/voice/python/en/)

## Videos

Expand Down
16 changes: 16 additions & 0 deletions supplemental/speech/python/en/_sources/ailia_speech.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
ailia_speech package
==========================

Classes
-----------

.. autoclass:: ailia_speech.AiliaSpeechModel
:members:
:undoc-members:
:show-inheritance:

.. autoclass:: ailia_speech.Whisper
:special-members: __init__, __name__
:members:
:undoc-members:
:show-inheritance:
22 changes: 22 additions & 0 deletions supplemental/speech/python/en/_sources/index.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.. ailia documentation master file, created by
sphinx-quickstart on Tue Nov 30 14:55:08 2021.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
ailia Speech Python API document
=================================

.. toctree::
:maxdepth: 2
:caption: Contents:

Packages
==================

* :doc:`ailia_speech`

Indices and tables
==================

* :ref:`genindex`
* :ref:`search`
Loading

0 comments on commit c8252c6

Please sign in to comment.