{"id":13594030,"url":"https://github.com/MycroftAI/mimic3","last_synced_at":"2025-04-09T05:32:47.662Z","repository":{"id":41151016,"uuid":"473784695","full_name":"MycroftAI/mimic3","owner":"MycroftAI","description":"A fast local neural text to speech engine for Mycroft","archived":false,"fork":false,"pushed_at":"2025-03-25T12:29:08.000Z","size":2107,"stargazers_count":1174,"open_issues_count":47,"forks_count":117,"subscribers_count":22,"default_branch":"master","last_synced_at":"2025-04-07T04:01:33.233Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MycroftAI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-24T21:53:08.000Z","updated_at":"2025-04-05T11:44:06.000Z","dependencies_parsed_at":"2024-01-14T04:37:25.760Z","dependency_job_id":"623322e9-911d-4ac3-9e04-d9438566124f","html_url":"https://github.com/MycroftAI/mimic3","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MycroftAI%2Fmimic3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MycroftAI%2Fmimic3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MycroftAI%2Fmimic3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MycroftAI%2Fmimic3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MycroftAI","download_url":"https://codeload.github.com/MycroftAI/mimic3/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247987056,"owners_count":21028891,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T16:01:27.803Z","updated_at":"2025-04-09T05:32:47.656Z","avatar_url":"https://github.com/MycroftAI.png","language":"Python","funding_links":[],"categories":["Python","3.4 Further Links on Audio Synthesis and Detection","others"],"sub_categories":["Difference between Watermarking and Cryptography"],"readme":"# ⚠️ This project is no longer actively maintained\n\nMycroft Mimic 3 is no longer maintained and may not work on your computer anymore. [Piper TTS](https://github.com/rhasspy/piper) is the spiritual successor to Mimic 3. \n\n# Mimic 3\n\n![mimic 3 mark 2](img/mimic3-hero.jpg)\n\nA fast and local neural text to speech system developed by [Mycroft](https://mycroft.ai/) for the [Mark II](https://mycroft.ai/product/mark-ii/).\n\n* [Available voices](https://github.com/MycroftAI/mimic3-voices)\n* [Documentation](https://mycroft-ai.gitbook.io/docs/mycroft-technologies/mimic-tts/coming-soon-mimic-3)\n* [How does it work?](https://mycroft-ai.gitbook.io/docs/mycroft-technologies/mimic-tts/coming-soon-mimic-3#how-it-works)\n\n\n## Quickstart\n\n### Mycroft TTS Plugin\n\n``` sh\n# Install system packages\nsudo apt-get install libespeak-ng1\n\n# Ensure that you're using the latest pip\nmycroft-pip install --upgrade pip\n\n# Install plugin\nmycroft-pip install mycroft-plugin-tts-mimic3[all]\n\n# Activate plugin\nmycroft-config set tts.module mimic3_tts_plug\n\n# Start mycroft\nmycroft-start all\n```\n\nSee [documentation](https://mycroft-ai.gitbook.io/docs/mycroft-technologies/mimic-tts/coming-soon-mimic-3#tts-plugin-for-mycroft-ai) for more details.\n\n\n### Web Server\n\n``` sh\nmkdir -p \"${HOME}/.local/share/mycroft/mimic3\"\nchmod a+rwx \"${HOME}/.local/share/mycroft/mimic3\"\ndocker run \\\n       -it \\\n       -p 59125:59125 \\\n       -v \"${HOME}/.local/share/mycroft/mimic3:/home/mimic3/.local/share/mycroft/mimic3\" \\\n       'mycroftai/mimic3'\n```\n\nVisit [http://localhost:59125](http://localhost:59125) or from another terminal:\n\n\n``` sh\ncurl -X POST --data 'Hello world.' --output - localhost:59125/api/tts | aplay\n\n```\n\nSee [documentation](https://mycroft-ai.gitbook.io/docs/mycroft-technologies/mimic-tts/coming-soon-mimic-3#web-server) for more details.\n\n\n### Command-Line Tool\n\n``` sh\n# Install system packages\nsudo apt-get install libespeak-ng1\n\n# Create virtual environment\npython3 -m venv .venv\nsource .venv/bin/activate\npip3 install --upgrade pip\n\npip3 install mycroft-mimic3-tts[all]\n```\n\nNow you can run:\n\n``` sh\nmimic3 'Hello world.' | aplay\n```\n\nUse `mimic3-server` and `mimic3 --remote ...` for repeated usage (much faster).\n\nSee [documentation](https://mycroft-ai.gitbook.io/docs/mycroft-technologies/mimic-tts/coming-soon-mimic-3#command-line-interface) for more details.\n\n\n---\n\n\n## License\n\nMimic 3 is available under the [AGPL v3 license](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMycroftAI%2Fmimic3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FMycroftAI%2Fmimic3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMycroftAI%2Fmimic3/lists"}