{ "cells": [ { "cell_type": "markdown", "source": [ "# VOICEVOX" ], "metadata": { "id": "xzgajTTZZ26O" } }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "qz89S2nWWcmP" }, "outputs": [], "source": [ "!curl -sSfL https://github.com/VOICEVOX/voicevox_core/releases/download/0.15.9/download.sh --output download.sh" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "QlXxZiuxXYfv" }, "outputs": [], "source": [ "!chmod +x ./download.sh" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "pZfOp5fVXget" }, "outputs": [], "source": [ "!./download.sh --output voicevox_core --version 0.15.9" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "7MU5wC0UX6pp" }, "outputs": [], "source": [ "!git clone --branch release-0.24 https://github.com/VOICEVOX/voicevox_engine.git voicevox_engine" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "ZiWYu-TaX5o4" }, "outputs": [], "source": [ "!pip install --requirement voicevox_engine/requirements.txt" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "colab": { "background_save": true }, "id": "_agP6U7VafcG" }, "outputs": [], "source": [ "!python voicevox_engine/run.py --voicelib_dir voicevox_core --host 0.0.0.0 --port 7860 --cors_policy_mode all" ] }, { "cell_type": "markdown", "source": [ "# VOICEVOX Nemo" ], "metadata": { "id": "TEXnXlhTZ5eS" } }, { "cell_type": "code", "source": [ "!curl -sSfL https://github.com/VOICEVOX/voicevox_nemo_core/releases/download/0.15.0/download.sh --output download.sh" ], "metadata": { "id": "-uSYQJJmaCt7" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "!chmod +x ./download.sh" ], "metadata": { "id": "XV-6c7vPaNsz" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "!./download.sh --output voicevox_nemo_core --version 0.15.9" ], "metadata": { "id": "z0yQMh-saPpu" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "!git clone --branch release-0.24 https://github.com/VOICEVOX/voicevox_nemo_engine.git voicevox_nemo_engine" ], "metadata": { "id": "DiGMWqmAa_0N" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "!pip install --requirement voicevox_nemo_engine/requirements.txt" ], "metadata": { "id": "G9X4KZknbDrt" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "!python voicevox_nemo_engine/run.py --voicelib_dir voicevox_nemo_core --host 0.0.0.0 --port 7860 --cors_policy_mode all" ], "metadata": { "id": "zzX6VTBfbEnO" }, "execution_count": null, "outputs": [] } ], "metadata": { "colab": { "provenance": [] }, "kernelspec": { "display_name": "Python 3", "name": "python3" }, "language_info": { "name": "python" } }, "nbformat": 4, "nbformat_minor": 0 }