{ "nbformat": 4, "nbformat_minor": 0, "metadata": { "colab": { "provenance": [], "gpuType": "T4" }, "kernelspec": { "name": "python3", "display_name": "Python 3" }, "language_info": { "name": "python" }, "accelerator": "GPU" }, "cells": [ { "cell_type": "markdown", "source": [ "\n", "\n", "### 🏷️ **Credits & License**\n", "\n", "* 🔗 [OmniVoice GitHub Repository](https://github.com/k2-fsa/OmniVoice)\n", "* 🤗 [OmniVoice on Hugging Face](https://huggingface.co/k2-fsa/OmniVoice)\n", "* 📄 **License**: Provided under the [Apache License 2.0\n", "](https://github.com/k2-fsa/OmniVoice/blob/master/LICENSE)\n", "\n", "\n", "\n", "### ⚠️ **Usage Disclaimer**\n", "\n", "Use of this voice cloning model is subject to strict ethical and legal standards. By using this tool, you agree **not to** engage in any of the following prohibited activities:\n", "\n", "* **Fraud or Deception**: Using cloned voices to create misleading or fraudulent content.\n", "* **Impersonation**: Replicating someone’s voice without their explicit permission, especially for malicious, harmful, or deceptive purposes.\n", "* **Illegal Activities**: Employing the model in any manner that violates local, national, or international laws and regulations.\n", "* **Harmful Content Generation**: Creating offensive, defamatory, or unethical material, including content that spreads misinformation or causes harm.\n", "\n", "> ⚖️ **Legal Responsibility**\n", "> The developers of this tool disclaim all liability for misuse. **Users bear full responsibility** for ensuring that their usage complies with all applicable laws, regulations, and ethical guidelines.\n", "\n", "\n" ], "metadata": { "id": "qIQGM5Ol0RcO" } }, { "cell_type": "code", "execution_count": 1, "metadata": { "cellView": "form", "id": "zuzodwStx020" }, "outputs": [], "source": [ "#@title Install OmniVoice\n", "%cd /content/\n", "!rm -rf ./omnivoice-colab\n", "!git clone https://github.com/NeuralFalconYT/omnivoice-colab.git\n", "%cd ./omnivoice-colab\n", "# !git clone https://github.com/k2-fsa/OmniVoice.git\n", "!git clone https://github.com/NeuralFalconYT/OmniVoice.git\n", "!pip install -r colab.txt\n", "# !pip install -r requirements.txt\n", "from IPython.display import clear_output\n", "clear_output()\n" ] }, { "cell_type": "code", "source": [ "#@title Run Gradio APP\n", "%cd /content/omnivoice-colab\n", "!python app.py" ], "metadata": { "id": "KN98TKw3y0Nx" }, "execution_count": null, "outputs": [] } ] }