rsxdalv commited on
Commit
0bbaeb6
·
verified ·
1 Parent(s): 8870ffb

add LICENSE and README.md

Browse files
Files changed (2) hide show
  1. LICENSE +7 -0
  2. README.md +70 -3
LICENSE ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Copyright 2024 MyShell.ai
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
README.md CHANGED
@@ -1,3 +1,70 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div align="center">
2
+ <div>&nbsp;</div>
3
+ <img src="resources/openvoicelogo.jpg" width="400"/>
4
+
5
+ [Paper](https://arxiv.org/abs/2312.01479) |
6
+ [Website](https://research.myshell.ai/open-voice) <br> <br>
7
+ <a href="https://trendshift.io/repositories/6161" target="_blank"><img src="https://trendshift.io/api/badge/repositories/6161" alt="myshell-ai%2FOpenVoice | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
8
+ </div>
9
+
10
+ ## Introduction
11
+
12
+ ### OpenVoice V1
13
+
14
+ As we detailed in our [paper](https://arxiv.org/abs/2312.01479) and [website](https://research.myshell.ai/open-voice), the advantages of OpenVoice are three-fold:
15
+
16
+ **1. Accurate Tone Color Cloning.**
17
+ OpenVoice can accurately clone the reference tone color and generate speech in multiple languages and accents.
18
+
19
+ **2. Flexible Voice Style Control.**
20
+ OpenVoice enables granular control over voice styles, such as emotion and accent, as well as other style parameters including rhythm, pauses, and intonation.
21
+
22
+ **3. Zero-shot Cross-lingual Voice Cloning.**
23
+ Neither of the language of the generated speech nor the language of the reference speech needs to be presented in the massive-speaker multi-lingual training dataset.
24
+
25
+ ### OpenVoice V2
26
+
27
+ In April 2024, we released OpenVoice V2, which includes all features in V1 and has:
28
+
29
+ **1. Better Audio Quality.**
30
+ OpenVoice V2 adopts a different training strategy that delivers better audio quality.
31
+
32
+ **2. Native Multi-lingual Support.**
33
+ English, Spanish, French, Chinese, Japanese and Korean are natively supported in OpenVoice V2.
34
+
35
+ **3. Free Commercial Use.**
36
+ Starting from April 2024, both V2 and V1 are released under MIT License. Free for commercial use.
37
+
38
+ [Video](https://github.com/myshell-ai/OpenVoice/assets/40556743/3cba936f-82bf-476c-9e52-09f0f417bb2f)
39
+
40
+ OpenVoice has been powering the instant voice cloning capability of [myshell.ai](https://app.myshell.ai/explore) since May 2023. Until Nov 2023, the voice cloning model has been used tens of millions of times by users worldwide, and witnessed the explosive user growth on the platform.
41
+
42
+ ## Main Contributors
43
+
44
+ - [Zengyi Qin](https://www.qinzy.tech) at MIT
45
+ - [Wenliang Zhao](https://wl-zhao.github.io) at Tsinghua University
46
+ - [Xumin Yu](https://yuxumin.github.io) at Tsinghua University
47
+ - [Ethan Sun](https://twitter.com/ethan_myshell) at MyShell
48
+
49
+ ## How to Use
50
+ Please see [usage](docs/USAGE.md) for detailed instructions.
51
+
52
+ ## Common Issues
53
+
54
+ Please see [QA](docs/QA.md) for common questions and answers. We will regularly update the question and answer list.
55
+
56
+ ## Citation
57
+ ```
58
+ @article{qin2023openvoice,
59
+ title={OpenVoice: Versatile Instant Voice Cloning},
60
+ author={Qin, Zengyi and Zhao, Wenliang and Yu, Xumin and Sun, Xin},
61
+ journal={arXiv preprint arXiv:2312.01479},
62
+ year={2023}
63
+ }
64
+ ```
65
+
66
+ ## License
67
+ OpenVoice V1 and V2 are MIT Licensed. Free for both commercial and research use.
68
+
69
+ ## Acknowledgements
70
+ This implementation is based on several excellent projects, [TTS](https://github.com/coqui-ai/TTS), [VITS](https://github.com/jaywalnut310/vits), and [VITS2](https://github.com/daniilrobnikov/vits2). Thanks for their awesome work!