Spaces:
Configuration error
Configuration error
Upload 22 files
Browse files- LICENSE +201 -201
- README.md +345 -16
- app_rvc.py +0 -0
- mdx_models/data.json +353 -353
- requirements.txt +37 -19
- requirements_base.txt +15 -0
- requirements_extra.txt +19 -0
- requirements_xtts.txt +57 -57
- soni_translate/audio_segments.py +141 -141
- soni_translate/language_configuration.py +551 -551
- soni_translate/languages_gui.py +1 -1
- soni_translate/logging_setup.py +68 -68
- soni_translate/mdx_net.py +582 -594
- soni_translate/postprocessor.py +231 -231
- soni_translate/preprocessor.py +309 -309
- soni_translate/speech_segmentation.py +447 -499
- soni_translate/text_multiformat_processor.py +987 -987
- soni_translate/text_to_speech.py +0 -0
- soni_translate/translate_segments.py +457 -457
- soni_translate/utils.py +483 -487
- voice_main.py +732 -732
LICENSE
CHANGED
@@ -1,201 +1,201 @@
|
|
1 |
-
Apache License
|
2 |
-
Version 2.0, January 2004
|
3 |
-
http://www.apache.org/licenses/
|
4 |
-
|
5 |
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6 |
-
|
7 |
-
1. Definitions.
|
8 |
-
|
9 |
-
"License" shall mean the terms and conditions for use, reproduction,
|
10 |
-
and distribution as defined by Sections 1 through 9 of this document.
|
11 |
-
|
12 |
-
"Licensor" shall mean the copyright owner or entity authorized by
|
13 |
-
the copyright owner that is granting the License.
|
14 |
-
|
15 |
-
"Legal Entity" shall mean the union of the acting entity and all
|
16 |
-
other entities that control, are controlled by, or are under common
|
17 |
-
control with that entity. For the purposes of this definition,
|
18 |
-
"control" means (i) the power, direct or indirect, to cause the
|
19 |
-
direction or management of such entity, whether by contract or
|
20 |
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21 |
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
22 |
-
|
23 |
-
"You" (or "Your") shall mean an individual or Legal Entity
|
24 |
-
exercising permissions granted by this License.
|
25 |
-
|
26 |
-
"Source" form shall mean the preferred form for making modifications,
|
27 |
-
including but not limited to software source code, documentation
|
28 |
-
source, and configuration files.
|
29 |
-
|
30 |
-
"Object" form shall mean any form resulting from mechanical
|
31 |
-
transformation or translation of a Source form, including but
|
32 |
-
not limited to compiled object code, generated documentation,
|
33 |
-
and conversions to other media types.
|
34 |
-
|
35 |
-
"Work" shall mean the work of authorship, whether in Source or
|
36 |
-
Object form, made available under the License, as indicated by a
|
37 |
-
copyright notice that is included in or attached to the work
|
38 |
-
(an example is provided in the Appendix below).
|
39 |
-
|
40 |
-
"Derivative Works" shall mean any work, whether in Source or Object
|
41 |
-
form, that is based on (or derived from) the Work and for which the
|
42 |
-
editorial revisions, annotations, elaborations, or other modifications
|
43 |
-
represent, as a whole, an original work of authorship. For the purposes
|
44 |
-
of this License, Derivative Works shall not include works that remain
|
45 |
-
separable from, or merely link (or bind by name) to the interfaces of,
|
46 |
-
the Work and Derivative Works thereof.
|
47 |
-
|
48 |
-
"Contribution" shall mean any work of authorship, including
|
49 |
-
the original version of the Work and any modifications or additions
|
50 |
-
to that Work or Derivative Works thereof, that is intentionally
|
51 |
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
52 |
-
or by an individual or Legal Entity authorized to submit on behalf of
|
53 |
-
the copyright owner. For the purposes of this definition, "submitted"
|
54 |
-
means any form of electronic, verbal, or written communication sent
|
55 |
-
to the Licensor or its representatives, including but not limited to
|
56 |
-
communication on electronic mailing lists, source code control systems,
|
57 |
-
and issue tracking systems that are managed by, or on behalf of, the
|
58 |
-
Licensor for the purpose of discussing and improving the Work, but
|
59 |
-
excluding communication that is conspicuously marked or otherwise
|
60 |
-
designated in writing by the copyright owner as "Not a Contribution."
|
61 |
-
|
62 |
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63 |
-
on behalf of whom a Contribution has been received by Licensor and
|
64 |
-
subsequently incorporated within the Work.
|
65 |
-
|
66 |
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
67 |
-
this License, each Contributor hereby grants to You a perpetual,
|
68 |
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69 |
-
copyright license to reproduce, prepare Derivative Works of,
|
70 |
-
publicly display, publicly perform, sublicense, and distribute the
|
71 |
-
Work and such Derivative Works in Source or Object form.
|
72 |
-
|
73 |
-
3. Grant of Patent License. Subject to the terms and conditions of
|
74 |
-
this License, each Contributor hereby grants to You a perpetual,
|
75 |
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76 |
-
(except as stated in this section) patent license to make, have made,
|
77 |
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78 |
-
where such license applies only to those patent claims licensable
|
79 |
-
by such Contributor that are necessarily infringed by their
|
80 |
-
Contribution(s) alone or by combination of their Contribution(s)
|
81 |
-
with the Work to which such Contribution(s) was submitted. If You
|
82 |
-
institute patent litigation against any entity (including a
|
83 |
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84 |
-
or a Contribution incorporated within the Work constitutes direct
|
85 |
-
or contributory patent infringement, then any patent licenses
|
86 |
-
granted to You under this License for that Work shall terminate
|
87 |
-
as of the date such litigation is filed.
|
88 |
-
|
89 |
-
4. Redistribution. You may reproduce and distribute copies of the
|
90 |
-
Work or Derivative Works thereof in any medium, with or without
|
91 |
-
modifications, and in Source or Object form, provided that You
|
92 |
-
meet the following conditions:
|
93 |
-
|
94 |
-
(a) You must give any other recipients of the Work or
|
95 |
-
Derivative Works a copy of this License; and
|
96 |
-
|
97 |
-
(b) You must cause any modified files to carry prominent notices
|
98 |
-
stating that You changed the files; and
|
99 |
-
|
100 |
-
(c) You must retain, in the Source form of any Derivative Works
|
101 |
-
that You distribute, all copyright, patent, trademark, and
|
102 |
-
attribution notices from the Source form of the Work,
|
103 |
-
excluding those notices that do not pertain to any part of
|
104 |
-
the Derivative Works; and
|
105 |
-
|
106 |
-
(d) If the Work includes a "NOTICE" text file as part of its
|
107 |
-
distribution, then any Derivative Works that You distribute must
|
108 |
-
include a readable copy of the attribution notices contained
|
109 |
-
within such NOTICE file, excluding those notices that do not
|
110 |
-
pertain to any part of the Derivative Works, in at least one
|
111 |
-
of the following places: within a NOTICE text file distributed
|
112 |
-
as part of the Derivative Works; within the Source form or
|
113 |
-
documentation, if provided along with the Derivative Works; or,
|
114 |
-
within a display generated by the Derivative Works, if and
|
115 |
-
wherever such third-party notices normally appear. The contents
|
116 |
-
of the NOTICE file are for informational purposes only and
|
117 |
-
do not modify the License. You may add Your own attribution
|
118 |
-
notices within Derivative Works that You distribute, alongside
|
119 |
-
or as an addendum to the NOTICE text from the Work, provided
|
120 |
-
that such additional attribution notices cannot be construed
|
121 |
-
as modifying the License.
|
122 |
-
|
123 |
-
You may add Your own copyright statement to Your modifications and
|
124 |
-
may provide additional or different license terms and conditions
|
125 |
-
for use, reproduction, or distribution of Your modifications, or
|
126 |
-
for any such Derivative Works as a whole, provided Your use,
|
127 |
-
reproduction, and distribution of the Work otherwise complies with
|
128 |
-
the conditions stated in this License.
|
129 |
-
|
130 |
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131 |
-
any Contribution intentionally submitted for inclusion in the Work
|
132 |
-
by You to the Licensor shall be under the terms and conditions of
|
133 |
-
this License, without any additional terms or conditions.
|
134 |
-
Notwithstanding the above, nothing herein shall supersede or modify
|
135 |
-
the terms of any separate license agreement you may have executed
|
136 |
-
with Licensor regarding such Contributions.
|
137 |
-
|
138 |
-
6. Trademarks. This License does not grant permission to use the trade
|
139 |
-
names, trademarks, service marks, or product names of the Licensor,
|
140 |
-
except as required for reasonable and customary use in describing the
|
141 |
-
origin of the Work and reproducing the content of the NOTICE file.
|
142 |
-
|
143 |
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
144 |
-
agreed to in writing, Licensor provides the Work (and each
|
145 |
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146 |
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147 |
-
implied, including, without limitation, any warranties or conditions
|
148 |
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149 |
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150 |
-
appropriateness of using or redistributing the Work and assume any
|
151 |
-
risks associated with Your exercise of permissions under this License.
|
152 |
-
|
153 |
-
8. Limitation of Liability. In no event and under no legal theory,
|
154 |
-
whether in tort (including negligence), contract, or otherwise,
|
155 |
-
unless required by applicable law (such as deliberate and grossly
|
156 |
-
negligent acts) or agreed to in writing, shall any Contributor be
|
157 |
-
liable to You for damages, including any direct, indirect, special,
|
158 |
-
incidental, or consequential damages of any character arising as a
|
159 |
-
result of this License or out of the use or inability to use the
|
160 |
-
Work (including but not limited to damages for loss of goodwill,
|
161 |
-
work stoppage, computer failure or malfunction, or any and all
|
162 |
-
other commercial damages or losses), even if such Contributor
|
163 |
-
has been advised of the possibility of such damages.
|
164 |
-
|
165 |
-
9. Accepting Warranty or Additional Liability. While redistributing
|
166 |
-
the Work or Derivative Works thereof, You may choose to offer,
|
167 |
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
168 |
-
or other liability obligations and/or rights consistent with this
|
169 |
-
License. However, in accepting such obligations, You may act only
|
170 |
-
on Your own behalf and on Your sole responsibility, not on behalf
|
171 |
-
of any other Contributor, and only if You agree to indemnify,
|
172 |
-
defend, and hold each Contributor harmless for any liability
|
173 |
-
incurred by, or claims asserted against, such Contributor by reason
|
174 |
-
of your accepting any such warranty or additional liability.
|
175 |
-
|
176 |
-
END OF TERMS AND CONDITIONS
|
177 |
-
|
178 |
-
APPENDIX: How to apply the Apache License to your work.
|
179 |
-
|
180 |
-
To apply the Apache License to your work, attach the following
|
181 |
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
182 |
-
replaced with your own identifying information. (Don't include
|
183 |
-
the brackets!) The text should be enclosed in the appropriate
|
184 |
-
comment syntax for the file format. We also recommend that a
|
185 |
-
file or class name and description of purpose be included on the
|
186 |
-
same "printed page" as the copyright notice for easier
|
187 |
-
identification within third-party archives.
|
188 |
-
|
189 |
-
Copyright [yyyy] [name of copyright owner]
|
190 |
-
|
191 |
-
Licensed under the Apache License, Version 2.0 (the "License");
|
192 |
-
you may not use this file except in compliance with the License.
|
193 |
-
You may obtain a copy of the License at
|
194 |
-
|
195 |
-
http://www.apache.org/licenses/LICENSE-2.0
|
196 |
-
|
197 |
-
Unless required by applicable law or agreed to in writing, software
|
198 |
-
distributed under the License is distributed on an "AS IS" BASIS,
|
199 |
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200 |
-
See the License for the specific language governing permissions and
|
201 |
-
limitations under the License.
|
|
|
1 |
+
Apache License
|
2 |
+
Version 2.0, January 2004
|
3 |
+
http://www.apache.org/licenses/
|
4 |
+
|
5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6 |
+
|
7 |
+
1. Definitions.
|
8 |
+
|
9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
11 |
+
|
12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13 |
+
the copyright owner that is granting the License.
|
14 |
+
|
15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
16 |
+
other entities that control, are controlled by, or are under common
|
17 |
+
control with that entity. For the purposes of this definition,
|
18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
19 |
+
direction or management of such entity, whether by contract or
|
20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22 |
+
|
23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24 |
+
exercising permissions granted by this License.
|
25 |
+
|
26 |
+
"Source" form shall mean the preferred form for making modifications,
|
27 |
+
including but not limited to software source code, documentation
|
28 |
+
source, and configuration files.
|
29 |
+
|
30 |
+
"Object" form shall mean any form resulting from mechanical
|
31 |
+
transformation or translation of a Source form, including but
|
32 |
+
not limited to compiled object code, generated documentation,
|
33 |
+
and conversions to other media types.
|
34 |
+
|
35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
36 |
+
Object form, made available under the License, as indicated by a
|
37 |
+
copyright notice that is included in or attached to the work
|
38 |
+
(an example is provided in the Appendix below).
|
39 |
+
|
40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41 |
+
form, that is based on (or derived from) the Work and for which the
|
42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
44 |
+
of this License, Derivative Works shall not include works that remain
|
45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46 |
+
the Work and Derivative Works thereof.
|
47 |
+
|
48 |
+
"Contribution" shall mean any work of authorship, including
|
49 |
+
the original version of the Work and any modifications or additions
|
50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
54 |
+
means any form of electronic, verbal, or written communication sent
|
55 |
+
to the Licensor or its representatives, including but not limited to
|
56 |
+
communication on electronic mailing lists, source code control systems,
|
57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
59 |
+
excluding communication that is conspicuously marked or otherwise
|
60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
61 |
+
|
62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
64 |
+
subsequently incorporated within the Work.
|
65 |
+
|
66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
71 |
+
Work and such Derivative Works in Source or Object form.
|
72 |
+
|
73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76 |
+
(except as stated in this section) patent license to make, have made,
|
77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78 |
+
where such license applies only to those patent claims licensable
|
79 |
+
by such Contributor that are necessarily infringed by their
|
80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
82 |
+
institute patent litigation against any entity (including a
|
83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84 |
+
or a Contribution incorporated within the Work constitutes direct
|
85 |
+
or contributory patent infringement, then any patent licenses
|
86 |
+
granted to You under this License for that Work shall terminate
|
87 |
+
as of the date such litigation is filed.
|
88 |
+
|
89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
90 |
+
Work or Derivative Works thereof in any medium, with or without
|
91 |
+
modifications, and in Source or Object form, provided that You
|
92 |
+
meet the following conditions:
|
93 |
+
|
94 |
+
(a) You must give any other recipients of the Work or
|
95 |
+
Derivative Works a copy of this License; and
|
96 |
+
|
97 |
+
(b) You must cause any modified files to carry prominent notices
|
98 |
+
stating that You changed the files; and
|
99 |
+
|
100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
101 |
+
that You distribute, all copyright, patent, trademark, and
|
102 |
+
attribution notices from the Source form of the Work,
|
103 |
+
excluding those notices that do not pertain to any part of
|
104 |
+
the Derivative Works; and
|
105 |
+
|
106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107 |
+
distribution, then any Derivative Works that You distribute must
|
108 |
+
include a readable copy of the attribution notices contained
|
109 |
+
within such NOTICE file, excluding those notices that do not
|
110 |
+
pertain to any part of the Derivative Works, in at least one
|
111 |
+
of the following places: within a NOTICE text file distributed
|
112 |
+
as part of the Derivative Works; within the Source form or
|
113 |
+
documentation, if provided along with the Derivative Works; or,
|
114 |
+
within a display generated by the Derivative Works, if and
|
115 |
+
wherever such third-party notices normally appear. The contents
|
116 |
+
of the NOTICE file are for informational purposes only and
|
117 |
+
do not modify the License. You may add Your own attribution
|
118 |
+
notices within Derivative Works that You distribute, alongside
|
119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
120 |
+
that such additional attribution notices cannot be construed
|
121 |
+
as modifying the License.
|
122 |
+
|
123 |
+
You may add Your own copyright statement to Your modifications and
|
124 |
+
may provide additional or different license terms and conditions
|
125 |
+
for use, reproduction, or distribution of Your modifications, or
|
126 |
+
for any such Derivative Works as a whole, provided Your use,
|
127 |
+
reproduction, and distribution of the Work otherwise complies with
|
128 |
+
the conditions stated in this License.
|
129 |
+
|
130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
132 |
+
by You to the Licensor shall be under the terms and conditions of
|
133 |
+
this License, without any additional terms or conditions.
|
134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135 |
+
the terms of any separate license agreement you may have executed
|
136 |
+
with Licensor regarding such Contributions.
|
137 |
+
|
138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
140 |
+
except as required for reasonable and customary use in describing the
|
141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
142 |
+
|
143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144 |
+
agreed to in writing, Licensor provides the Work (and each
|
145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147 |
+
implied, including, without limitation, any warranties or conditions
|
148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150 |
+
appropriateness of using or redistributing the Work and assume any
|
151 |
+
risks associated with Your exercise of permissions under this License.
|
152 |
+
|
153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
154 |
+
whether in tort (including negligence), contract, or otherwise,
|
155 |
+
unless required by applicable law (such as deliberate and grossly
|
156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157 |
+
liable to You for damages, including any direct, indirect, special,
|
158 |
+
incidental, or consequential damages of any character arising as a
|
159 |
+
result of this License or out of the use or inability to use the
|
160 |
+
Work (including but not limited to damages for loss of goodwill,
|
161 |
+
work stoppage, computer failure or malfunction, or any and all
|
162 |
+
other commercial damages or losses), even if such Contributor
|
163 |
+
has been advised of the possibility of such damages.
|
164 |
+
|
165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168 |
+
or other liability obligations and/or rights consistent with this
|
169 |
+
License. However, in accepting such obligations, You may act only
|
170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171 |
+
of any other Contributor, and only if You agree to indemnify,
|
172 |
+
defend, and hold each Contributor harmless for any liability
|
173 |
+
incurred by, or claims asserted against, such Contributor by reason
|
174 |
+
of your accepting any such warranty or additional liability.
|
175 |
+
|
176 |
+
END OF TERMS AND CONDITIONS
|
177 |
+
|
178 |
+
APPENDIX: How to apply the Apache License to your work.
|
179 |
+
|
180 |
+
To apply the Apache License to your work, attach the following
|
181 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182 |
+
replaced with your own identifying information. (Don't include
|
183 |
+
the brackets!) The text should be enclosed in the appropriate
|
184 |
+
comment syntax for the file format. We also recommend that a
|
185 |
+
file or class name and description of purpose be included on the
|
186 |
+
same "printed page" as the copyright notice for easier
|
187 |
+
identification within third-party archives.
|
188 |
+
|
189 |
+
Copyright [yyyy] [name of copyright owner]
|
190 |
+
|
191 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192 |
+
you may not use this file except in compliance with the License.
|
193 |
+
You may obtain a copy of the License at
|
194 |
+
|
195 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
196 |
+
|
197 |
+
Unless required by applicable law or agreed to in writing, software
|
198 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200 |
+
See the License for the specific language governing permissions and
|
201 |
+
limitations under the License.
|
README.md
CHANGED
@@ -1,16 +1,345 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# 🎥 SoniTranslate 🈷️
|
2 |
+
|
3 |
+
🎬 Video Translation with Synchronized Audio 🌐
|
4 |
+
|
5 |
+
SonyTranslate is a powerful and user-friendly web application that allows you to easily translate videos into different languages. This repository hosts the code for the SonyTranslate web UI, which is built with the Gradio library to provide a seamless and interactive user experience.
|
6 |
+
|
7 |
+
|
8 |
+
| Description | Link |
|
9 |
+
| ----------- | ---- |
|
10 |
+
| 📙 Colab Notebook | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/R3gm/SoniTranslate/blob/main/SoniTranslate_Colab.ipynb) |
|
11 |
+
| 🎉 Repository | [![GitHub Repository](https://img.shields.io/badge/GitHub-Repository-black?style=flat-square&logo=github)](https://github.com/R3gm/SoniTranslate/) |
|
12 |
+
| 🚀 Online DEMO | [![Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/r3gm/SoniTranslate_translate_audio_of_a_video_content) |
|
13 |
+
|
14 |
+
## SonyTranslate's web UI, which features a browser interface built on the Gradio library.
|
15 |
+
![image](https://github.com/R3gm/SoniTranslate/assets/114810545/0d71fbf4-e9f0-4f8f-944e-8f3f1ea6a019)
|
16 |
+
|
17 |
+
## Using the project: A video guide
|
18 |
+
|
19 |
+
For a comprehensive understanding of the project, we highly recommend watching this video tutorial by [DEV-MalletteS](https://github.com/DEV-MalletteS). You can watch it on YouTube by clicking the thumbnail below:
|
20 |
+
|
21 |
+
[![Watch the video](https://img.youtube.com/vi/SmGkFaSzq_Q/0.jpg)](https://www.youtube.com/watch?v=SmGkFaSzq_Q)
|
22 |
+
|
23 |
+
|
24 |
+
## Supported languages for translation
|
25 |
+
|
26 |
+
| Language Code | Language |
|
27 |
+
|---------------|------------|
|
28 |
+
| en | English |
|
29 |
+
| fr | French |
|
30 |
+
| de | German |
|
31 |
+
| es | Spanish |
|
32 |
+
| it | Italian |
|
33 |
+
| ja | Japanese |
|
34 |
+
| nl | Dutch |
|
35 |
+
| uk | Ukrainian |
|
36 |
+
| pt | Portuguese |
|
37 |
+
| ar | Arabic |
|
38 |
+
| zh | Chinese - Simplified |
|
39 |
+
| zh-TW | Chinese - Traditional |
|
40 |
+
| cs | Czech |
|
41 |
+
| da | Danish |
|
42 |
+
| fi | Finnish |
|
43 |
+
| el | Greek |
|
44 |
+
| he | Hebrew |
|
45 |
+
| hu | Hungarian |
|
46 |
+
| ko | Korean |
|
47 |
+
| fa | Persian |
|
48 |
+
| pl | Polish |
|
49 |
+
| ru | Russian |
|
50 |
+
| tr | Turkish |
|
51 |
+
| ur | Urdu |
|
52 |
+
| hi | Hindi |
|
53 |
+
| vi | Vietnamese |
|
54 |
+
| id | Indonesian |
|
55 |
+
| bn | Bengali |
|
56 |
+
| te | Telugu |
|
57 |
+
| mr | Marathi |
|
58 |
+
| ta | Tamil |
|
59 |
+
| jw (or jv) | Javanese |
|
60 |
+
| ca | Catalan |
|
61 |
+
| ne | Nepali |
|
62 |
+
| th | Thai |
|
63 |
+
| sv | Swedish |
|
64 |
+
| am | Amharic |
|
65 |
+
| cy | Welsh |
|
66 |
+
| hr | Croatian |
|
67 |
+
| is | Icelandic |
|
68 |
+
| ka | Georgian |
|
69 |
+
| km | Khmer |
|
70 |
+
| sk | Slovak |
|
71 |
+
| sq | Albanian |
|
72 |
+
| sr | Serbian |
|
73 |
+
| az | Azerbaijani|
|
74 |
+
| bg | Bulgarian |
|
75 |
+
| gl | Galician |
|
76 |
+
| gu | Gujarati |
|
77 |
+
| kk | Kazakh |
|
78 |
+
| kn | Kannada |
|
79 |
+
| lt | Lithuanian |
|
80 |
+
| lv | Latvian |
|
81 |
+
| ml | Malayalam |
|
82 |
+
| ro | Romanian |
|
83 |
+
| si | Sinhala |
|
84 |
+
| su | Sundanese |
|
85 |
+
| et | Estonian |
|
86 |
+
| mk | Macedonian |
|
87 |
+
| sw | Swahili |
|
88 |
+
| af | Afrikaans |
|
89 |
+
| bs | Bosnian |
|
90 |
+
| la | Latin |
|
91 |
+
| my | Myanmar Burmese |
|
92 |
+
| no | Norwegian |
|
93 |
+
| as | Assamese |
|
94 |
+
| eu | Basque |
|
95 |
+
| ha | Hausa |
|
96 |
+
| ht | Haitian Creole |
|
97 |
+
| hy | Armenian |
|
98 |
+
| lo | Lao |
|
99 |
+
| mg | Malagasy |
|
100 |
+
| mn | Mongolian |
|
101 |
+
| mt | Maltese |
|
102 |
+
| pa | Punjabi |
|
103 |
+
| ps | Pashto |
|
104 |
+
| sl | Slovenian |
|
105 |
+
| sn | Shona |
|
106 |
+
| so | Somali |
|
107 |
+
| tg | Tajik |
|
108 |
+
| tk | Turkmen |
|
109 |
+
| tt | Tatar |
|
110 |
+
| uz | Uzbek |
|
111 |
+
| yo | Yoruba |
|
112 |
+
|
113 |
+
### Non-transcription
|
114 |
+
|
115 |
+
| Language Code | Language |
|
116 |
+
|---------------|------------|
|
117 |
+
| ay | Aymara |
|
118 |
+
| bm | Bambara |
|
119 |
+
| ceb | Cebuano |
|
120 |
+
| ny | Chichewa |
|
121 |
+
| dv | Divehi |
|
122 |
+
| doi | Dogri |
|
123 |
+
| ee | Ewe |
|
124 |
+
| gn | Guarani |
|
125 |
+
| ilo | Iloko |
|
126 |
+
| rw | Kinyarwanda|
|
127 |
+
| kri | Krio |
|
128 |
+
| ku | Kurdish |
|
129 |
+
| ky | Kirghiz |
|
130 |
+
| lg | Ganda |
|
131 |
+
| mai | Maithili |
|
132 |
+
| or | Oriya |
|
133 |
+
| om | Oromo |
|
134 |
+
| qu | Quechua |
|
135 |
+
| sm | Samoan |
|
136 |
+
| ti | Tigrinya |
|
137 |
+
| ts | Tsonga |
|
138 |
+
| ak | Akan |
|
139 |
+
| ug | Uighur |
|
140 |
+
|
141 |
+
## Example:
|
142 |
+
|
143 |
+
### Original audio
|
144 |
+
|
145 |
+
https://github.com/R3gm/SoniTranslate/assets/114810545/db9e78c0-b228-4e81-9704-e62d5cc407a3
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
### Translated audio
|
150 |
+
|
151 |
+
https://github.com/R3gm/SoniTranslate/assets/114810545/6a8ddc65-a46f-4653-9726-6df2615f0ef9
|
152 |
+
|
153 |
+
|
154 |
+
## Colab Runtime
|
155 |
+
|
156 |
+
To run SoniTranslate using Colab Runtime: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/R3gm/SoniTranslate/blob/main/SoniTranslate_Colab.ipynb)
|
157 |
+
|
158 |
+
## Install Locally (Installation tested in Linux)
|
159 |
+
|
160 |
+
### Before You Start
|
161 |
+
|
162 |
+
Before you start installing and using SoniTranslate, there are a few things you need to do:
|
163 |
+
|
164 |
+
1. Install the NVIDIA drivers for CUDA 11.8.0, NVIDIA CUDA is a parallel computing platform and programming model that enables developers to use the power of NVIDIA graphics processing units (GPUs) to speed up compute-intensive tasks. You can find the drivers [here](https://developer.nvidia.com/cuda-toolkit-archive). Follow the instructions on the website to download and install the drivers.
|
165 |
+
2. Accept the license agreement for using Pyannote. You need to have an account on Hugging Face and `accept the license to use the models`: https://huggingface.co/pyannote/speaker-diarization and https://huggingface.co/pyannote/segmentation
|
166 |
+
3. Create a [huggingface token](https://huggingface.co/settings/tokens). Hugging Face is a natural language processing platform that provides access to state-of-the-art models and tools. You will need to create a token in order to use some of the automatic model download features in SoniTranslate. Follow the instructions on the Hugging Face website to create a token.
|
167 |
+
4. Install [Anaconda](https://www.anaconda.com/) or [Miniconda](https://docs.anaconda.com/free/miniconda/miniconda-install/). Anaconda is a free and open-source distribution of Python and R. It includes a package manager called conda that makes it easy to install and manage Python environments and packages. Follow the instructions on the Anaconda website to download and install Anaconda on your system.
|
168 |
+
5. Install Git for your system. Git is a version control system that helps you track changes to your code and collaborate with other developers. You can install Git with Anaconda by running `conda install -c anaconda git -y` in your terminal (Do this after step 1 in the following section.). If you have trouble installing Git via Anaconda, you can use the following link instead:
|
169 |
+
- [Git for Linux](https://git-scm.com/download/linux)
|
170 |
+
|
171 |
+
Once you have completed these steps, you will be ready to install SoniTranslate.
|
172 |
+
|
173 |
+
### Getting Started
|
174 |
+
|
175 |
+
To install SoniTranslate, follow these steps:
|
176 |
+
|
177 |
+
1. Create a suitable anaconda environment for SoniTranslate and activate it:
|
178 |
+
|
179 |
+
```
|
180 |
+
conda create -n sonitr python=3.10 -y
|
181 |
+
conda activate sonitr
|
182 |
+
conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia
|
183 |
+
```
|
184 |
+
|
185 |
+
2. Clone this github repository and navigate to it:
|
186 |
+
```
|
187 |
+
git clone https://github.com/r3gm/SoniTranslate.git
|
188 |
+
cd SoniTranslate
|
189 |
+
```
|
190 |
+
|
191 |
+
3. Install required packages:
|
192 |
+
|
193 |
+
```
|
194 |
+
pip install -r requirements_base.txt -v
|
195 |
+
pip install -r requirements_extra.txt -v
|
196 |
+
pip install onnxruntime-gpu
|
197 |
+
```
|
198 |
+
|
199 |
+
4. Install [ffmpeg](https://ffmpeg.org/download.html). FFmpeg is a free software project that produces libraries and programs for handling multimedia data. You will need it to process audio and video files. You can install ffmpeg with Anaconda by running `conda install -y ffmpeg` in your terminal (recommended). If you have trouble installing ffmpeg via Anaconda, you can use the following link instead: (https://ffmpeg.org/ffmpeg.html). Once it is installed, make sure it is in your PATH by running `ffmpeg -h` in your terminal. If you don't get an error message, you're good to go.
|
200 |
+
|
201 |
+
5. Optional install:
|
202 |
+
|
203 |
+
After installing FFmpeg, you can install these optional packages.
|
204 |
+
|
205 |
+
|
206 |
+
[Piper TTS](https://github.com/rhasspy/piper) is a fast, local neural text to speech system that sounds great and is optimized for the Raspberry Pi 4. Piper is used in a variety of projects. Voices are trained with VITS and exported to the onnxruntime.
|
207 |
+
|
208 |
+
```
|
209 |
+
pip install -q piper-tts==1.2.0
|
210 |
+
```
|
211 |
+
|
212 |
+
[Coqui XTTS](https://github.com/coqui-ai/TTS) is a text-to-speech (TTS) model that lets you generate realistic voices in different languages. It can clone voices with just a short audio clip, even speak in a different language! It's like having a personal voice mimic for any text you need spoken.
|
213 |
+
|
214 |
+
```
|
215 |
+
pip install -q -r requirements_xtts.txt
|
216 |
+
pip install -q TTS==0.21.1 --no-deps
|
217 |
+
```
|
218 |
+
|
219 |
+
|
220 |
+
### Running SoniTranslate
|
221 |
+
|
222 |
+
To run SoniTranslate locally, make sure the `sonitr` conda environment is active:
|
223 |
+
|
224 |
+
```
|
225 |
+
conda activate sonitr
|
226 |
+
```
|
227 |
+
|
228 |
+
Setting your Hugging Face token as an environment variable in Linux:
|
229 |
+
|
230 |
+
```
|
231 |
+
export YOUR_HF_TOKEN="YOUR_HUGGING_FACE_TOKEN"
|
232 |
+
```
|
233 |
+
|
234 |
+
Then navigate to the `SoniTranslate` folder and run either the `app_rvc.py`
|
235 |
+
|
236 |
+
```
|
237 |
+
python app_rvc.py
|
238 |
+
```
|
239 |
+
When the `local URL` `http://127.0.0.1:7860` is displayed in the terminal, simply open this URL in your web browser to access the SoniTranslate interface.
|
240 |
+
|
241 |
+
### Stop and close SoniTranslate.
|
242 |
+
|
243 |
+
In most environments, you can stop the execution by pressing Ctrl+C in the terminal where you launched the script `app_rvc.py`. This will interrupt the program and stop the Gradio app.
|
244 |
+
To deactivate the Conda environment, you can use the following command:
|
245 |
+
|
246 |
+
```
|
247 |
+
conda deactivate
|
248 |
+
```
|
249 |
+
|
250 |
+
This will deactivate the currently active Conda environment sonitr, and you'll return to the base environment or the global Python environment.
|
251 |
+
|
252 |
+
### Starting Over
|
253 |
+
|
254 |
+
If you need to start over from scratch, you can delete the `SoniTranslate` folder and remove the `sonitr` conda environment with the following set of commands:
|
255 |
+
|
256 |
+
```
|
257 |
+
conda deactivate
|
258 |
+
conda env remove -n sonitr
|
259 |
+
```
|
260 |
+
|
261 |
+
With the `sonitr` environment removed, you can start over with a fresh installation.
|
262 |
+
|
263 |
+
## Command line arguments
|
264 |
+
|
265 |
+
The app_rvc.py script supports command-line arguments to customize its behavior. Here's a brief guide on how to use them:
|
266 |
+
|
267 |
+
| Argument command | Default | Value | Description |
|
268 |
+
|------------------|---------|-------|-------------|
|
269 |
+
| --theme | Taithrah/Minimal | String | Sets the theme for the interface. Themes can be found in the [Theme Gallery](https://huggingface.co/spaces/gradio/theme-gallery). |
|
270 |
+
| --language | english | String | Selects the interface language. Available options: afrikaans, arabic, azerbaijani, chinese_zh_cn, english, french, german, hindi, indonesian, italian, japanese, korean, marathi, persian, polish, portuguese, russian, spanish, swedish, turkish, ukrainian, vietnamese. |
|
271 |
+
| --verbosity_level| info | String | Sets the verbosity level of the logger: debug, info, warning, error, or critical. |
|
272 |
+
| --public_url | | Boolean | Enables a public link. |
|
273 |
+
| --cpu_mode | | Boolean | Enable CPU mode to run the program without utilizing GPU acceleration. |
|
274 |
+
| --logs_in_gui | | Boolean | Shows the operations performed in Logs (obsolete). |
|
275 |
+
|
276 |
+
Example usage:
|
277 |
+
```
|
278 |
+
python app_rvc.py --theme aliabid94/new-theme --language french
|
279 |
+
```
|
280 |
+
This command sets the theme to a custom theme and selects French as the interface language.
|
281 |
+
Feel free to customize these arguments according to your preferences and requirements.
|
282 |
+
|
283 |
+
## 📖 News
|
284 |
+
|
285 |
+
🔥 2024/18/05: New Update Details
|
286 |
+
- Added option Overlap Reduction
|
287 |
+
- OpenAI API Key Integration for Transcription, translation, and TTS
|
288 |
+
- More output types: subtitles by speaker, separate audio sound, and video only with subtitles
|
289 |
+
- Access to a better-performing version of Whisper for transcribing speech on the [Hugging Face Whisper page](https://huggingface.co/models?pipeline_tag=automatic-speech-recognition&sort=trending&search=whisper). Copy the repository ID and paste it into the 'Whisper ASR model' section in 'Advanced Settings'; e.g., `kotoba-tech/kotoba-whisper-v1.1` for Japanese transcription [available here](https://huggingface.co/kotoba-tech/kotoba-whisper-v1.1)
|
290 |
+
- Support for ASS subtitles and batch processing with subtitles
|
291 |
+
- Vocal enhancement before transcription
|
292 |
+
- Added CPU mode with `app_rvc.py --cpu_mode`
|
293 |
+
- TTS now supports up to 12 speakers
|
294 |
+
- OpenVoiceV2 integration for voice imitation
|
295 |
+
- PDF to videobook (displays images from the PDF)
|
296 |
+
- GUI language translation in Persian and Afrikaans
|
297 |
+
- **New Language Support**:
|
298 |
+
- **Complete support**: Estonian, Macedonian, Malay, Swahili, Afrikaans, Bosnian, Latin, Myanmar Burmese, Norwegian, Traditional Chinese, Assamese, Basque, Hausa, Haitian Creole, Armenian, Lao, Malagasy, Mongolian, Maltese, Punjabi, Pashto, Slovenian, Shona, Somali, Tajik, Turkmen, Tatar, Uzbek, and Yoruba
|
299 |
+
- **Non-transcription**: Aymara, Bambara, Cebuano, Chichewa, Divehi, Dogri, Ewe, Guarani, Iloko, Kinyarwanda, Krio, Kurdish, Kirghiz, Ganda, Maithili, Oriya, Oromo, Quechua, Samoan, Tigrinya, Tsonga, Akan, and Uighur
|
300 |
+
|
301 |
+
🔥 2024/03/02: Preserve file names in output. Multiple archives can now be submitted simultaneously by specifying their paths, directories or URLs separated by commas. Processing of a full YouTube playlist. About [supported sites URL](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md), please be aware that not all sites may work optimally. Added option for disabling diarization. Implemented soft subtitles. Format output (MP3, MP4, MKV, WAV, and OGG), and resolved issues related to file reading and diarization.
|
302 |
+
|
303 |
+
🔥 2024/02/22: Added freevc for voice imitation, fixed voiceless track, divide segments. New languages support (Swedish, Amharic, Welsh, Croatian, Icelandic, Georgian, Khmer, Slovak, Albanian, Serbian, Azerbaijani, Bulgarian, Galician, Gujarati, Kazakh, Kannada, Lithuanian, Latvian, Malayalam, Romanian, Sinhala and Sundanese). New translations of the GUI (Spanish, French, German, Italian, Japanese, Chinese Simplified, Ukrainian, Arabic, Russian, Turkish, Indonesian, Portuguese, Hindi, Vietnamese, Polish, Swedish, Korean, Marathi and Azerbaijani). With subtitle file, no align and the media file is not needed to process the SRT file. Burn subtitles to video. Queue can accept multiple tasks simultaneously. Sound alert notification. Continue process from last checkpoint. Acceleration rate regulation.
|
304 |
+
|
305 |
+
🔥 2024/01/16: Expanded language support (Thai, Nepali, Catalan, Javanese, Tamil, Marathi, Telugu, Bengali and Indonesian), the introduction of whisper large v3, configurable GUI options, integration of BARK, Facebook-mms, Coqui XTTS, and Piper-TTS. Additional features included audio separation utilities, XTTS WAV creation, use an SRT file as a base for translation, document translation, manual speaker editing, and flexible output options (video, audio, subtitles).
|
306 |
+
|
307 |
+
🔥 2023/10/29: Edit the translated subtitle, download it, adjust volume and speed options.
|
308 |
+
|
309 |
+
🔥 2023/08/03: Changed default options and added directory view of downloads.
|
310 |
+
|
311 |
+
🔥 2023/08/02: Added support for Arabic, Czech, Danish, Finnish, Greek, Hebrew, Hungarian, Korean, Persian, Polish, Russian, Turkish, Urdu, Hindi, and Vietnamese languages. 🌐
|
312 |
+
|
313 |
+
🔥 2023/08/01: Add options for use RVC models.
|
314 |
+
|
315 |
+
🔥 2023/07/27: Fix some bug processing the video and audio.
|
316 |
+
|
317 |
+
🔥 2023/07/26: New UI and add mix options.
|
318 |
+
|
319 |
+
|
320 |
+
## Contributing
|
321 |
+
|
322 |
+
Welcome to contributions from the community! If you have any ideas, bug reports, or feature requests, please open an issue or submit a pull request. For more information, please refer to the contribution guidelines.
|
323 |
+
|
324 |
+
## Credits
|
325 |
+
|
326 |
+
This project leverages a number of open-source projects. We would like to acknowledge and thank the contributors of the following repositories:
|
327 |
+
|
328 |
+
- [PyTorch](https://github.com/pytorch/pytorch)
|
329 |
+
- [yt-dlp](https://github.com/yt-dlp/yt-dlp)
|
330 |
+
- [Gradio](https://github.com/gradio-app/gradio)
|
331 |
+
- [edge-tts](https://github.com/rany2/edge-tts)
|
332 |
+
- [deep-translator](https://github.com/nidhaloff/deep-translator)
|
333 |
+
- [pyannote-audio](https://github.com/pyannote/pyannote-audio)
|
334 |
+
- [WhisperX](https://github.com/m-bain/whisperX)
|
335 |
+
- [faster-whisper](https://github.com/SYSTRAN/faster-whisper)
|
336 |
+
- [CTranslate2](https://github.com/OpenNMT/CTranslate2)
|
337 |
+
- [Transformers](https://github.com/huggingface/transformers)
|
338 |
+
- [FFmpeg](https://github.com/FFmpeg/FFmpeg)
|
339 |
+
- [Piper](https://github.com/rhasspy/piper)
|
340 |
+
- [Coqui TTS](https://github.com/coqui-ai/TTS)
|
341 |
+
- [pypdf](https://github.com/py-pdf/pypdf)
|
342 |
+
- [OpenVoice](https://github.com/myshell-ai/OpenVoice)
|
343 |
+
|
344 |
+
## License
|
345 |
+
Although the code is licensed under Apache 2, the models or weights may have commercial restrictions, as seen with pyannote diarization.
|
app_rvc.py
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
mdx_models/data.json
CHANGED
@@ -1,354 +1,354 @@
|
|
1 |
-
{
|
2 |
-
"0ddfc0eb5792638ad5dc27850236c246": {
|
3 |
-
"compensate": 1.035,
|
4 |
-
"mdx_dim_f_set": 2048,
|
5 |
-
"mdx_dim_t_set": 8,
|
6 |
-
"mdx_n_fft_scale_set": 6144,
|
7 |
-
"primary_stem": "Vocals"
|
8 |
-
},
|
9 |
-
"26d308f91f3423a67dc69a6d12a8793d": {
|
10 |
-
"compensate": 1.035,
|
11 |
-
"mdx_dim_f_set": 2048,
|
12 |
-
"mdx_dim_t_set": 9,
|
13 |
-
"mdx_n_fft_scale_set": 8192,
|
14 |
-
"primary_stem": "Other"
|
15 |
-
},
|
16 |
-
"2cdd429caac38f0194b133884160f2c6": {
|
17 |
-
"compensate": 1.045,
|
18 |
-
"mdx_dim_f_set": 3072,
|
19 |
-
"mdx_dim_t_set": 8,
|
20 |
-
"mdx_n_fft_scale_set": 7680,
|
21 |
-
"primary_stem": "Instrumental"
|
22 |
-
},
|
23 |
-
"2f5501189a2f6db6349916fabe8c90de": {
|
24 |
-
"compensate": 1.035,
|
25 |
-
"mdx_dim_f_set": 2048,
|
26 |
-
"mdx_dim_t_set": 8,
|
27 |
-
"mdx_n_fft_scale_set": 6144,
|
28 |
-
"primary_stem": "Vocals"
|
29 |
-
},
|
30 |
-
"398580b6d5d973af3120df54cee6759d": {
|
31 |
-
"compensate": 1.75,
|
32 |
-
"mdx_dim_f_set": 3072,
|
33 |
-
"mdx_dim_t_set": 8,
|
34 |
-
"mdx_n_fft_scale_set": 7680,
|
35 |
-
"primary_stem": "Vocals"
|
36 |
-
},
|
37 |
-
"488b3e6f8bd3717d9d7c428476be2d75": {
|
38 |
-
"compensate": 1.035,
|
39 |
-
"mdx_dim_f_set": 3072,
|
40 |
-
"mdx_dim_t_set": 8,
|
41 |
-
"mdx_n_fft_scale_set": 7680,
|
42 |
-
"primary_stem": "Instrumental"
|
43 |
-
},
|
44 |
-
"4910e7827f335048bdac11fa967772f9": {
|
45 |
-
"compensate": 1.035,
|
46 |
-
"mdx_dim_f_set": 2048,
|
47 |
-
"mdx_dim_t_set": 7,
|
48 |
-
"mdx_n_fft_scale_set": 4096,
|
49 |
-
"primary_stem": "Drums"
|
50 |
-
},
|
51 |
-
"53c4baf4d12c3e6c3831bb8f5b532b93": {
|
52 |
-
"compensate": 1.043,
|
53 |
-
"mdx_dim_f_set": 3072,
|
54 |
-
"mdx_dim_t_set": 8,
|
55 |
-
"mdx_n_fft_scale_set": 7680,
|
56 |
-
"primary_stem": "Vocals"
|
57 |
-
},
|
58 |
-
"5d343409ef0df48c7d78cce9f0106781": {
|
59 |
-
"compensate": 1.075,
|
60 |
-
"mdx_dim_f_set": 3072,
|
61 |
-
"mdx_dim_t_set": 8,
|
62 |
-
"mdx_n_fft_scale_set": 7680,
|
63 |
-
"primary_stem": "Vocals"
|
64 |
-
},
|
65 |
-
"5f6483271e1efb9bfb59e4a3e6d4d098": {
|
66 |
-
"compensate": 1.035,
|
67 |
-
"mdx_dim_f_set": 2048,
|
68 |
-
"mdx_dim_t_set": 9,
|
69 |
-
"mdx_n_fft_scale_set": 6144,
|
70 |
-
"primary_stem": "Vocals"
|
71 |
-
},
|
72 |
-
"65ab5919372a128e4167f5e01a8fda85": {
|
73 |
-
"compensate": 1.035,
|
74 |
-
"mdx_dim_f_set": 2048,
|
75 |
-
"mdx_dim_t_set": 8,
|
76 |
-
"mdx_n_fft_scale_set": 8192,
|
77 |
-
"primary_stem": "Other"
|
78 |
-
},
|
79 |
-
"6703e39f36f18aa7855ee1047765621d": {
|
80 |
-
"compensate": 1.035,
|
81 |
-
"mdx_dim_f_set": 2048,
|
82 |
-
"mdx_dim_t_set": 9,
|
83 |
-
"mdx_n_fft_scale_set": 16384,
|
84 |
-
"primary_stem": "Bass"
|
85 |
-
},
|
86 |
-
"6b31de20e84392859a3d09d43f089515": {
|
87 |
-
"compensate": 1.035,
|
88 |
-
"mdx_dim_f_set": 2048,
|
89 |
-
"mdx_dim_t_set": 8,
|
90 |
-
"mdx_n_fft_scale_set": 6144,
|
91 |
-
"primary_stem": "Vocals"
|
92 |
-
},
|
93 |
-
"867595e9de46f6ab699008295df62798": {
|
94 |
-
"compensate": 1.03,
|
95 |
-
"mdx_dim_f_set": 3072,
|
96 |
-
"mdx_dim_t_set": 8,
|
97 |
-
"mdx_n_fft_scale_set": 7680,
|
98 |
-
"primary_stem": "Vocals"
|
99 |
-
},
|
100 |
-
"a3cd63058945e777505c01d2507daf37": {
|
101 |
-
"compensate": 1.03,
|
102 |
-
"mdx_dim_f_set": 2048,
|
103 |
-
"mdx_dim_t_set": 8,
|
104 |
-
"mdx_n_fft_scale_set": 6144,
|
105 |
-
"primary_stem": "Vocals"
|
106 |
-
},
|
107 |
-
"b33d9b3950b6cbf5fe90a32608924700": {
|
108 |
-
"compensate": 1.03,
|
109 |
-
"mdx_dim_f_set": 3072,
|
110 |
-
"mdx_dim_t_set": 8,
|
111 |
-
"mdx_n_fft_scale_set": 7680,
|
112 |
-
"primary_stem": "Vocals"
|
113 |
-
},
|
114 |
-
"c3b29bdce8c4fa17ec609e16220330ab": {
|
115 |
-
"compensate": 1.035,
|
116 |
-
"mdx_dim_f_set": 2048,
|
117 |
-
"mdx_dim_t_set": 8,
|
118 |
-
"mdx_n_fft_scale_set": 16384,
|
119 |
-
"primary_stem": "Bass"
|
120 |
-
},
|
121 |
-
"ceed671467c1f64ebdfac8a2490d0d52": {
|
122 |
-
"compensate": 1.035,
|
123 |
-
"mdx_dim_f_set": 3072,
|
124 |
-
"mdx_dim_t_set": 8,
|
125 |
-
"mdx_n_fft_scale_set": 7680,
|
126 |
-
"primary_stem": "Instrumental"
|
127 |
-
},
|
128 |
-
"d2a1376f310e4f7fa37fb9b5774eb701": {
|
129 |
-
"compensate": 1.035,
|
130 |
-
"mdx_dim_f_set": 3072,
|
131 |
-
"mdx_dim_t_set": 8,
|
132 |
-
"mdx_n_fft_scale_set": 7680,
|
133 |
-
"primary_stem": "Instrumental"
|
134 |
-
},
|
135 |
-
"d7bff498db9324db933d913388cba6be": {
|
136 |
-
"compensate": 1.035,
|
137 |
-
"mdx_dim_f_set": 2048,
|
138 |
-
"mdx_dim_t_set": 8,
|
139 |
-
"mdx_n_fft_scale_set": 6144,
|
140 |
-
"primary_stem": "Vocals"
|
141 |
-
},
|
142 |
-
"d94058f8c7f1fae4164868ae8ae66b20": {
|
143 |
-
"compensate": 1.035,
|
144 |
-
"mdx_dim_f_set": 2048,
|
145 |
-
"mdx_dim_t_set": 8,
|
146 |
-
"mdx_n_fft_scale_set": 6144,
|
147 |
-
"primary_stem": "Vocals"
|
148 |
-
},
|
149 |
-
"dc41ede5961d50f277eb846db17f5319": {
|
150 |
-
"compensate": 1.035,
|
151 |
-
"mdx_dim_f_set": 2048,
|
152 |
-
"mdx_dim_t_set": 9,
|
153 |
-
"mdx_n_fft_scale_set": 4096,
|
154 |
-
"primary_stem": "Drums"
|
155 |
-
},
|
156 |
-
"e5572e58abf111f80d8241d2e44e7fa4": {
|
157 |
-
"compensate": 1.028,
|
158 |
-
"mdx_dim_f_set": 3072,
|
159 |
-
"mdx_dim_t_set": 8,
|
160 |
-
"mdx_n_fft_scale_set": 7680,
|
161 |
-
"primary_stem": "Instrumental"
|
162 |
-
},
|
163 |
-
"e7324c873b1f615c35c1967f912db92a": {
|
164 |
-
"compensate": 1.03,
|
165 |
-
"mdx_dim_f_set": 3072,
|
166 |
-
"mdx_dim_t_set": 8,
|
167 |
-
"mdx_n_fft_scale_set": 7680,
|
168 |
-
"primary_stem": "Vocals"
|
169 |
-
},
|
170 |
-
"1c56ec0224f1d559c42fd6fd2a67b154": {
|
171 |
-
"compensate": 1.025,
|
172 |
-
"mdx_dim_f_set": 2048,
|
173 |
-
"mdx_dim_t_set": 8,
|
174 |
-
"mdx_n_fft_scale_set": 5120,
|
175 |
-
"primary_stem": "Instrumental"
|
176 |
-
},
|
177 |
-
"f2df6d6863d8f435436d8b561594ff49": {
|
178 |
-
"compensate": 1.035,
|
179 |
-
"mdx_dim_f_set": 3072,
|
180 |
-
"mdx_dim_t_set": 8,
|
181 |
-
"mdx_n_fft_scale_set": 7680,
|
182 |
-
"primary_stem": "Instrumental"
|
183 |
-
},
|
184 |
-
"b06327a00d5e5fbc7d96e1781bbdb596": {
|
185 |
-
"compensate": 1.035,
|
186 |
-
"mdx_dim_f_set": 3072,
|
187 |
-
"mdx_dim_t_set": 8,
|
188 |
-
"mdx_n_fft_scale_set": 6144,
|
189 |
-
"primary_stem": "Instrumental"
|
190 |
-
},
|
191 |
-
"94ff780b977d3ca07c7a343dab2e25dd": {
|
192 |
-
"compensate": 1.039,
|
193 |
-
"mdx_dim_f_set": 3072,
|
194 |
-
"mdx_dim_t_set": 8,
|
195 |
-
"mdx_n_fft_scale_set": 6144,
|
196 |
-
"primary_stem": "Instrumental"
|
197 |
-
},
|
198 |
-
"73492b58195c3b52d34590d5474452f6": {
|
199 |
-
"compensate": 1.043,
|
200 |
-
"mdx_dim_f_set": 3072,
|
201 |
-
"mdx_dim_t_set": 8,
|
202 |
-
"mdx_n_fft_scale_set": 7680,
|
203 |
-
"primary_stem": "Vocals"
|
204 |
-
},
|
205 |
-
"970b3f9492014d18fefeedfe4773cb42": {
|
206 |
-
"compensate": 1.009,
|
207 |
-
"mdx_dim_f_set": 3072,
|
208 |
-
"mdx_dim_t_set": 8,
|
209 |
-
"mdx_n_fft_scale_set": 7680,
|
210 |
-
"primary_stem": "Vocals"
|
211 |
-
},
|
212 |
-
"1d64a6d2c30f709b8c9b4ce1366d96ee": {
|
213 |
-
"compensate": 1.035,
|
214 |
-
"mdx_dim_f_set": 2048,
|
215 |
-
"mdx_dim_t_set": 8,
|
216 |
-
"mdx_n_fft_scale_set": 5120,
|
217 |
-
"primary_stem": "Instrumental"
|
218 |
-
},
|
219 |
-
"203f2a3955221b64df85a41af87cf8f0": {
|
220 |
-
"compensate": 1.035,
|
221 |
-
"mdx_dim_f_set": 3072,
|
222 |
-
"mdx_dim_t_set": 8,
|
223 |
-
"mdx_n_fft_scale_set": 6144,
|
224 |
-
"primary_stem": "Instrumental"
|
225 |
-
},
|
226 |
-
"291c2049608edb52648b96e27eb80e95": {
|
227 |
-
"compensate": 1.035,
|
228 |
-
"mdx_dim_f_set": 3072,
|
229 |
-
"mdx_dim_t_set": 8,
|
230 |
-
"mdx_n_fft_scale_set": 6144,
|
231 |
-
"primary_stem": "Instrumental"
|
232 |
-
},
|
233 |
-
"ead8d05dab12ec571d67549b3aab03fc": {
|
234 |
-
"compensate": 1.035,
|
235 |
-
"mdx_dim_f_set": 3072,
|
236 |
-
"mdx_dim_t_set": 8,
|
237 |
-
"mdx_n_fft_scale_set": 6144,
|
238 |
-
"primary_stem": "Instrumental"
|
239 |
-
},
|
240 |
-
"cc63408db3d80b4d85b0287d1d7c9632": {
|
241 |
-
"compensate": 1.033,
|
242 |
-
"mdx_dim_f_set": 3072,
|
243 |
-
"mdx_dim_t_set": 8,
|
244 |
-
"mdx_n_fft_scale_set": 6144,
|
245 |
-
"primary_stem": "Instrumental"
|
246 |
-
},
|
247 |
-
"cd5b2989ad863f116c855db1dfe24e39": {
|
248 |
-
"compensate": 1.035,
|
249 |
-
"mdx_dim_f_set": 3072,
|
250 |
-
"mdx_dim_t_set": 9,
|
251 |
-
"mdx_n_fft_scale_set": 6144,
|
252 |
-
"primary_stem": "Other"
|
253 |
-
},
|
254 |
-
"55657dd70583b0fedfba5f67df11d711": {
|
255 |
-
"compensate": 1.022,
|
256 |
-
"mdx_dim_f_set": 3072,
|
257 |
-
"mdx_dim_t_set": 8,
|
258 |
-
"mdx_n_fft_scale_set": 6144,
|
259 |
-
"primary_stem": "Instrumental"
|
260 |
-
},
|
261 |
-
"b6bccda408a436db8500083ef3491e8b": {
|
262 |
-
"compensate": 1.02,
|
263 |
-
"mdx_dim_f_set": 3072,
|
264 |
-
"mdx_dim_t_set": 8,
|
265 |
-
"mdx_n_fft_scale_set": 7680,
|
266 |
-
"primary_stem": "Instrumental"
|
267 |
-
},
|
268 |
-
"8a88db95c7fb5dbe6a095ff2ffb428b1": {
|
269 |
-
"compensate": 1.026,
|
270 |
-
"mdx_dim_f_set": 2048,
|
271 |
-
"mdx_dim_t_set": 8,
|
272 |
-
"mdx_n_fft_scale_set": 5120,
|
273 |
-
"primary_stem": "Instrumental"
|
274 |
-
},
|
275 |
-
"b78da4afc6512f98e4756f5977f5c6b9": {
|
276 |
-
"compensate": 1.021,
|
277 |
-
"mdx_dim_f_set": 3072,
|
278 |
-
"mdx_dim_t_set": 8,
|
279 |
-
"mdx_n_fft_scale_set": 7680,
|
280 |
-
"primary_stem": "Instrumental"
|
281 |
-
},
|
282 |
-
"77d07b2667ddf05b9e3175941b4454a0": {
|
283 |
-
"compensate": 1.021,
|
284 |
-
"mdx_dim_f_set": 3072,
|
285 |
-
"mdx_dim_t_set": 8,
|
286 |
-
"mdx_n_fft_scale_set": 7680,
|
287 |
-
"primary_stem": "Vocals"
|
288 |
-
},
|
289 |
-
"0f2a6bc5b49d87d64728ee40e23bceb1": {
|
290 |
-
"compensate": 1.019,
|
291 |
-
"mdx_dim_f_set": 2560,
|
292 |
-
"mdx_dim_t_set": 8,
|
293 |
-
"mdx_n_fft_scale_set": 5120,
|
294 |
-
"primary_stem": "Instrumental"
|
295 |
-
},
|
296 |
-
"b02be2d198d4968a121030cf8950b492": {
|
297 |
-
"compensate": 1.020,
|
298 |
-
"mdx_dim_f_set": 2560,
|
299 |
-
"mdx_dim_t_set": 8,
|
300 |
-
"mdx_n_fft_scale_set": 5120,
|
301 |
-
"primary_stem": "No Crowd"
|
302 |
-
},
|
303 |
-
"2154254ee89b2945b97a7efed6e88820": {
|
304 |
-
"config_yaml": "model_2_stem_061321.yaml"
|
305 |
-
},
|
306 |
-
"063aadd735d58150722926dcbf5852a9": {
|
307 |
-
"config_yaml": "model_2_stem_061321.yaml"
|
308 |
-
},
|
309 |
-
"fe96801369f6a148df2720f5ced88c19": {
|
310 |
-
"config_yaml": "model3.yaml"
|
311 |
-
},
|
312 |
-
"02e8b226f85fb566e5db894b9931c640": {
|
313 |
-
"config_yaml": "model2.yaml"
|
314 |
-
},
|
315 |
-
"e3de6d861635ab9c1d766149edd680d6": {
|
316 |
-
"config_yaml": "model1.yaml"
|
317 |
-
},
|
318 |
-
"3f2936c554ab73ce2e396d54636bd373": {
|
319 |
-
"config_yaml": "modelB.yaml"
|
320 |
-
},
|
321 |
-
"890d0f6f82d7574bca741a9e8bcb8168": {
|
322 |
-
"config_yaml": "modelB.yaml"
|
323 |
-
},
|
324 |
-
"63a3cb8c37c474681049be4ad1ba8815": {
|
325 |
-
"config_yaml": "modelB.yaml"
|
326 |
-
},
|
327 |
-
"a7fc5d719743c7fd6b61bd2b4d48b9f0": {
|
328 |
-
"config_yaml": "modelA.yaml"
|
329 |
-
},
|
330 |
-
"3567f3dee6e77bf366fcb1c7b8bc3745": {
|
331 |
-
"config_yaml": "modelA.yaml"
|
332 |
-
},
|
333 |
-
"a28f4d717bd0d34cd2ff7a3b0a3d065e": {
|
334 |
-
"config_yaml": "modelA.yaml"
|
335 |
-
},
|
336 |
-
"c9971a18da20911822593dc81caa8be9": {
|
337 |
-
"config_yaml": "sndfx.yaml"
|
338 |
-
},
|
339 |
-
"57d94d5ed705460d21c75a5ac829a605": {
|
340 |
-
"config_yaml": "sndfx.yaml"
|
341 |
-
},
|
342 |
-
"e7a25f8764f25a52c1b96c4946e66ba2": {
|
343 |
-
"config_yaml": "sndfx.yaml"
|
344 |
-
},
|
345 |
-
"104081d24e37217086ce5fde09147ee1": {
|
346 |
-
"config_yaml": "model_2_stem_061321.yaml"
|
347 |
-
},
|
348 |
-
"1e6165b601539f38d0a9330f3facffeb": {
|
349 |
-
"config_yaml": "model_2_stem_061321.yaml"
|
350 |
-
},
|
351 |
-
"fe0108464ce0d8271be5ab810891bd7c": {
|
352 |
-
"config_yaml": "model_2_stem_full_band.yaml"
|
353 |
-
}
|
354 |
}
|
|
|
1 |
+
{
|
2 |
+
"0ddfc0eb5792638ad5dc27850236c246": {
|
3 |
+
"compensate": 1.035,
|
4 |
+
"mdx_dim_f_set": 2048,
|
5 |
+
"mdx_dim_t_set": 8,
|
6 |
+
"mdx_n_fft_scale_set": 6144,
|
7 |
+
"primary_stem": "Vocals"
|
8 |
+
},
|
9 |
+
"26d308f91f3423a67dc69a6d12a8793d": {
|
10 |
+
"compensate": 1.035,
|
11 |
+
"mdx_dim_f_set": 2048,
|
12 |
+
"mdx_dim_t_set": 9,
|
13 |
+
"mdx_n_fft_scale_set": 8192,
|
14 |
+
"primary_stem": "Other"
|
15 |
+
},
|
16 |
+
"2cdd429caac38f0194b133884160f2c6": {
|
17 |
+
"compensate": 1.045,
|
18 |
+
"mdx_dim_f_set": 3072,
|
19 |
+
"mdx_dim_t_set": 8,
|
20 |
+
"mdx_n_fft_scale_set": 7680,
|
21 |
+
"primary_stem": "Instrumental"
|
22 |
+
},
|
23 |
+
"2f5501189a2f6db6349916fabe8c90de": {
|
24 |
+
"compensate": 1.035,
|
25 |
+
"mdx_dim_f_set": 2048,
|
26 |
+
"mdx_dim_t_set": 8,
|
27 |
+
"mdx_n_fft_scale_set": 6144,
|
28 |
+
"primary_stem": "Vocals"
|
29 |
+
},
|
30 |
+
"398580b6d5d973af3120df54cee6759d": {
|
31 |
+
"compensate": 1.75,
|
32 |
+
"mdx_dim_f_set": 3072,
|
33 |
+
"mdx_dim_t_set": 8,
|
34 |
+
"mdx_n_fft_scale_set": 7680,
|
35 |
+
"primary_stem": "Vocals"
|
36 |
+
},
|
37 |
+
"488b3e6f8bd3717d9d7c428476be2d75": {
|
38 |
+
"compensate": 1.035,
|
39 |
+
"mdx_dim_f_set": 3072,
|
40 |
+
"mdx_dim_t_set": 8,
|
41 |
+
"mdx_n_fft_scale_set": 7680,
|
42 |
+
"primary_stem": "Instrumental"
|
43 |
+
},
|
44 |
+
"4910e7827f335048bdac11fa967772f9": {
|
45 |
+
"compensate": 1.035,
|
46 |
+
"mdx_dim_f_set": 2048,
|
47 |
+
"mdx_dim_t_set": 7,
|
48 |
+
"mdx_n_fft_scale_set": 4096,
|
49 |
+
"primary_stem": "Drums"
|
50 |
+
},
|
51 |
+
"53c4baf4d12c3e6c3831bb8f5b532b93": {
|
52 |
+
"compensate": 1.043,
|
53 |
+
"mdx_dim_f_set": 3072,
|
54 |
+
"mdx_dim_t_set": 8,
|
55 |
+
"mdx_n_fft_scale_set": 7680,
|
56 |
+
"primary_stem": "Vocals"
|
57 |
+
},
|
58 |
+
"5d343409ef0df48c7d78cce9f0106781": {
|
59 |
+
"compensate": 1.075,
|
60 |
+
"mdx_dim_f_set": 3072,
|
61 |
+
"mdx_dim_t_set": 8,
|
62 |
+
"mdx_n_fft_scale_set": 7680,
|
63 |
+
"primary_stem": "Vocals"
|
64 |
+
},
|
65 |
+
"5f6483271e1efb9bfb59e4a3e6d4d098": {
|
66 |
+
"compensate": 1.035,
|
67 |
+
"mdx_dim_f_set": 2048,
|
68 |
+
"mdx_dim_t_set": 9,
|
69 |
+
"mdx_n_fft_scale_set": 6144,
|
70 |
+
"primary_stem": "Vocals"
|
71 |
+
},
|
72 |
+
"65ab5919372a128e4167f5e01a8fda85": {
|
73 |
+
"compensate": 1.035,
|
74 |
+
"mdx_dim_f_set": 2048,
|
75 |
+
"mdx_dim_t_set": 8,
|
76 |
+
"mdx_n_fft_scale_set": 8192,
|
77 |
+
"primary_stem": "Other"
|
78 |
+
},
|
79 |
+
"6703e39f36f18aa7855ee1047765621d": {
|
80 |
+
"compensate": 1.035,
|
81 |
+
"mdx_dim_f_set": 2048,
|
82 |
+
"mdx_dim_t_set": 9,
|
83 |
+
"mdx_n_fft_scale_set": 16384,
|
84 |
+
"primary_stem": "Bass"
|
85 |
+
},
|
86 |
+
"6b31de20e84392859a3d09d43f089515": {
|
87 |
+
"compensate": 1.035,
|
88 |
+
"mdx_dim_f_set": 2048,
|
89 |
+
"mdx_dim_t_set": 8,
|
90 |
+
"mdx_n_fft_scale_set": 6144,
|
91 |
+
"primary_stem": "Vocals"
|
92 |
+
},
|
93 |
+
"867595e9de46f6ab699008295df62798": {
|
94 |
+
"compensate": 1.03,
|
95 |
+
"mdx_dim_f_set": 3072,
|
96 |
+
"mdx_dim_t_set": 8,
|
97 |
+
"mdx_n_fft_scale_set": 7680,
|
98 |
+
"primary_stem": "Vocals"
|
99 |
+
},
|
100 |
+
"a3cd63058945e777505c01d2507daf37": {
|
101 |
+
"compensate": 1.03,
|
102 |
+
"mdx_dim_f_set": 2048,
|
103 |
+
"mdx_dim_t_set": 8,
|
104 |
+
"mdx_n_fft_scale_set": 6144,
|
105 |
+
"primary_stem": "Vocals"
|
106 |
+
},
|
107 |
+
"b33d9b3950b6cbf5fe90a32608924700": {
|
108 |
+
"compensate": 1.03,
|
109 |
+
"mdx_dim_f_set": 3072,
|
110 |
+
"mdx_dim_t_set": 8,
|
111 |
+
"mdx_n_fft_scale_set": 7680,
|
112 |
+
"primary_stem": "Vocals"
|
113 |
+
},
|
114 |
+
"c3b29bdce8c4fa17ec609e16220330ab": {
|
115 |
+
"compensate": 1.035,
|
116 |
+
"mdx_dim_f_set": 2048,
|
117 |
+
"mdx_dim_t_set": 8,
|
118 |
+
"mdx_n_fft_scale_set": 16384,
|
119 |
+
"primary_stem": "Bass"
|
120 |
+
},
|
121 |
+
"ceed671467c1f64ebdfac8a2490d0d52": {
|
122 |
+
"compensate": 1.035,
|
123 |
+
"mdx_dim_f_set": 3072,
|
124 |
+
"mdx_dim_t_set": 8,
|
125 |
+
"mdx_n_fft_scale_set": 7680,
|
126 |
+
"primary_stem": "Instrumental"
|
127 |
+
},
|
128 |
+
"d2a1376f310e4f7fa37fb9b5774eb701": {
|
129 |
+
"compensate": 1.035,
|
130 |
+
"mdx_dim_f_set": 3072,
|
131 |
+
"mdx_dim_t_set": 8,
|
132 |
+
"mdx_n_fft_scale_set": 7680,
|
133 |
+
"primary_stem": "Instrumental"
|
134 |
+
},
|
135 |
+
"d7bff498db9324db933d913388cba6be": {
|
136 |
+
"compensate": 1.035,
|
137 |
+
"mdx_dim_f_set": 2048,
|
138 |
+
"mdx_dim_t_set": 8,
|
139 |
+
"mdx_n_fft_scale_set": 6144,
|
140 |
+
"primary_stem": "Vocals"
|
141 |
+
},
|
142 |
+
"d94058f8c7f1fae4164868ae8ae66b20": {
|
143 |
+
"compensate": 1.035,
|
144 |
+
"mdx_dim_f_set": 2048,
|
145 |
+
"mdx_dim_t_set": 8,
|
146 |
+
"mdx_n_fft_scale_set": 6144,
|
147 |
+
"primary_stem": "Vocals"
|
148 |
+
},
|
149 |
+
"dc41ede5961d50f277eb846db17f5319": {
|
150 |
+
"compensate": 1.035,
|
151 |
+
"mdx_dim_f_set": 2048,
|
152 |
+
"mdx_dim_t_set": 9,
|
153 |
+
"mdx_n_fft_scale_set": 4096,
|
154 |
+
"primary_stem": "Drums"
|
155 |
+
},
|
156 |
+
"e5572e58abf111f80d8241d2e44e7fa4": {
|
157 |
+
"compensate": 1.028,
|
158 |
+
"mdx_dim_f_set": 3072,
|
159 |
+
"mdx_dim_t_set": 8,
|
160 |
+
"mdx_n_fft_scale_set": 7680,
|
161 |
+
"primary_stem": "Instrumental"
|
162 |
+
},
|
163 |
+
"e7324c873b1f615c35c1967f912db92a": {
|
164 |
+
"compensate": 1.03,
|
165 |
+
"mdx_dim_f_set": 3072,
|
166 |
+
"mdx_dim_t_set": 8,
|
167 |
+
"mdx_n_fft_scale_set": 7680,
|
168 |
+
"primary_stem": "Vocals"
|
169 |
+
},
|
170 |
+
"1c56ec0224f1d559c42fd6fd2a67b154": {
|
171 |
+
"compensate": 1.025,
|
172 |
+
"mdx_dim_f_set": 2048,
|
173 |
+
"mdx_dim_t_set": 8,
|
174 |
+
"mdx_n_fft_scale_set": 5120,
|
175 |
+
"primary_stem": "Instrumental"
|
176 |
+
},
|
177 |
+
"f2df6d6863d8f435436d8b561594ff49": {
|
178 |
+
"compensate": 1.035,
|
179 |
+
"mdx_dim_f_set": 3072,
|
180 |
+
"mdx_dim_t_set": 8,
|
181 |
+
"mdx_n_fft_scale_set": 7680,
|
182 |
+
"primary_stem": "Instrumental"
|
183 |
+
},
|
184 |
+
"b06327a00d5e5fbc7d96e1781bbdb596": {
|
185 |
+
"compensate": 1.035,
|
186 |
+
"mdx_dim_f_set": 3072,
|
187 |
+
"mdx_dim_t_set": 8,
|
188 |
+
"mdx_n_fft_scale_set": 6144,
|
189 |
+
"primary_stem": "Instrumental"
|
190 |
+
},
|
191 |
+
"94ff780b977d3ca07c7a343dab2e25dd": {
|
192 |
+
"compensate": 1.039,
|
193 |
+
"mdx_dim_f_set": 3072,
|
194 |
+
"mdx_dim_t_set": 8,
|
195 |
+
"mdx_n_fft_scale_set": 6144,
|
196 |
+
"primary_stem": "Instrumental"
|
197 |
+
},
|
198 |
+
"73492b58195c3b52d34590d5474452f6": {
|
199 |
+
"compensate": 1.043,
|
200 |
+
"mdx_dim_f_set": 3072,
|
201 |
+
"mdx_dim_t_set": 8,
|
202 |
+
"mdx_n_fft_scale_set": 7680,
|
203 |
+
"primary_stem": "Vocals"
|
204 |
+
},
|
205 |
+
"970b3f9492014d18fefeedfe4773cb42": {
|
206 |
+
"compensate": 1.009,
|
207 |
+
"mdx_dim_f_set": 3072,
|
208 |
+
"mdx_dim_t_set": 8,
|
209 |
+
"mdx_n_fft_scale_set": 7680,
|
210 |
+
"primary_stem": "Vocals"
|
211 |
+
},
|
212 |
+
"1d64a6d2c30f709b8c9b4ce1366d96ee": {
|
213 |
+
"compensate": 1.035,
|
214 |
+
"mdx_dim_f_set": 2048,
|
215 |
+
"mdx_dim_t_set": 8,
|
216 |
+
"mdx_n_fft_scale_set": 5120,
|
217 |
+
"primary_stem": "Instrumental"
|
218 |
+
},
|
219 |
+
"203f2a3955221b64df85a41af87cf8f0": {
|
220 |
+
"compensate": 1.035,
|
221 |
+
"mdx_dim_f_set": 3072,
|
222 |
+
"mdx_dim_t_set": 8,
|
223 |
+
"mdx_n_fft_scale_set": 6144,
|
224 |
+
"primary_stem": "Instrumental"
|
225 |
+
},
|
226 |
+
"291c2049608edb52648b96e27eb80e95": {
|
227 |
+
"compensate": 1.035,
|
228 |
+
"mdx_dim_f_set": 3072,
|
229 |
+
"mdx_dim_t_set": 8,
|
230 |
+
"mdx_n_fft_scale_set": 6144,
|
231 |
+
"primary_stem": "Instrumental"
|
232 |
+
},
|
233 |
+
"ead8d05dab12ec571d67549b3aab03fc": {
|
234 |
+
"compensate": 1.035,
|
235 |
+
"mdx_dim_f_set": 3072,
|
236 |
+
"mdx_dim_t_set": 8,
|
237 |
+
"mdx_n_fft_scale_set": 6144,
|
238 |
+
"primary_stem": "Instrumental"
|
239 |
+
},
|
240 |
+
"cc63408db3d80b4d85b0287d1d7c9632": {
|
241 |
+
"compensate": 1.033,
|
242 |
+
"mdx_dim_f_set": 3072,
|
243 |
+
"mdx_dim_t_set": 8,
|
244 |
+
"mdx_n_fft_scale_set": 6144,
|
245 |
+
"primary_stem": "Instrumental"
|
246 |
+
},
|
247 |
+
"cd5b2989ad863f116c855db1dfe24e39": {
|
248 |
+
"compensate": 1.035,
|
249 |
+
"mdx_dim_f_set": 3072,
|
250 |
+
"mdx_dim_t_set": 9,
|
251 |
+
"mdx_n_fft_scale_set": 6144,
|
252 |
+
"primary_stem": "Other"
|
253 |
+
},
|
254 |
+
"55657dd70583b0fedfba5f67df11d711": {
|
255 |
+
"compensate": 1.022,
|
256 |
+
"mdx_dim_f_set": 3072,
|
257 |
+
"mdx_dim_t_set": 8,
|
258 |
+
"mdx_n_fft_scale_set": 6144,
|
259 |
+
"primary_stem": "Instrumental"
|
260 |
+
},
|
261 |
+
"b6bccda408a436db8500083ef3491e8b": {
|
262 |
+
"compensate": 1.02,
|
263 |
+
"mdx_dim_f_set": 3072,
|
264 |
+
"mdx_dim_t_set": 8,
|
265 |
+
"mdx_n_fft_scale_set": 7680,
|
266 |
+
"primary_stem": "Instrumental"
|
267 |
+
},
|
268 |
+
"8a88db95c7fb5dbe6a095ff2ffb428b1": {
|
269 |
+
"compensate": 1.026,
|
270 |
+
"mdx_dim_f_set": 2048,
|
271 |
+
"mdx_dim_t_set": 8,
|
272 |
+
"mdx_n_fft_scale_set": 5120,
|
273 |
+
"primary_stem": "Instrumental"
|
274 |
+
},
|
275 |
+
"b78da4afc6512f98e4756f5977f5c6b9": {
|
276 |
+
"compensate": 1.021,
|
277 |
+
"mdx_dim_f_set": 3072,
|
278 |
+
"mdx_dim_t_set": 8,
|
279 |
+
"mdx_n_fft_scale_set": 7680,
|
280 |
+
"primary_stem": "Instrumental"
|
281 |
+
},
|
282 |
+
"77d07b2667ddf05b9e3175941b4454a0": {
|
283 |
+
"compensate": 1.021,
|
284 |
+
"mdx_dim_f_set": 3072,
|
285 |
+
"mdx_dim_t_set": 8,
|
286 |
+
"mdx_n_fft_scale_set": 7680,
|
287 |
+
"primary_stem": "Vocals"
|
288 |
+
},
|
289 |
+
"0f2a6bc5b49d87d64728ee40e23bceb1": {
|
290 |
+
"compensate": 1.019,
|
291 |
+
"mdx_dim_f_set": 2560,
|
292 |
+
"mdx_dim_t_set": 8,
|
293 |
+
"mdx_n_fft_scale_set": 5120,
|
294 |
+
"primary_stem": "Instrumental"
|
295 |
+
},
|
296 |
+
"b02be2d198d4968a121030cf8950b492": {
|
297 |
+
"compensate": 1.020,
|
298 |
+
"mdx_dim_f_set": 2560,
|
299 |
+
"mdx_dim_t_set": 8,
|
300 |
+
"mdx_n_fft_scale_set": 5120,
|
301 |
+
"primary_stem": "No Crowd"
|
302 |
+
},
|
303 |
+
"2154254ee89b2945b97a7efed6e88820": {
|
304 |
+
"config_yaml": "model_2_stem_061321.yaml"
|
305 |
+
},
|
306 |
+
"063aadd735d58150722926dcbf5852a9": {
|
307 |
+
"config_yaml": "model_2_stem_061321.yaml"
|
308 |
+
},
|
309 |
+
"fe96801369f6a148df2720f5ced88c19": {
|
310 |
+
"config_yaml": "model3.yaml"
|
311 |
+
},
|
312 |
+
"02e8b226f85fb566e5db894b9931c640": {
|
313 |
+
"config_yaml": "model2.yaml"
|
314 |
+
},
|
315 |
+
"e3de6d861635ab9c1d766149edd680d6": {
|
316 |
+
"config_yaml": "model1.yaml"
|
317 |
+
},
|
318 |
+
"3f2936c554ab73ce2e396d54636bd373": {
|
319 |
+
"config_yaml": "modelB.yaml"
|
320 |
+
},
|
321 |
+
"890d0f6f82d7574bca741a9e8bcb8168": {
|
322 |
+
"config_yaml": "modelB.yaml"
|
323 |
+
},
|
324 |
+
"63a3cb8c37c474681049be4ad1ba8815": {
|
325 |
+
"config_yaml": "modelB.yaml"
|
326 |
+
},
|
327 |
+
"a7fc5d719743c7fd6b61bd2b4d48b9f0": {
|
328 |
+
"config_yaml": "modelA.yaml"
|
329 |
+
},
|
330 |
+
"3567f3dee6e77bf366fcb1c7b8bc3745": {
|
331 |
+
"config_yaml": "modelA.yaml"
|
332 |
+
},
|
333 |
+
"a28f4d717bd0d34cd2ff7a3b0a3d065e": {
|
334 |
+
"config_yaml": "modelA.yaml"
|
335 |
+
},
|
336 |
+
"c9971a18da20911822593dc81caa8be9": {
|
337 |
+
"config_yaml": "sndfx.yaml"
|
338 |
+
},
|
339 |
+
"57d94d5ed705460d21c75a5ac829a605": {
|
340 |
+
"config_yaml": "sndfx.yaml"
|
341 |
+
},
|
342 |
+
"e7a25f8764f25a52c1b96c4946e66ba2": {
|
343 |
+
"config_yaml": "sndfx.yaml"
|
344 |
+
},
|
345 |
+
"104081d24e37217086ce5fde09147ee1": {
|
346 |
+
"config_yaml": "model_2_stem_061321.yaml"
|
347 |
+
},
|
348 |
+
"1e6165b601539f38d0a9330f3facffeb": {
|
349 |
+
"config_yaml": "model_2_stem_061321.yaml"
|
350 |
+
},
|
351 |
+
"fe0108464ce0d8271be5ab810891bd7c": {
|
352 |
+
"config_yaml": "model_2_stem_full_band.yaml"
|
353 |
+
}
|
354 |
}
|
requirements.txt
CHANGED
@@ -1,19 +1,37 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
python
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Temporal requirements
|
2 |
+
nest_asyncio
|
3 |
+
--extra-index-url https://download.pytorch.org/whl/cu118
|
4 |
+
torch>=2.1.0+cu118
|
5 |
+
torchvision>=0.16.0+cu118
|
6 |
+
torchaudio>=2.1.0+cu118
|
7 |
+
yt-dlp
|
8 |
+
gradio==4.19.2
|
9 |
+
pydub==0.25.1
|
10 |
+
edge_tts==6.1.7
|
11 |
+
deep_translator==1.11.4
|
12 |
+
git+https://github.com/m-bain/whisperX.git@a5dca2c
|
13 |
+
gTTS
|
14 |
+
gradio_client==0.10.1
|
15 |
+
praat-parselmouth>=0.4.3
|
16 |
+
pyworld==0.3.2
|
17 |
+
faiss-cpu==1.7.3
|
18 |
+
torchcrepe==0.0.20
|
19 |
+
ffmpeg-python>=0.2.0
|
20 |
+
git+https://github.com/facebookresearch/fairseq.git@refs/pull/5359/merge
|
21 |
+
gdown
|
22 |
+
rarfile
|
23 |
+
IPython
|
24 |
+
transformers
|
25 |
+
accelerate
|
26 |
+
optimum
|
27 |
+
sentencepiece
|
28 |
+
srt
|
29 |
+
onnxruntime-gpu
|
30 |
+
git+https://github.com/R3gm/openvoice_package.git@lite
|
31 |
+
# Documents
|
32 |
+
PyPDF2
|
33 |
+
python-docx
|
34 |
+
|
35 |
+
# after this
|
36 |
+
# pip install git+https://github.com/omry/omegaconf.git@refs/pull/1137/merge
|
37 |
+
|
requirements_base.txt
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
--extra-index-url https://download.pytorch.org/whl/cu118
|
2 |
+
torch>=2.1.0+cu118
|
3 |
+
torchvision>=0.16.0+cu118
|
4 |
+
torchaudio>=2.1.0+cu118
|
5 |
+
yt-dlp
|
6 |
+
gradio==4.19.2
|
7 |
+
pydub==0.25.1
|
8 |
+
edge_tts==6.1.7
|
9 |
+
deep_translator==1.11.4
|
10 |
+
git+https://github.com/R3gm/pyannote-audio.git@3.1.1
|
11 |
+
git+https://github.com/R3gm/whisperX.git@cuda_11_8
|
12 |
+
nest_asyncio
|
13 |
+
gTTS
|
14 |
+
gradio_client==0.10.1
|
15 |
+
IPython
|
requirements_extra.txt
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
praat-parselmouth>=0.4.3
|
2 |
+
pyworld==0.3.2
|
3 |
+
faiss-cpu==1.7.3
|
4 |
+
torchcrepe==0.0.20
|
5 |
+
ffmpeg-python>=0.2.0
|
6 |
+
fairseq==0.12.2
|
7 |
+
gdown
|
8 |
+
rarfile
|
9 |
+
transformers
|
10 |
+
accelerate
|
11 |
+
optimum
|
12 |
+
sentencepiece
|
13 |
+
srt
|
14 |
+
git+https://github.com/R3gm/openvoice_package.git@lite
|
15 |
+
openai==1.14.3
|
16 |
+
tiktoken==0.6.0
|
17 |
+
# Documents
|
18 |
+
pypdf==4.2.0
|
19 |
+
python-docx
|
requirements_xtts.txt
CHANGED
@@ -1,58 +1,58 @@
|
|
1 |
-
# core deps
|
2 |
-
numpy==1.23.5
|
3 |
-
cython>=0.29.30
|
4 |
-
scipy>=1.11.2
|
5 |
-
torch
|
6 |
-
torchaudio
|
7 |
-
soundfile
|
8 |
-
librosa
|
9 |
-
scikit-learn
|
10 |
-
numba
|
11 |
-
inflect>=5.6.0
|
12 |
-
tqdm>=4.64.1
|
13 |
-
anyascii>=0.3.0
|
14 |
-
pyyaml>=6.0
|
15 |
-
fsspec>=2023.6.0 # <= 2023.9.1 makes aux tests fail
|
16 |
-
aiohttp>=3.8.1
|
17 |
-
packaging>=23.1
|
18 |
-
# deps for examples
|
19 |
-
flask>=2.0.1
|
20 |
-
# deps for inference
|
21 |
-
pysbd>=0.3.4
|
22 |
-
# deps for notebooks
|
23 |
-
umap-learn>=0.5.1
|
24 |
-
pandas
|
25 |
-
# deps for training
|
26 |
-
matplotlib
|
27 |
-
# coqui stack
|
28 |
-
trainer>=0.0.32
|
29 |
-
# config management
|
30 |
-
coqpit>=0.0.16
|
31 |
-
# chinese g2p deps
|
32 |
-
jieba
|
33 |
-
pypinyin
|
34 |
-
# korean
|
35 |
-
hangul_romanize
|
36 |
-
# gruut+supported langs
|
37 |
-
gruut[de,es,fr]==2.2.3
|
38 |
-
# deps for korean
|
39 |
-
jamo
|
40 |
-
nltk
|
41 |
-
g2pkk>=0.1.1
|
42 |
-
# deps for bangla
|
43 |
-
bangla
|
44 |
-
bnnumerizer
|
45 |
-
bnunicodenormalizer
|
46 |
-
#deps for tortoise
|
47 |
-
einops>=0.6.0
|
48 |
-
transformers
|
49 |
-
#deps for bark
|
50 |
-
encodec>=0.1.1
|
51 |
-
# deps for XTTS
|
52 |
-
unidecode>=1.3.2
|
53 |
-
num2words
|
54 |
-
spacy[ja]>=3
|
55 |
-
|
56 |
-
# after this
|
57 |
-
# pip install -r requirements_xtts.txt
|
58 |
# pip install TTS==0.21.1 --no-deps
|
|
|
1 |
+
# core deps
|
2 |
+
numpy==1.23.5
|
3 |
+
cython>=0.29.30
|
4 |
+
scipy>=1.11.2
|
5 |
+
torch
|
6 |
+
torchaudio
|
7 |
+
soundfile
|
8 |
+
librosa
|
9 |
+
scikit-learn
|
10 |
+
numba
|
11 |
+
inflect>=5.6.0
|
12 |
+
tqdm>=4.64.1
|
13 |
+
anyascii>=0.3.0
|
14 |
+
pyyaml>=6.0
|
15 |
+
fsspec>=2023.6.0 # <= 2023.9.1 makes aux tests fail
|
16 |
+
aiohttp>=3.8.1
|
17 |
+
packaging>=23.1
|
18 |
+
# deps for examples
|
19 |
+
flask>=2.0.1
|
20 |
+
# deps for inference
|
21 |
+
pysbd>=0.3.4
|
22 |
+
# deps for notebooks
|
23 |
+
umap-learn>=0.5.1
|
24 |
+
pandas
|
25 |
+
# deps for training
|
26 |
+
matplotlib
|
27 |
+
# coqui stack
|
28 |
+
trainer>=0.0.32
|
29 |
+
# config management
|
30 |
+
coqpit>=0.0.16
|
31 |
+
# chinese g2p deps
|
32 |
+
jieba
|
33 |
+
pypinyin
|
34 |
+
# korean
|
35 |
+
hangul_romanize
|
36 |
+
# gruut+supported langs
|
37 |
+
gruut[de,es,fr]==2.2.3
|
38 |
+
# deps for korean
|
39 |
+
jamo
|
40 |
+
nltk
|
41 |
+
g2pkk>=0.1.1
|
42 |
+
# deps for bangla
|
43 |
+
bangla
|
44 |
+
bnnumerizer
|
45 |
+
bnunicodenormalizer
|
46 |
+
#deps for tortoise
|
47 |
+
einops>=0.6.0
|
48 |
+
transformers
|
49 |
+
#deps for bark
|
50 |
+
encodec>=0.1.1
|
51 |
+
# deps for XTTS
|
52 |
+
unidecode>=1.3.2
|
53 |
+
num2words
|
54 |
+
spacy[ja]>=3
|
55 |
+
|
56 |
+
# after this
|
57 |
+
# pip install -r requirements_xtts.txt
|
58 |
# pip install TTS==0.21.1 --no-deps
|
soni_translate/audio_segments.py
CHANGED
@@ -1,141 +1,141 @@
|
|
1 |
-
from pydub import AudioSegment
|
2 |
-
from tqdm import tqdm
|
3 |
-
from .utils import run_command
|
4 |
-
from .logging_setup import logger
|
5 |
-
import numpy as np
|
6 |
-
|
7 |
-
|
8 |
-
class Mixer:
|
9 |
-
def __init__(self):
|
10 |
-
self.parts = []
|
11 |
-
|
12 |
-
def __len__(self):
|
13 |
-
parts = self._sync()
|
14 |
-
seg = parts[0][1]
|
15 |
-
frame_count = max(offset + seg.frame_count() for offset, seg in parts)
|
16 |
-
return int(1000.0 * frame_count / seg.frame_rate)
|
17 |
-
|
18 |
-
def overlay(self, sound, position=0):
|
19 |
-
self.parts.append((position, sound))
|
20 |
-
return self
|
21 |
-
|
22 |
-
def _sync(self):
|
23 |
-
positions, segs = zip(*self.parts)
|
24 |
-
|
25 |
-
frame_rate = segs[0].frame_rate
|
26 |
-
array_type = segs[0].array_type # noqa
|
27 |
-
|
28 |
-
offsets = [int(frame_rate * pos / 1000.0) for pos in positions]
|
29 |
-
segs = AudioSegment.empty()._sync(*segs)
|
30 |
-
return list(zip(offsets, segs))
|
31 |
-
|
32 |
-
def append(self, sound):
|
33 |
-
self.overlay(sound, position=len(self))
|
34 |
-
|
35 |
-
def to_audio_segment(self):
|
36 |
-
parts = self._sync()
|
37 |
-
seg = parts[0][1]
|
38 |
-
channels = seg.channels
|
39 |
-
|
40 |
-
frame_count = max(offset + seg.frame_count() for offset, seg in parts)
|
41 |
-
sample_count = int(frame_count * seg.channels)
|
42 |
-
|
43 |
-
output = np.zeros(sample_count, dtype="int32")
|
44 |
-
for offset, seg in parts:
|
45 |
-
sample_offset = offset * channels
|
46 |
-
samples = np.frombuffer(seg.get_array_of_samples(), dtype="int32")
|
47 |
-
samples = np.int16(samples/np.max(np.abs(samples)) * 32767)
|
48 |
-
start = sample_offset
|
49 |
-
end = start + len(samples)
|
50 |
-
output[start:end] += samples
|
51 |
-
|
52 |
-
return seg._spawn(
|
53 |
-
output, overrides={"sample_width": 4}).normalize(headroom=0.0)
|
54 |
-
|
55 |
-
|
56 |
-
def create_translated_audio(
|
57 |
-
result_diarize, audio_files, final_file, concat=False, avoid_overlap=False,
|
58 |
-
):
|
59 |
-
total_duration = result_diarize["segments"][-1]["end"] # in seconds
|
60 |
-
|
61 |
-
if concat:
|
62 |
-
"""
|
63 |
-
file .\audio\1.ogg
|
64 |
-
file .\audio\2.ogg
|
65 |
-
file .\audio\3.ogg
|
66 |
-
file .\audio\4.ogg
|
67 |
-
...
|
68 |
-
"""
|
69 |
-
|
70 |
-
# Write the file paths to list.txt
|
71 |
-
with open("list.txt", "w") as file:
|
72 |
-
for i, audio_file in enumerate(audio_files):
|
73 |
-
if i == len(audio_files) - 1: # Check if it's the last item
|
74 |
-
file.write(f"file {audio_file}")
|
75 |
-
else:
|
76 |
-
file.write(f"file {audio_file}\n")
|
77 |
-
|
78 |
-
# command = f"ffmpeg -f concat -safe 0 -i list.txt {final_file}"
|
79 |
-
command = (
|
80 |
-
f"ffmpeg -f concat -safe 0 -i list.txt -c:a pcm_s16le {final_file}"
|
81 |
-
)
|
82 |
-
run_command(command)
|
83 |
-
|
84 |
-
else:
|
85 |
-
# silent audio with total_duration
|
86 |
-
base_audio = AudioSegment.silent(
|
87 |
-
duration=int(total_duration * 1000), frame_rate=41000
|
88 |
-
)
|
89 |
-
combined_audio = Mixer()
|
90 |
-
combined_audio.overlay(base_audio)
|
91 |
-
|
92 |
-
logger.debug(
|
93 |
-
f"Audio duration: {total_duration // 60} "
|
94 |
-
f"minutes and {int(total_duration % 60)} seconds"
|
95 |
-
)
|
96 |
-
|
97 |
-
last_end_time = 0
|
98 |
-
previous_speaker = ""
|
99 |
-
for line, audio_file in tqdm(
|
100 |
-
zip(result_diarize["segments"], audio_files)
|
101 |
-
):
|
102 |
-
start = float(line["start"])
|
103 |
-
|
104 |
-
# Overlay each audio at the corresponding time
|
105 |
-
try:
|
106 |
-
audio = AudioSegment.from_file(audio_file)
|
107 |
-
# audio_a = audio.speedup(playback_speed=1.5)
|
108 |
-
|
109 |
-
if avoid_overlap:
|
110 |
-
speaker = line["speaker"]
|
111 |
-
if (last_end_time - 0.500) > start:
|
112 |
-
overlap_time = last_end_time - start
|
113 |
-
if previous_speaker and previous_speaker != speaker:
|
114 |
-
start = (last_end_time - 0.500)
|
115 |
-
else:
|
116 |
-
start = (last_end_time - 0.200)
|
117 |
-
if overlap_time > 2.5:
|
118 |
-
start = start - 0.3
|
119 |
-
logger.info(
|
120 |
-
f"Avoid overlap for {str(audio_file)} "
|
121 |
-
f"with {str(start)}"
|
122 |
-
)
|
123 |
-
|
124 |
-
previous_speaker = speaker
|
125 |
-
|
126 |
-
duration_tts_seconds = len(audio) / 1000.0 # to sec
|
127 |
-
last_end_time = (start + duration_tts_seconds)
|
128 |
-
|
129 |
-
start_time = start * 1000 # to ms
|
130 |
-
combined_audio = combined_audio.overlay(
|
131 |
-
audio, position=start_time
|
132 |
-
)
|
133 |
-
except Exception as error:
|
134 |
-
logger.debug(str(error))
|
135 |
-
logger.error(f"Error audio file {audio_file}")
|
136 |
-
|
137 |
-
# combined audio as a file
|
138 |
-
combined_audio_data = combined_audio.to_audio_segment()
|
139 |
-
combined_audio_data.export(
|
140 |
-
final_file, format="wav"
|
141 |
-
) # best than ogg, change if the audio is anomalous
|
|
|
1 |
+
from pydub import AudioSegment
|
2 |
+
from tqdm import tqdm
|
3 |
+
from .utils import run_command
|
4 |
+
from .logging_setup import logger
|
5 |
+
import numpy as np
|
6 |
+
|
7 |
+
|
8 |
+
class Mixer:
|
9 |
+
def __init__(self):
|
10 |
+
self.parts = []
|
11 |
+
|
12 |
+
def __len__(self):
|
13 |
+
parts = self._sync()
|
14 |
+
seg = parts[0][1]
|
15 |
+
frame_count = max(offset + seg.frame_count() for offset, seg in parts)
|
16 |
+
return int(1000.0 * frame_count / seg.frame_rate)
|
17 |
+
|
18 |
+
def overlay(self, sound, position=0):
|
19 |
+
self.parts.append((position, sound))
|
20 |
+
return self
|
21 |
+
|
22 |
+
def _sync(self):
|
23 |
+
positions, segs = zip(*self.parts)
|
24 |
+
|
25 |
+
frame_rate = segs[0].frame_rate
|
26 |
+
array_type = segs[0].array_type # noqa
|
27 |
+
|
28 |
+
offsets = [int(frame_rate * pos / 1000.0) for pos in positions]
|
29 |
+
segs = AudioSegment.empty()._sync(*segs)
|
30 |
+
return list(zip(offsets, segs))
|
31 |
+
|
32 |
+
def append(self, sound):
|
33 |
+
self.overlay(sound, position=len(self))
|
34 |
+
|
35 |
+
def to_audio_segment(self):
|
36 |
+
parts = self._sync()
|
37 |
+
seg = parts[0][1]
|
38 |
+
channels = seg.channels
|
39 |
+
|
40 |
+
frame_count = max(offset + seg.frame_count() for offset, seg in parts)
|
41 |
+
sample_count = int(frame_count * seg.channels)
|
42 |
+
|
43 |
+
output = np.zeros(sample_count, dtype="int32")
|
44 |
+
for offset, seg in parts:
|
45 |
+
sample_offset = offset * channels
|
46 |
+
samples = np.frombuffer(seg.get_array_of_samples(), dtype="int32")
|
47 |
+
samples = np.int16(samples/np.max(np.abs(samples)) * 32767)
|
48 |
+
start = sample_offset
|
49 |
+
end = start + len(samples)
|
50 |
+
output[start:end] += samples
|
51 |
+
|
52 |
+
return seg._spawn(
|
53 |
+
output, overrides={"sample_width": 4}).normalize(headroom=0.0)
|
54 |
+
|
55 |
+
|
56 |
+
def create_translated_audio(
|
57 |
+
result_diarize, audio_files, final_file, concat=False, avoid_overlap=False,
|
58 |
+
):
|
59 |
+
total_duration = result_diarize["segments"][-1]["end"] # in seconds
|
60 |
+
|
61 |
+
if concat:
|
62 |
+
"""
|
63 |
+
file .\audio\1.ogg
|
64 |
+
file .\audio\2.ogg
|
65 |
+
file .\audio\3.ogg
|
66 |
+
file .\audio\4.ogg
|
67 |
+
...
|
68 |
+
"""
|
69 |
+
|
70 |
+
# Write the file paths to list.txt
|
71 |
+
with open("list.txt", "w") as file:
|
72 |
+
for i, audio_file in enumerate(audio_files):
|
73 |
+
if i == len(audio_files) - 1: # Check if it's the last item
|
74 |
+
file.write(f"file {audio_file}")
|
75 |
+
else:
|
76 |
+
file.write(f"file {audio_file}\n")
|
77 |
+
|
78 |
+
# command = f"ffmpeg -f concat -safe 0 -i list.txt {final_file}"
|
79 |
+
command = (
|
80 |
+
f"ffmpeg -f concat -safe 0 -i list.txt -c:a pcm_s16le {final_file}"
|
81 |
+
)
|
82 |
+
run_command(command)
|
83 |
+
|
84 |
+
else:
|
85 |
+
# silent audio with total_duration
|
86 |
+
base_audio = AudioSegment.silent(
|
87 |
+
duration=int(total_duration * 1000), frame_rate=41000
|
88 |
+
)
|
89 |
+
combined_audio = Mixer()
|
90 |
+
combined_audio.overlay(base_audio)
|
91 |
+
|
92 |
+
logger.debug(
|
93 |
+
f"Audio duration: {total_duration // 60} "
|
94 |
+
f"minutes and {int(total_duration % 60)} seconds"
|
95 |
+
)
|
96 |
+
|
97 |
+
last_end_time = 0
|
98 |
+
previous_speaker = ""
|
99 |
+
for line, audio_file in tqdm(
|
100 |
+
zip(result_diarize["segments"], audio_files)
|
101 |
+
):
|
102 |
+
start = float(line["start"])
|
103 |
+
|
104 |
+
# Overlay each audio at the corresponding time
|
105 |
+
try:
|
106 |
+
audio = AudioSegment.from_file(audio_file)
|
107 |
+
# audio_a = audio.speedup(playback_speed=1.5)
|
108 |
+
|
109 |
+
if avoid_overlap:
|
110 |
+
speaker = line["speaker"]
|
111 |
+
if (last_end_time - 0.500) > start:
|
112 |
+
overlap_time = last_end_time - start
|
113 |
+
if previous_speaker and previous_speaker != speaker:
|
114 |
+
start = (last_end_time - 0.500)
|
115 |
+
else:
|
116 |
+
start = (last_end_time - 0.200)
|
117 |
+
if overlap_time > 2.5:
|
118 |
+
start = start - 0.3
|
119 |
+
logger.info(
|
120 |
+
f"Avoid overlap for {str(audio_file)} "
|
121 |
+
f"with {str(start)}"
|
122 |
+
)
|
123 |
+
|
124 |
+
previous_speaker = speaker
|
125 |
+
|
126 |
+
duration_tts_seconds = len(audio) / 1000.0 # to sec
|
127 |
+
last_end_time = (start + duration_tts_seconds)
|
128 |
+
|
129 |
+
start_time = start * 1000 # to ms
|
130 |
+
combined_audio = combined_audio.overlay(
|
131 |
+
audio, position=start_time
|
132 |
+
)
|
133 |
+
except Exception as error:
|
134 |
+
logger.debug(str(error))
|
135 |
+
logger.error(f"Error audio file {audio_file}")
|
136 |
+
|
137 |
+
# combined audio as a file
|
138 |
+
combined_audio_data = combined_audio.to_audio_segment()
|
139 |
+
combined_audio_data.export(
|
140 |
+
final_file, format="wav"
|
141 |
+
) # best than ogg, change if the audio is anomalous
|
soni_translate/language_configuration.py
CHANGED
@@ -1,551 +1,551 @@
|
|
1 |
-
from .logging_setup import logger
|
2 |
-
|
3 |
-
LANGUAGES_UNIDIRECTIONAL = {
|
4 |
-
"Aymara (ay)": "ay",
|
5 |
-
"Bambara (bm)": "bm",
|
6 |
-
"Cebuano (ceb)": "ceb",
|
7 |
-
"Chichewa (ny)": "ny",
|
8 |
-
"Divehi (dv)": "dv",
|
9 |
-
"Dogri (doi)": "doi",
|
10 |
-
"Ewe (ee)": "ee",
|
11 |
-
"Guarani (gn)": "gn",
|
12 |
-
"Iloko (ilo)": "ilo",
|
13 |
-
"Kinyarwanda (rw)": "rw",
|
14 |
-
"Krio (kri)": "kri",
|
15 |
-
"Kurdish (ku)": "ku",
|
16 |
-
"Kirghiz (ky)": "ky",
|
17 |
-
"Ganda (lg)": "lg",
|
18 |
-
"Maithili (mai)": "mai",
|
19 |
-
"Oriya (or)": "or",
|
20 |
-
"Oromo (om)": "om",
|
21 |
-
"Quechua (qu)": "qu",
|
22 |
-
"Samoan (sm)": "sm",
|
23 |
-
"Tigrinya (ti)": "ti",
|
24 |
-
"Tsonga (ts)": "ts",
|
25 |
-
"Akan (ak)": "ak",
|
26 |
-
"Uighur (ug)": "ug"
|
27 |
-
}
|
28 |
-
|
29 |
-
UNIDIRECTIONAL_L_LIST = LANGUAGES_UNIDIRECTIONAL.keys()
|
30 |
-
|
31 |
-
LANGUAGES = {
|
32 |
-
"Automatic detection": "Automatic detection",
|
33 |
-
"Arabic (ar)": "ar",
|
34 |
-
"Chinese - Simplified (zh-CN)": "zh",
|
35 |
-
"Czech (cs)": "cs",
|
36 |
-
"Danish (da)": "da",
|
37 |
-
"Dutch (nl)": "nl",
|
38 |
-
"English (en)": "en",
|
39 |
-
"Finnish (fi)": "fi",
|
40 |
-
"French (fr)": "fr",
|
41 |
-
"German (de)": "de",
|
42 |
-
"Greek (el)": "el",
|
43 |
-
"Hebrew (he)": "he",
|
44 |
-
"Hungarian (hu)": "hu",
|
45 |
-
"Italian (it)": "it",
|
46 |
-
"Japanese (ja)": "ja",
|
47 |
-
"Korean (ko)": "ko",
|
48 |
-
"Persian (fa)": "fa", # no aux gTTS
|
49 |
-
"Polish (pl)": "pl",
|
50 |
-
"Portuguese (pt)": "pt",
|
51 |
-
"Russian (ru)": "ru",
|
52 |
-
"Spanish (es)": "es",
|
53 |
-
"Turkish (tr)": "tr",
|
54 |
-
"Ukrainian (uk)": "uk",
|
55 |
-
"Urdu (ur)": "ur",
|
56 |
-
"Vietnamese (vi)": "vi",
|
57 |
-
"Hindi (hi)": "hi",
|
58 |
-
"Indonesian (id)": "id",
|
59 |
-
"Bengali (bn)": "bn",
|
60 |
-
"Telugu (te)": "te",
|
61 |
-
"Marathi (mr)": "mr",
|
62 |
-
"Tamil (ta)": "ta",
|
63 |
-
"Javanese (jw|jv)": "jw",
|
64 |
-
"Catalan (ca)": "ca",
|
65 |
-
"Nepali (ne)": "ne",
|
66 |
-
"Thai (th)": "th",
|
67 |
-
"Swedish (sv)": "sv",
|
68 |
-
"Amharic (am)": "am",
|
69 |
-
"Welsh (cy)": "cy", # no aux gTTS
|
70 |
-
"Estonian (et)": "et",
|
71 |
-
"Croatian (hr)": "hr",
|
72 |
-
"Icelandic (is)": "is",
|
73 |
-
"Georgian (ka)": "ka", # no aux gTTS
|
74 |
-
"Khmer (km)": "km",
|
75 |
-
"Slovak (sk)": "sk",
|
76 |
-
"Albanian (sq)": "sq",
|
77 |
-
"Serbian (sr)": "sr",
|
78 |
-
"Azerbaijani (az)": "az", # no aux gTTS
|
79 |
-
"Bulgarian (bg)": "bg",
|
80 |
-
"Galician (gl)": "gl", # no aux gTTS
|
81 |
-
"Gujarati (gu)": "gu",
|
82 |
-
"Kazakh (kk)": "kk", # no aux gTTS
|
83 |
-
"Kannada (kn)": "kn",
|
84 |
-
"Lithuanian (lt)": "lt", # no aux gTTS
|
85 |
-
"Latvian (lv)": "lv",
|
86 |
-
"Macedonian (mk)": "mk", # no aux gTTS # error get align model
|
87 |
-
"Malayalam (ml)": "ml",
|
88 |
-
"Malay (ms)": "ms", # error get align model
|
89 |
-
"Romanian (ro)": "ro",
|
90 |
-
"Sinhala (si)": "si",
|
91 |
-
"Sundanese (su)": "su",
|
92 |
-
"Swahili (sw)": "sw", # error aling
|
93 |
-
"Afrikaans (af)": "af",
|
94 |
-
"Bosnian (bs)": "bs",
|
95 |
-
"Latin (la)": "la",
|
96 |
-
"Myanmar Burmese (my)": "my",
|
97 |
-
"Norwegian (no|nb)": "no",
|
98 |
-
"Chinese - Traditional (zh-TW)": "zh-TW",
|
99 |
-
"Assamese (as)": "as",
|
100 |
-
"Basque (eu)": "eu",
|
101 |
-
"Hausa (ha)": "ha",
|
102 |
-
"Haitian Creole (ht)": "ht",
|
103 |
-
"Armenian (hy)": "hy",
|
104 |
-
"Lao (lo)": "lo",
|
105 |
-
"Malagasy (mg)": "mg",
|
106 |
-
"Mongolian (mn)": "mn",
|
107 |
-
"Maltese (mt)": "mt",
|
108 |
-
"Punjabi (pa)": "pa",
|
109 |
-
"Pashto (ps)": "ps",
|
110 |
-
"Slovenian (sl)": "sl",
|
111 |
-
"Shona (sn)": "sn",
|
112 |
-
"Somali (so)": "so",
|
113 |
-
"Tajik (tg)": "tg",
|
114 |
-
"Turkmen (tk)": "tk",
|
115 |
-
"Tatar (tt)": "tt",
|
116 |
-
"Uzbek (uz)": "uz",
|
117 |
-
"Yoruba (yo)": "yo",
|
118 |
-
**LANGUAGES_UNIDIRECTIONAL
|
119 |
-
}
|
120 |
-
|
121 |
-
BASE_L_LIST = LANGUAGES.keys()
|
122 |
-
LANGUAGES_LIST = [list(BASE_L_LIST)[0]] + sorted(list(BASE_L_LIST)[1:])
|
123 |
-
INVERTED_LANGUAGES = {value: key for key, value in LANGUAGES.items()}
|
124 |
-
|
125 |
-
EXTRA_ALIGN = {
|
126 |
-
"id": "indonesian-nlp/wav2vec2-large-xlsr-indonesian",
|
127 |
-
"bn": "arijitx/wav2vec2-large-xlsr-bengali",
|
128 |
-
"mr": "sumedh/wav2vec2-large-xlsr-marathi",
|
129 |
-
"ta": "Amrrs/wav2vec2-large-xlsr-53-tamil",
|
130 |
-
"jw": "cahya/wav2vec2-large-xlsr-javanese",
|
131 |
-
"ne": "shniranjan/wav2vec2-large-xlsr-300m-nepali",
|
132 |
-
"th": "sakares/wav2vec2-large-xlsr-thai-demo",
|
133 |
-
"sv": "KBLab/wav2vec2-large-voxrex-swedish",
|
134 |
-
"am": "agkphysics/wav2vec2-large-xlsr-53-amharic",
|
135 |
-
"cy": "Srulikbdd/Wav2Vec2-large-xlsr-welsh",
|
136 |
-
"et": "anton-l/wav2vec2-large-xlsr-53-estonian",
|
137 |
-
"hr": "classla/wav2vec2-xls-r-parlaspeech-hr",
|
138 |
-
"is": "carlosdanielhernandezmena/wav2vec2-large-xlsr-53-icelandic-ep10-1000h",
|
139 |
-
"ka": "MehdiHosseiniMoghadam/wav2vec2-large-xlsr-53-Georgian",
|
140 |
-
"km": "vitouphy/wav2vec2-xls-r-300m-khmer",
|
141 |
-
"sk": "infinitejoy/wav2vec2-large-xls-r-300m-slovak",
|
142 |
-
"sq": "Alimzhan/wav2vec2-large-xls-r-300m-albanian-colab",
|
143 |
-
"sr": "dnikolic/wav2vec2-xlsr-530-serbian-colab",
|
144 |
-
"az": "nijatzeynalov/wav2vec2-large-mms-1b-azerbaijani-common_voice15.0",
|
145 |
-
"bg": "infinitejoy/wav2vec2-large-xls-r-300m-bulgarian",
|
146 |
-
"gl": "ifrz/wav2vec2-large-xlsr-galician",
|
147 |
-
"gu": "Harveenchadha/vakyansh-wav2vec2-gujarati-gnm-100",
|
148 |
-
"kk": "aismlv/wav2vec2-large-xlsr-kazakh",
|
149 |
-
"kn": "Harveenchadha/vakyansh-wav2vec2-kannada-knm-560",
|
150 |
-
"lt": "DeividasM/wav2vec2-large-xlsr-53-lithuanian",
|
151 |
-
"lv": "anton-l/wav2vec2-large-xlsr-53-latvian",
|
152 |
-
"mk": "", # Konstantin-Bogdanoski/wav2vec2-macedonian-base
|
153 |
-
"ml": "gvs/wav2vec2-large-xlsr-malayalam",
|
154 |
-
"ms": "", # Duy/wav2vec2_malay
|
155 |
-
"ro": "anton-l/wav2vec2-large-xlsr-53-romanian",
|
156 |
-
"si": "IAmNotAnanth/wav2vec2-large-xls-r-300m-sinhala",
|
157 |
-
"su": "cahya/wav2vec2-large-xlsr-sundanese",
|
158 |
-
"sw": "", # Lians/fine-tune-wav2vec2-large-swahili
|
159 |
-
"af": "", # ylacombe/wav2vec2-common_voice-af-demo
|
160 |
-
"bs": "",
|
161 |
-
"la": "",
|
162 |
-
"my": "",
|
163 |
-
"no": "NbAiLab/wav2vec2-xlsr-300m-norwegian",
|
164 |
-
"zh-TW": "jonatasgrosman/wav2vec2-large-xlsr-53-chinese-zh-cn",
|
165 |
-
"as": "",
|
166 |
-
"eu": "", # cahya/wav2vec2-large-xlsr-basque # verify
|
167 |
-
"ha": "infinitejoy/wav2vec2-large-xls-r-300m-hausa",
|
168 |
-
"ht": "",
|
169 |
-
"hy": "infinitejoy/wav2vec2-large-xls-r-300m-armenian", # no (.)
|
170 |
-
"lo": "",
|
171 |
-
"mg": "",
|
172 |
-
"mn": "tugstugi/wav2vec2-large-xlsr-53-mongolian",
|
173 |
-
"mt": "carlosdanielhernandezmena/wav2vec2-large-xlsr-53-maltese-64h",
|
174 |
-
"pa": "kingabzpro/wav2vec2-large-xlsr-53-punjabi",
|
175 |
-
"ps": "aamirhs/wav2vec2-large-xls-r-300m-pashto-colab",
|
176 |
-
"sl": "anton-l/wav2vec2-large-xlsr-53-slovenian",
|
177 |
-
"sn": "",
|
178 |
-
"so": "",
|
179 |
-
"tg": "",
|
180 |
-
"tk": "", # Ragav/wav2vec2-tk
|
181 |
-
"tt": "anton-l/wav2vec2-large-xlsr-53-tatar",
|
182 |
-
"uz": "", # Mekhriddin/wav2vec2-large-xls-r-300m-uzbek-colab
|
183 |
-
"yo": "ogbi/wav2vec2-large-mms-1b-yoruba-test",
|
184 |
-
}
|
185 |
-
|
186 |
-
|
187 |
-
def fix_code_language(translate_to, syntax="google"):
|
188 |
-
if syntax == "google":
|
189 |
-
# google-translator, gTTS
|
190 |
-
replace_lang_code = {"zh": "zh-CN", "he": "iw", "zh-cn": "zh-CN"}
|
191 |
-
elif syntax == "coqui":
|
192 |
-
# coqui-xtts
|
193 |
-
replace_lang_code = {"zh": "zh-cn", "zh-CN": "zh-cn", "zh-TW": "zh-cn"}
|
194 |
-
|
195 |
-
new_code_lang = replace_lang_code.get(translate_to, translate_to)
|
196 |
-
logger.debug(f"Fix code {translate_to} -> {new_code_lang}")
|
197 |
-
return new_code_lang
|
198 |
-
|
199 |
-
|
200 |
-
BARK_VOICES_LIST = {
|
201 |
-
"de_speaker_0-Male BARK": "v2/de_speaker_0",
|
202 |
-
"de_speaker_1-Male BARK": "v2/de_speaker_1",
|
203 |
-
"de_speaker_2-Male BARK": "v2/de_speaker_2",
|
204 |
-
"de_speaker_3-Female BARK": "v2/de_speaker_3",
|
205 |
-
"de_speaker_4-Male BARK": "v2/de_speaker_4",
|
206 |
-
"de_speaker_5-Male BARK": "v2/de_speaker_5",
|
207 |
-
"de_speaker_6-Male BARK": "v2/de_speaker_6",
|
208 |
-
"de_speaker_7-Male BARK": "v2/de_speaker_7",
|
209 |
-
"de_speaker_8-Female BARK": "v2/de_speaker_8",
|
210 |
-
"de_speaker_9-Male BARK": "v2/de_speaker_9",
|
211 |
-
"en_speaker_0-Male BARK": "v2/en_speaker_0",
|
212 |
-
"en_speaker_1-Male BARK": "v2/en_speaker_1",
|
213 |
-
"en_speaker_2-Male BARK": "v2/en_speaker_2",
|
214 |
-
"en_speaker_3-Male BARK": "v2/en_speaker_3",
|
215 |
-
"en_speaker_4-Male BARK": "v2/en_speaker_4",
|
216 |
-
"en_speaker_5-Male BARK": "v2/en_speaker_5",
|
217 |
-
"en_speaker_6-Male BARK": "v2/en_speaker_6",
|
218 |
-
"en_speaker_7-Male BARK": "v2/en_speaker_7",
|
219 |
-
"en_speaker_8-Male BARK": "v2/en_speaker_8",
|
220 |
-
"en_speaker_9-Female BARK": "v2/en_speaker_9",
|
221 |
-
"es_speaker_0-Male BARK": "v2/es_speaker_0",
|
222 |
-
"es_speaker_1-Male BARK": "v2/es_speaker_1",
|
223 |
-
"es_speaker_2-Male BARK": "v2/es_speaker_2",
|
224 |
-
"es_speaker_3-Male BARK": "v2/es_speaker_3",
|
225 |
-
"es_speaker_4-Male BARK": "v2/es_speaker_4",
|
226 |
-
"es_speaker_5-Male BARK": "v2/es_speaker_5",
|
227 |
-
"es_speaker_6-Male BARK": "v2/es_speaker_6",
|
228 |
-
"es_speaker_7-Male BARK": "v2/es_speaker_7",
|
229 |
-
"es_speaker_8-Female BARK": "v2/es_speaker_8",
|
230 |
-
"es_speaker_9-Female BARK": "v2/es_speaker_9",
|
231 |
-
"fr_speaker_0-Male BARK": "v2/fr_speaker_0",
|
232 |
-
"fr_speaker_1-Female BARK": "v2/fr_speaker_1",
|
233 |
-
"fr_speaker_2-Female BARK": "v2/fr_speaker_2",
|
234 |
-
"fr_speaker_3-Male BARK": "v2/fr_speaker_3",
|
235 |
-
"fr_speaker_4-Male BARK": "v2/fr_speaker_4",
|
236 |
-
"fr_speaker_5-Female BARK": "v2/fr_speaker_5",
|
237 |
-
"fr_speaker_6-Male BARK": "v2/fr_speaker_6",
|
238 |
-
"fr_speaker_7-Male BARK": "v2/fr_speaker_7",
|
239 |
-
"fr_speaker_8-Male BARK": "v2/fr_speaker_8",
|
240 |
-
"fr_speaker_9-Male BARK": "v2/fr_speaker_9",
|
241 |
-
"hi_speaker_0-Female BARK": "v2/hi_speaker_0",
|
242 |
-
"hi_speaker_1-Female BARK": "v2/hi_speaker_1",
|
243 |
-
"hi_speaker_2-Male BARK": "v2/hi_speaker_2",
|
244 |
-
"hi_speaker_3-Female BARK": "v2/hi_speaker_3",
|
245 |
-
"hi_speaker_4-Female BARK": "v2/hi_speaker_4",
|
246 |
-
"hi_speaker_5-Male BARK": "v2/hi_speaker_5",
|
247 |
-
"hi_speaker_6-Male BARK": "v2/hi_speaker_6",
|
248 |
-
"hi_speaker_7-Male BARK": "v2/hi_speaker_7",
|
249 |
-
"hi_speaker_8-Male BARK": "v2/hi_speaker_8",
|
250 |
-
"hi_speaker_9-Female BARK": "v2/hi_speaker_9",
|
251 |
-
"it_speaker_0-Male BARK": "v2/it_speaker_0",
|
252 |
-
"it_speaker_1-Male BARK": "v2/it_speaker_1",
|
253 |
-
"it_speaker_2-Female BARK": "v2/it_speaker_2",
|
254 |
-
"it_speaker_3-Male BARK": "v2/it_speaker_3",
|
255 |
-
"it_speaker_4-Male BARK": "v2/it_speaker_4",
|
256 |
-
"it_speaker_5-Male BARK": "v2/it_speaker_5",
|
257 |
-
"it_speaker_6-Male BARK": "v2/it_speaker_6",
|
258 |
-
"it_speaker_7-Female BARK": "v2/it_speaker_7",
|
259 |
-
"it_speaker_8-Male BARK": "v2/it_speaker_8",
|
260 |
-
"it_speaker_9-Female BARK": "v2/it_speaker_9",
|
261 |
-
"ja_speaker_0-Female BARK": "v2/ja_speaker_0",
|
262 |
-
"ja_speaker_1-Female BARK": "v2/ja_speaker_1",
|
263 |
-
"ja_speaker_2-Male BARK": "v2/ja_speaker_2",
|
264 |
-
"ja_speaker_3-Female BARK": "v2/ja_speaker_3",
|
265 |
-
"ja_speaker_4-Female BARK": "v2/ja_speaker_4",
|
266 |
-
"ja_speaker_5-Female BARK": "v2/ja_speaker_5",
|
267 |
-
"ja_speaker_6-Male BARK": "v2/ja_speaker_6",
|
268 |
-
"ja_speaker_7-Female BARK": "v2/ja_speaker_7",
|
269 |
-
"ja_speaker_8-Female BARK": "v2/ja_speaker_8",
|
270 |
-
"ja_speaker_9-Female BARK": "v2/ja_speaker_9",
|
271 |
-
"ko_speaker_0-Female BARK": "v2/ko_speaker_0",
|
272 |
-
"ko_speaker_1-Male BARK": "v2/ko_speaker_1",
|
273 |
-
"ko_speaker_2-Male BARK": "v2/ko_speaker_2",
|
274 |
-
"ko_speaker_3-Male BARK": "v2/ko_speaker_3",
|
275 |
-
"ko_speaker_4-Male BARK": "v2/ko_speaker_4",
|
276 |
-
"ko_speaker_5-Male BARK": "v2/ko_speaker_5",
|
277 |
-
"ko_speaker_6-Male BARK": "v2/ko_speaker_6",
|
278 |
-
"ko_speaker_7-Male BARK": "v2/ko_speaker_7",
|
279 |
-
"ko_speaker_8-Male BARK": "v2/ko_speaker_8",
|
280 |
-
"ko_speaker_9-Male BARK": "v2/ko_speaker_9",
|
281 |
-
"pl_speaker_0-Male BARK": "v2/pl_speaker_0",
|
282 |
-
"pl_speaker_1-Male BARK": "v2/pl_speaker_1",
|
283 |
-
"pl_speaker_2-Male BARK": "v2/pl_speaker_2",
|
284 |
-
"pl_speaker_3-Male BARK": "v2/pl_speaker_3",
|
285 |
-
"pl_speaker_4-Female BARK": "v2/pl_speaker_4",
|
286 |
-
"pl_speaker_5-Male BARK": "v2/pl_speaker_5",
|
287 |
-
"pl_speaker_6-Female BARK": "v2/pl_speaker_6",
|
288 |
-
"pl_speaker_7-Male BARK": "v2/pl_speaker_7",
|
289 |
-
"pl_speaker_8-Male BARK": "v2/pl_speaker_8",
|
290 |
-
"pl_speaker_9-Female BARK": "v2/pl_speaker_9",
|
291 |
-
"pt_speaker_0-Male BARK": "v2/pt_speaker_0",
|
292 |
-
"pt_speaker_1-Male BARK": "v2/pt_speaker_1",
|
293 |
-
"pt_speaker_2-Male BARK": "v2/pt_speaker_2",
|
294 |
-
"pt_speaker_3-Male BARK": "v2/pt_speaker_3",
|
295 |
-
"pt_speaker_4-Male BARK": "v2/pt_speaker_4",
|
296 |
-
"pt_speaker_5-Male BARK": "v2/pt_speaker_5",
|
297 |
-
"pt_speaker_6-Male BARK": "v2/pt_speaker_6",
|
298 |
-
"pt_speaker_7-Male BARK": "v2/pt_speaker_7",
|
299 |
-
"pt_speaker_8-Male BARK": "v2/pt_speaker_8",
|
300 |
-
"pt_speaker_9-Male BARK": "v2/pt_speaker_9",
|
301 |
-
"ru_speaker_0-Male BARK": "v2/ru_speaker_0",
|
302 |
-
"ru_speaker_1-Male BARK": "v2/ru_speaker_1",
|
303 |
-
"ru_speaker_2-Male BARK": "v2/ru_speaker_2",
|
304 |
-
"ru_speaker_3-Male BARK": "v2/ru_speaker_3",
|
305 |
-
"ru_speaker_4-Male BARK": "v2/ru_speaker_4",
|
306 |
-
"ru_speaker_5-Female BARK": "v2/ru_speaker_5",
|
307 |
-
"ru_speaker_6-Female BARK": "v2/ru_speaker_6",
|
308 |
-
"ru_speaker_7-Male BARK": "v2/ru_speaker_7",
|
309 |
-
"ru_speaker_8-Male BARK": "v2/ru_speaker_8",
|
310 |
-
"ru_speaker_9-Female BARK": "v2/ru_speaker_9",
|
311 |
-
"tr_speaker_0-Male BARK": "v2/tr_speaker_0",
|
312 |
-
"tr_speaker_1-Male BARK": "v2/tr_speaker_1",
|
313 |
-
"tr_speaker_2-Male BARK": "v2/tr_speaker_2",
|
314 |
-
"tr_speaker_3-Male BARK": "v2/tr_speaker_3",
|
315 |
-
"tr_speaker_4-Female BARK": "v2/tr_speaker_4",
|
316 |
-
"tr_speaker_5-Female BARK": "v2/tr_speaker_5",
|
317 |
-
"tr_speaker_6-Male BARK": "v2/tr_speaker_6",
|
318 |
-
"tr_speaker_7-Male BARK": "v2/tr_speaker_7",
|
319 |
-
"tr_speaker_8-Male BARK": "v2/tr_speaker_8",
|
320 |
-
"tr_speaker_9-Male BARK": "v2/tr_speaker_9",
|
321 |
-
"zh_speaker_0-Male BARK": "v2/zh_speaker_0",
|
322 |
-
"zh_speaker_1-Male BARK": "v2/zh_speaker_1",
|
323 |
-
"zh_speaker_2-Male BARK": "v2/zh_speaker_2",
|
324 |
-
"zh_speaker_3-Male BARK": "v2/zh_speaker_3",
|
325 |
-
"zh_speaker_4-Female BARK": "v2/zh_speaker_4",
|
326 |
-
"zh_speaker_5-Male BARK": "v2/zh_speaker_5",
|
327 |
-
"zh_speaker_6-Female BARK": "v2/zh_speaker_6",
|
328 |
-
"zh_speaker_7-Female BARK": "v2/zh_speaker_7",
|
329 |
-
"zh_speaker_8-Male BARK": "v2/zh_speaker_8",
|
330 |
-
"zh_speaker_9-Female BARK": "v2/zh_speaker_9",
|
331 |
-
}
|
332 |
-
|
333 |
-
VITS_VOICES_LIST = {
|
334 |
-
"ar-facebook-mms VITS": "facebook/mms-tts-ara",
|
335 |
-
# 'zh-facebook-mms VITS': 'facebook/mms-tts-cmn',
|
336 |
-
"zh_Hakka-facebook-mms VITS": "facebook/mms-tts-hak",
|
337 |
-
"zh_MinNan-facebook-mms VITS": "facebook/mms-tts-nan",
|
338 |
-
# 'cs-facebook-mms VITS': 'facebook/mms-tts-ces',
|
339 |
-
# 'da-facebook-mms VITS': 'facebook/mms-tts-dan',
|
340 |
-
"nl-facebook-mms VITS": "facebook/mms-tts-nld",
|
341 |
-
"en-facebook-mms VITS": "facebook/mms-tts-eng",
|
342 |
-
"fi-facebook-mms VITS": "facebook/mms-tts-fin",
|
343 |
-
"fr-facebook-mms VITS": "facebook/mms-tts-fra",
|
344 |
-
"de-facebook-mms VITS": "facebook/mms-tts-deu",
|
345 |
-
"el-facebook-mms VITS": "facebook/mms-tts-ell",
|
346 |
-
"el_Ancient-facebook-mms VITS": "facebook/mms-tts-grc",
|
347 |
-
"he-facebook-mms VITS": "facebook/mms-tts-heb",
|
348 |
-
"hu-facebook-mms VITS": "facebook/mms-tts-hun",
|
349 |
-
# 'it-facebook-mms VITS': 'facebook/mms-tts-ita',
|
350 |
-
# 'ja-facebook-mms VITS': 'facebook/mms-tts-jpn',
|
351 |
-
"ko-facebook-mms VITS": "facebook/mms-tts-kor",
|
352 |
-
"fa-facebook-mms VITS": "facebook/mms-tts-fas",
|
353 |
-
"pl-facebook-mms VITS": "facebook/mms-tts-pol",
|
354 |
-
"pt-facebook-mms VITS": "facebook/mms-tts-por",
|
355 |
-
"ru-facebook-mms VITS": "facebook/mms-tts-rus",
|
356 |
-
"es-facebook-mms VITS": "facebook/mms-tts-spa",
|
357 |
-
"tr-facebook-mms VITS": "facebook/mms-tts-tur",
|
358 |
-
"uk-facebook-mms VITS": "facebook/mms-tts-ukr",
|
359 |
-
"ur_arabic-facebook-mms VITS": "facebook/mms-tts-urd-script_arabic",
|
360 |
-
"ur_devanagari-facebook-mms VITS": "facebook/mms-tts-urd-script_devanagari",
|
361 |
-
"ur_latin-facebook-mms VITS": "facebook/mms-tts-urd-script_latin",
|
362 |
-
"vi-facebook-mms VITS": "facebook/mms-tts-vie",
|
363 |
-
"hi-facebook-mms VITS": "facebook/mms-tts-hin",
|
364 |
-
"hi_Fiji-facebook-mms VITS": "facebook/mms-tts-hif",
|
365 |
-
"id-facebook-mms VITS": "facebook/mms-tts-ind",
|
366 |
-
"bn-facebook-mms VITS": "facebook/mms-tts-ben",
|
367 |
-
"te-facebook-mms VITS": "facebook/mms-tts-tel",
|
368 |
-
"mr-facebook-mms VITS": "facebook/mms-tts-mar",
|
369 |
-
"ta-facebook-mms VITS": "facebook/mms-tts-tam",
|
370 |
-
"jw-facebook-mms VITS": "facebook/mms-tts-jav",
|
371 |
-
"jw_Suriname-facebook-mms VITS": "facebook/mms-tts-jvn",
|
372 |
-
"ca-facebook-mms VITS": "facebook/mms-tts-cat",
|
373 |
-
"ne-facebook-mms VITS": "facebook/mms-tts-nep",
|
374 |
-
"th-facebook-mms VITS": "facebook/mms-tts-tha",
|
375 |
-
"th_Northern-facebook-mms VITS": "facebook/mms-tts-nod",
|
376 |
-
"sv-facebook-mms VITS": "facebook/mms-tts-swe",
|
377 |
-
"am-facebook-mms VITS": "facebook/mms-tts-amh",
|
378 |
-
"cy-facebook-mms VITS": "facebook/mms-tts-cym",
|
379 |
-
# "et-facebook-mms VITS": "facebook/mms-tts-est",
|
380 |
-
# "ht-facebook-mms VITS": "facebook/mms-tts-hrv",
|
381 |
-
"is-facebook-mms VITS": "facebook/mms-tts-isl",
|
382 |
-
"km-facebook-mms VITS": "facebook/mms-tts-khm",
|
383 |
-
"km_Northern-facebook-mms VITS": "facebook/mms-tts-kxm",
|
384 |
-
# "sk-facebook-mms VITS": "facebook/mms-tts-slk",
|
385 |
-
"sq_Northern-facebook-mms VITS": "facebook/mms-tts-sqi",
|
386 |
-
"az_South-facebook-mms VITS": "facebook/mms-tts-azb",
|
387 |
-
"az_North_script_cyrillic-facebook-mms VITS": "facebook/mms-tts-azj-script_cyrillic",
|
388 |
-
"az_North_script_latin-facebook-mms VITS": "facebook/mms-tts-azj-script_latin",
|
389 |
-
"bg-facebook-mms VITS": "facebook/mms-tts-bul",
|
390 |
-
# "gl-facebook-mms VITS": "facebook/mms-tts-glg",
|
391 |
-
"gu-facebook-mms VITS": "facebook/mms-tts-guj",
|
392 |
-
"kk-facebook-mms VITS": "facebook/mms-tts-kaz",
|
393 |
-
"kn-facebook-mms VITS": "facebook/mms-tts-kan",
|
394 |
-
# "lt-facebook-mms VITS": "facebook/mms-tts-lit",
|
395 |
-
"lv-facebook-mms VITS": "facebook/mms-tts-lav",
|
396 |
-
# "mk-facebook-mms VITS": "facebook/mms-tts-mkd",
|
397 |
-
"ml-facebook-mms VITS": "facebook/mms-tts-mal",
|
398 |
-
"ms-facebook-mms VITS": "facebook/mms-tts-zlm",
|
399 |
-
"ms_Central-facebook-mms VITS": "facebook/mms-tts-pse",
|
400 |
-
"ms_Manado-facebook-mms VITS": "facebook/mms-tts-xmm",
|
401 |
-
"ro-facebook-mms VITS": "facebook/mms-tts-ron",
|
402 |
-
# "si-facebook-mms VITS": "facebook/mms-tts-sin",
|
403 |
-
"sw-facebook-mms VITS": "facebook/mms-tts-swh",
|
404 |
-
# "af-facebook-mms VITS": "facebook/mms-tts-afr",
|
405 |
-
# "bs-facebook-mms VITS": "facebook/mms-tts-bos",
|
406 |
-
"la-facebook-mms VITS": "facebook/mms-tts-lat",
|
407 |
-
"my-facebook-mms VITS": "facebook/mms-tts-mya",
|
408 |
-
# "no_Bokmål-facebook-mms VITS": "thomasht86/mms-tts-nob", # verify
|
409 |
-
"as-facebook-mms VITS": "facebook/mms-tts-asm",
|
410 |
-
"as_Nagamese-facebook-mms VITS": "facebook/mms-tts-nag",
|
411 |
-
"eu-facebook-mms VITS": "facebook/mms-tts-eus",
|
412 |
-
"ha-facebook-mms VITS": "facebook/mms-tts-hau",
|
413 |
-
"ht-facebook-mms VITS": "facebook/mms-tts-hat",
|
414 |
-
"hy_Western-facebook-mms VITS": "facebook/mms-tts-hyw",
|
415 |
-
"lo-facebook-mms VITS": "facebook/mms-tts-lao",
|
416 |
-
"mg-facebook-mms VITS": "facebook/mms-tts-mlg",
|
417 |
-
"mn-facebook-mms VITS": "facebook/mms-tts-mon",
|
418 |
-
# "mt-facebook-mms VITS": "facebook/mms-tts-mlt",
|
419 |
-
"pa_Eastern-facebook-mms VITS": "facebook/mms-tts-pan",
|
420 |
-
# "pa_Western-facebook-mms VITS": "facebook/mms-tts-pnb",
|
421 |
-
# "ps-facebook-mms VITS": "facebook/mms-tts-pus",
|
422 |
-
# "sl-facebook-mms VITS": "facebook/mms-tts-slv",
|
423 |
-
"sn-facebook-mms VITS": "facebook/mms-tts-sna",
|
424 |
-
"so-facebook-mms VITS": "facebook/mms-tts-son",
|
425 |
-
"tg-facebook-mms VITS": "facebook/mms-tts-tgk",
|
426 |
-
"tk_script_arabic-facebook-mms VITS": "facebook/mms-tts-tuk-script_arabic",
|
427 |
-
"tk_script_latin-facebook-mms VITS": "facebook/mms-tts-tuk-script_latin",
|
428 |
-
"tt-facebook-mms VITS": "facebook/mms-tts-tat",
|
429 |
-
"tt_Crimean-facebook-mms VITS": "facebook/mms-tts-crh",
|
430 |
-
"uz_script_cyrillic-facebook-mms VITS": "facebook/mms-tts-uzb-script_cyrillic",
|
431 |
-
"yo-facebook-mms VITS": "facebook/mms-tts-yor",
|
432 |
-
"ay-facebook-mms VITS": "facebook/mms-tts-ayr",
|
433 |
-
"bm-facebook-mms VITS": "facebook/mms-tts-bam",
|
434 |
-
"ceb-facebook-mms VITS": "facebook/mms-tts-ceb",
|
435 |
-
"ny-facebook-mms VITS": "facebook/mms-tts-nya",
|
436 |
-
"dv-facebook-mms VITS": "facebook/mms-tts-div",
|
437 |
-
"doi-facebook-mms VITS": "facebook/mms-tts-dgo",
|
438 |
-
"ee-facebook-mms VITS": "facebook/mms-tts-ewe",
|
439 |
-
"gn-facebook-mms VITS": "facebook/mms-tts-grn",
|
440 |
-
"ilo-facebook-mms VITS": "facebook/mms-tts-ilo",
|
441 |
-
"rw-facebook-mms VITS": "facebook/mms-tts-kin",
|
442 |
-
"kri-facebook-mms VITS": "facebook/mms-tts-kri",
|
443 |
-
"ku_script_arabic-facebook-mms VITS": "facebook/mms-tts-kmr-script_arabic",
|
444 |
-
"ku_script_cyrillic-facebook-mms VITS": "facebook/mms-tts-kmr-script_cyrillic",
|
445 |
-
"ku_script_latin-facebook-mms VITS": "facebook/mms-tts-kmr-script_latin",
|
446 |
-
"ckb-facebook-mms VITS": "razhan/mms-tts-ckb", # Verify w
|
447 |
-
"ky-facebook-mms VITS": "facebook/mms-tts-kir",
|
448 |
-
"lg-facebook-mms VITS": "facebook/mms-tts-lug",
|
449 |
-
"mai-facebook-mms VITS": "facebook/mms-tts-mai",
|
450 |
-
"or-facebook-mms VITS": "facebook/mms-tts-ory",
|
451 |
-
"om-facebook-mms VITS": "facebook/mms-tts-orm",
|
452 |
-
"qu_Huallaga-facebook-mms VITS": "facebook/mms-tts-qub",
|
453 |
-
"qu_Lambayeque-facebook-mms VITS": "facebook/mms-tts-quf",
|
454 |
-
"qu_South_Bolivian-facebook-mms VITS": "facebook/mms-tts-quh",
|
455 |
-
"qu_North_Bolivian-facebook-mms VITS": "facebook/mms-tts-qul",
|
456 |
-
"qu_Tena_Lowland-facebook-mms VITS": "facebook/mms-tts-quw",
|
457 |
-
"qu_Ayacucho-facebook-mms VITS": "facebook/mms-tts-quy",
|
458 |
-
"qu_Cusco-facebook-mms VITS": "facebook/mms-tts-quz",
|
459 |
-
"qu_Cajamarca-facebook-mms VITS": "facebook/mms-tts-qvc",
|
460 |
-
"qu_Eastern_Apurímac-facebook-mms VITS": "facebook/mms-tts-qve",
|
461 |
-
"qu_Huamalíes_Dos_de_Mayo_Huánuco-facebook-mms VITS": "facebook/mms-tts-qvh",
|
462 |
-
"qu_Margos_Yarowilca_Lauricocha-facebook-mms VITS": "facebook/mms-tts-qvm",
|
463 |
-
"qu_North_Junín-facebook-mms VITS": "facebook/mms-tts-qvn",
|
464 |
-
"qu_Napo-facebook-mms VITS": "facebook/mms-tts-qvo",
|
465 |
-
"qu_San_Martín-facebook-mms VITS": "facebook/mms-tts-qvs",
|
466 |
-
"qu_Huaylla_Wanca-facebook-mms VITS": "facebook/mms-tts-qvw",
|
467 |
-
"qu_Northern_Pastaza-facebook-mms VITS": "facebook/mms-tts-qvz",
|
468 |
-
"qu_Huaylas_Ancash-facebook-mms VITS": "facebook/mms-tts-qwh",
|
469 |
-
"qu_Panao-facebook-mms VITS": "facebook/mms-tts-qxh",
|
470 |
-
"qu_Salasaca_Highland-facebook-mms VITS": "facebook/mms-tts-qxl",
|
471 |
-
"qu_Northern_Conchucos_Ancash-facebook-mms VITS": "facebook/mms-tts-qxn",
|
472 |
-
"qu_Southern_Conchucos-facebook-mms VITS": "facebook/mms-tts-qxo",
|
473 |
-
"qu_Cañar_Highland-facebook-mms VITS": "facebook/mms-tts-qxr",
|
474 |
-
"sm-facebook-mms VITS": "facebook/mms-tts-smo",
|
475 |
-
"ti-facebook-mms VITS": "facebook/mms-tts-tir",
|
476 |
-
"ts-facebook-mms VITS": "facebook/mms-tts-tso",
|
477 |
-
"ak-facebook-mms VITS": "facebook/mms-tts-aka",
|
478 |
-
"ug_script_arabic-facebook-mms VITS": "facebook/mms-tts-uig-script_arabic",
|
479 |
-
"ug_script_cyrillic-facebook-mms VITS": "facebook/mms-tts-uig-script_cyrillic",
|
480 |
-
}
|
481 |
-
|
482 |
-
OPENAI_TTS_CODES = [
|
483 |
-
"af", "ar", "hy", "az", "be", "bs", "bg", "ca", "zh", "hr", "cs", "da",
|
484 |
-
"nl", "en", "et", "fi", "fr", "gl", "de", "el", "he", "hi", "hu", "is",
|
485 |
-
"id", "it", "ja", "kn", "kk", "ko", "lv", "lt", "mk", "ms", "mr", "mi",
|
486 |
-
"ne", "no", "fa", "pl", "pt", "ro", "ru", "sr", "sk", "sl", "es", "sw",
|
487 |
-
"sv", "tl", "ta", "th", "tr", "uk", "ur", "vi", "cy", "zh-TW"
|
488 |
-
]
|
489 |
-
|
490 |
-
OPENAI_TTS_MODELS = [
|
491 |
-
">alloy OpenAI-TTS",
|
492 |
-
">echo OpenAI-TTS",
|
493 |
-
">fable OpenAI-TTS",
|
494 |
-
">onyx OpenAI-TTS",
|
495 |
-
">nova OpenAI-TTS",
|
496 |
-
">shimmer OpenAI-TTS",
|
497 |
-
">alloy HD OpenAI-TTS",
|
498 |
-
">echo HD OpenAI-TTS",
|
499 |
-
">fable HD OpenAI-TTS",
|
500 |
-
">onyx HD OpenAI-TTS",
|
501 |
-
">nova HD OpenAI-TTS",
|
502 |
-
">shimmer HD OpenAI-TTS"
|
503 |
-
]
|
504 |
-
|
505 |
-
LANGUAGE_CODE_IN_THREE_LETTERS = {
|
506 |
-
"Automatic detection": "aut",
|
507 |
-
"ar": "ara",
|
508 |
-
"zh": "chi",
|
509 |
-
"cs": "cze",
|
510 |
-
"da": "dan",
|
511 |
-
"nl": "dut",
|
512 |
-
"en": "eng",
|
513 |
-
"fi": "fin",
|
514 |
-
"fr": "fre",
|
515 |
-
"de": "ger",
|
516 |
-
"el": "gre",
|
517 |
-
"he": "heb",
|
518 |
-
"hu": "hun",
|
519 |
-
"it": "ita",
|
520 |
-
"ja": "jpn",
|
521 |
-
"ko": "kor",
|
522 |
-
"fa": "per",
|
523 |
-
"pl": "pol",
|
524 |
-
"pt": "por",
|
525 |
-
"ru": "rus",
|
526 |
-
"es": "spa",
|
527 |
-
"tr": "tur",
|
528 |
-
"uk": "ukr",
|
529 |
-
"ur": "urd",
|
530 |
-
"vi": "vie",
|
531 |
-
"hi": "hin",
|
532 |
-
"id": "ind",
|
533 |
-
"bn": "ben",
|
534 |
-
"te": "tel",
|
535 |
-
"mr": "mar",
|
536 |
-
"ta": "tam",
|
537 |
-
"jw": "jav",
|
538 |
-
"ca": "cat",
|
539 |
-
"ne": "nep",
|
540 |
-
"th": "tha",
|
541 |
-
"sv": "swe",
|
542 |
-
"am": "amh",
|
543 |
-
"cy": "cym",
|
544 |
-
"et": "est",
|
545 |
-
"hr": "hrv",
|
546 |
-
"is": "isl",
|
547 |
-
"km": "khm",
|
548 |
-
"sk": "slk",
|
549 |
-
"sq": "sqi",
|
550 |
-
"sr": "srp",
|
551 |
-
}
|
|
|
1 |
+
from .logging_setup import logger
|
2 |
+
|
3 |
+
LANGUAGES_UNIDIRECTIONAL = {
|
4 |
+
"Aymara (ay)": "ay",
|
5 |
+
"Bambara (bm)": "bm",
|
6 |
+
"Cebuano (ceb)": "ceb",
|
7 |
+
"Chichewa (ny)": "ny",
|
8 |
+
"Divehi (dv)": "dv",
|
9 |
+
"Dogri (doi)": "doi",
|
10 |
+
"Ewe (ee)": "ee",
|
11 |
+
"Guarani (gn)": "gn",
|
12 |
+
"Iloko (ilo)": "ilo",
|
13 |
+
"Kinyarwanda (rw)": "rw",
|
14 |
+
"Krio (kri)": "kri",
|
15 |
+
"Kurdish (ku)": "ku",
|
16 |
+
"Kirghiz (ky)": "ky",
|
17 |
+
"Ganda (lg)": "lg",
|
18 |
+
"Maithili (mai)": "mai",
|
19 |
+
"Oriya (or)": "or",
|
20 |
+
"Oromo (om)": "om",
|
21 |
+
"Quechua (qu)": "qu",
|
22 |
+
"Samoan (sm)": "sm",
|
23 |
+
"Tigrinya (ti)": "ti",
|
24 |
+
"Tsonga (ts)": "ts",
|
25 |
+
"Akan (ak)": "ak",
|
26 |
+
"Uighur (ug)": "ug"
|
27 |
+
}
|
28 |
+
|
29 |
+
UNIDIRECTIONAL_L_LIST = LANGUAGES_UNIDIRECTIONAL.keys()
|
30 |
+
|
31 |
+
LANGUAGES = {
|
32 |
+
"Automatic detection": "Automatic detection",
|
33 |
+
"Arabic (ar)": "ar",
|
34 |
+
"Chinese - Simplified (zh-CN)": "zh",
|
35 |
+
"Czech (cs)": "cs",
|
36 |
+
"Danish (da)": "da",
|
37 |
+
"Dutch (nl)": "nl",
|
38 |
+
"English (en)": "en",
|
39 |
+
"Finnish (fi)": "fi",
|
40 |
+
"French (fr)": "fr",
|
41 |
+
"German (de)": "de",
|
42 |
+
"Greek (el)": "el",
|
43 |
+
"Hebrew (he)": "he",
|
44 |
+
"Hungarian (hu)": "hu",
|
45 |
+
"Italian (it)": "it",
|
46 |
+
"Japanese (ja)": "ja",
|
47 |
+
"Korean (ko)": "ko",
|
48 |
+
"Persian (fa)": "fa", # no aux gTTS
|
49 |
+
"Polish (pl)": "pl",
|
50 |
+
"Portuguese (pt)": "pt",
|
51 |
+
"Russian (ru)": "ru",
|
52 |
+
"Spanish (es)": "es",
|
53 |
+
"Turkish (tr)": "tr",
|
54 |
+
"Ukrainian (uk)": "uk",
|
55 |
+
"Urdu (ur)": "ur",
|
56 |
+
"Vietnamese (vi)": "vi",
|
57 |
+
"Hindi (hi)": "hi",
|
58 |
+
"Indonesian (id)": "id",
|
59 |
+
"Bengali (bn)": "bn",
|
60 |
+
"Telugu (te)": "te",
|
61 |
+
"Marathi (mr)": "mr",
|
62 |
+
"Tamil (ta)": "ta",
|
63 |
+
"Javanese (jw|jv)": "jw",
|
64 |
+
"Catalan (ca)": "ca",
|
65 |
+
"Nepali (ne)": "ne",
|
66 |
+
"Thai (th)": "th",
|
67 |
+
"Swedish (sv)": "sv",
|
68 |
+
"Amharic (am)": "am",
|
69 |
+
"Welsh (cy)": "cy", # no aux gTTS
|
70 |
+
"Estonian (et)": "et",
|
71 |
+
"Croatian (hr)": "hr",
|
72 |
+
"Icelandic (is)": "is",
|
73 |
+
"Georgian (ka)": "ka", # no aux gTTS
|
74 |
+
"Khmer (km)": "km",
|
75 |
+
"Slovak (sk)": "sk",
|
76 |
+
"Albanian (sq)": "sq",
|
77 |
+
"Serbian (sr)": "sr",
|
78 |
+
"Azerbaijani (az)": "az", # no aux gTTS
|
79 |
+
"Bulgarian (bg)": "bg",
|
80 |
+
"Galician (gl)": "gl", # no aux gTTS
|
81 |
+
"Gujarati (gu)": "gu",
|
82 |
+
"Kazakh (kk)": "kk", # no aux gTTS
|
83 |
+
"Kannada (kn)": "kn",
|
84 |
+
"Lithuanian (lt)": "lt", # no aux gTTS
|
85 |
+
"Latvian (lv)": "lv",
|
86 |
+
"Macedonian (mk)": "mk", # no aux gTTS # error get align model
|
87 |
+
"Malayalam (ml)": "ml",
|
88 |
+
"Malay (ms)": "ms", # error get align model
|
89 |
+
"Romanian (ro)": "ro",
|
90 |
+
"Sinhala (si)": "si",
|
91 |
+
"Sundanese (su)": "su",
|
92 |
+
"Swahili (sw)": "sw", # error aling
|
93 |
+
"Afrikaans (af)": "af",
|
94 |
+
"Bosnian (bs)": "bs",
|
95 |
+
"Latin (la)": "la",
|
96 |
+
"Myanmar Burmese (my)": "my",
|
97 |
+
"Norwegian (no|nb)": "no",
|
98 |
+
"Chinese - Traditional (zh-TW)": "zh-TW",
|
99 |
+
"Assamese (as)": "as",
|
100 |
+
"Basque (eu)": "eu",
|
101 |
+
"Hausa (ha)": "ha",
|
102 |
+
"Haitian Creole (ht)": "ht",
|
103 |
+
"Armenian (hy)": "hy",
|
104 |
+
"Lao (lo)": "lo",
|
105 |
+
"Malagasy (mg)": "mg",
|
106 |
+
"Mongolian (mn)": "mn",
|
107 |
+
"Maltese (mt)": "mt",
|
108 |
+
"Punjabi (pa)": "pa",
|
109 |
+
"Pashto (ps)": "ps",
|
110 |
+
"Slovenian (sl)": "sl",
|
111 |
+
"Shona (sn)": "sn",
|
112 |
+
"Somali (so)": "so",
|
113 |
+
"Tajik (tg)": "tg",
|
114 |
+
"Turkmen (tk)": "tk",
|
115 |
+
"Tatar (tt)": "tt",
|
116 |
+
"Uzbek (uz)": "uz",
|
117 |
+
"Yoruba (yo)": "yo",
|
118 |
+
**LANGUAGES_UNIDIRECTIONAL
|
119 |
+
}
|
120 |
+
|
121 |
+
BASE_L_LIST = LANGUAGES.keys()
|
122 |
+
LANGUAGES_LIST = [list(BASE_L_LIST)[0]] + sorted(list(BASE_L_LIST)[1:])
|
123 |
+
INVERTED_LANGUAGES = {value: key for key, value in LANGUAGES.items()}
|
124 |
+
|
125 |
+
EXTRA_ALIGN = {
|
126 |
+
"id": "indonesian-nlp/wav2vec2-large-xlsr-indonesian",
|
127 |
+
"bn": "arijitx/wav2vec2-large-xlsr-bengali",
|
128 |
+
"mr": "sumedh/wav2vec2-large-xlsr-marathi",
|
129 |
+
"ta": "Amrrs/wav2vec2-large-xlsr-53-tamil",
|
130 |
+
"jw": "cahya/wav2vec2-large-xlsr-javanese",
|
131 |
+
"ne": "shniranjan/wav2vec2-large-xlsr-300m-nepali",
|
132 |
+
"th": "sakares/wav2vec2-large-xlsr-thai-demo",
|
133 |
+
"sv": "KBLab/wav2vec2-large-voxrex-swedish",
|
134 |
+
"am": "agkphysics/wav2vec2-large-xlsr-53-amharic",
|
135 |
+
"cy": "Srulikbdd/Wav2Vec2-large-xlsr-welsh",
|
136 |
+
"et": "anton-l/wav2vec2-large-xlsr-53-estonian",
|
137 |
+
"hr": "classla/wav2vec2-xls-r-parlaspeech-hr",
|
138 |
+
"is": "carlosdanielhernandezmena/wav2vec2-large-xlsr-53-icelandic-ep10-1000h",
|
139 |
+
"ka": "MehdiHosseiniMoghadam/wav2vec2-large-xlsr-53-Georgian",
|
140 |
+
"km": "vitouphy/wav2vec2-xls-r-300m-khmer",
|
141 |
+
"sk": "infinitejoy/wav2vec2-large-xls-r-300m-slovak",
|
142 |
+
"sq": "Alimzhan/wav2vec2-large-xls-r-300m-albanian-colab",
|
143 |
+
"sr": "dnikolic/wav2vec2-xlsr-530-serbian-colab",
|
144 |
+
"az": "nijatzeynalov/wav2vec2-large-mms-1b-azerbaijani-common_voice15.0",
|
145 |
+
"bg": "infinitejoy/wav2vec2-large-xls-r-300m-bulgarian",
|
146 |
+
"gl": "ifrz/wav2vec2-large-xlsr-galician",
|
147 |
+
"gu": "Harveenchadha/vakyansh-wav2vec2-gujarati-gnm-100",
|
148 |
+
"kk": "aismlv/wav2vec2-large-xlsr-kazakh",
|
149 |
+
"kn": "Harveenchadha/vakyansh-wav2vec2-kannada-knm-560",
|
150 |
+
"lt": "DeividasM/wav2vec2-large-xlsr-53-lithuanian",
|
151 |
+
"lv": "anton-l/wav2vec2-large-xlsr-53-latvian",
|
152 |
+
"mk": "", # Konstantin-Bogdanoski/wav2vec2-macedonian-base
|
153 |
+
"ml": "gvs/wav2vec2-large-xlsr-malayalam",
|
154 |
+
"ms": "", # Duy/wav2vec2_malay
|
155 |
+
"ro": "anton-l/wav2vec2-large-xlsr-53-romanian",
|
156 |
+
"si": "IAmNotAnanth/wav2vec2-large-xls-r-300m-sinhala",
|
157 |
+
"su": "cahya/wav2vec2-large-xlsr-sundanese",
|
158 |
+
"sw": "", # Lians/fine-tune-wav2vec2-large-swahili
|
159 |
+
"af": "", # ylacombe/wav2vec2-common_voice-af-demo
|
160 |
+
"bs": "",
|
161 |
+
"la": "",
|
162 |
+
"my": "",
|
163 |
+
"no": "NbAiLab/wav2vec2-xlsr-300m-norwegian",
|
164 |
+
"zh-TW": "jonatasgrosman/wav2vec2-large-xlsr-53-chinese-zh-cn",
|
165 |
+
"as": "",
|
166 |
+
"eu": "", # cahya/wav2vec2-large-xlsr-basque # verify
|
167 |
+
"ha": "infinitejoy/wav2vec2-large-xls-r-300m-hausa",
|
168 |
+
"ht": "",
|
169 |
+
"hy": "infinitejoy/wav2vec2-large-xls-r-300m-armenian", # no (.)
|
170 |
+
"lo": "",
|
171 |
+
"mg": "",
|
172 |
+
"mn": "tugstugi/wav2vec2-large-xlsr-53-mongolian",
|
173 |
+
"mt": "carlosdanielhernandezmena/wav2vec2-large-xlsr-53-maltese-64h",
|
174 |
+
"pa": "kingabzpro/wav2vec2-large-xlsr-53-punjabi",
|
175 |
+
"ps": "aamirhs/wav2vec2-large-xls-r-300m-pashto-colab",
|
176 |
+
"sl": "anton-l/wav2vec2-large-xlsr-53-slovenian",
|
177 |
+
"sn": "",
|
178 |
+
"so": "",
|
179 |
+
"tg": "",
|
180 |
+
"tk": "", # Ragav/wav2vec2-tk
|
181 |
+
"tt": "anton-l/wav2vec2-large-xlsr-53-tatar",
|
182 |
+
"uz": "", # Mekhriddin/wav2vec2-large-xls-r-300m-uzbek-colab
|
183 |
+
"yo": "ogbi/wav2vec2-large-mms-1b-yoruba-test",
|
184 |
+
}
|
185 |
+
|
186 |
+
|
187 |
+
def fix_code_language(translate_to, syntax="google"):
|
188 |
+
if syntax == "google":
|
189 |
+
# google-translator, gTTS
|
190 |
+
replace_lang_code = {"zh": "zh-CN", "he": "iw", "zh-cn": "zh-CN"}
|
191 |
+
elif syntax == "coqui":
|
192 |
+
# coqui-xtts
|
193 |
+
replace_lang_code = {"zh": "zh-cn", "zh-CN": "zh-cn", "zh-TW": "zh-cn"}
|
194 |
+
|
195 |
+
new_code_lang = replace_lang_code.get(translate_to, translate_to)
|
196 |
+
logger.debug(f"Fix code {translate_to} -> {new_code_lang}")
|
197 |
+
return new_code_lang
|
198 |
+
|
199 |
+
|
200 |
+
BARK_VOICES_LIST = {
|
201 |
+
"de_speaker_0-Male BARK": "v2/de_speaker_0",
|
202 |
+
"de_speaker_1-Male BARK": "v2/de_speaker_1",
|
203 |
+
"de_speaker_2-Male BARK": "v2/de_speaker_2",
|
204 |
+
"de_speaker_3-Female BARK": "v2/de_speaker_3",
|
205 |
+
"de_speaker_4-Male BARK": "v2/de_speaker_4",
|
206 |
+
"de_speaker_5-Male BARK": "v2/de_speaker_5",
|
207 |
+
"de_speaker_6-Male BARK": "v2/de_speaker_6",
|
208 |
+
"de_speaker_7-Male BARK": "v2/de_speaker_7",
|
209 |
+
"de_speaker_8-Female BARK": "v2/de_speaker_8",
|
210 |
+
"de_speaker_9-Male BARK": "v2/de_speaker_9",
|
211 |
+
"en_speaker_0-Male BARK": "v2/en_speaker_0",
|
212 |
+
"en_speaker_1-Male BARK": "v2/en_speaker_1",
|
213 |
+
"en_speaker_2-Male BARK": "v2/en_speaker_2",
|
214 |
+
"en_speaker_3-Male BARK": "v2/en_speaker_3",
|
215 |
+
"en_speaker_4-Male BARK": "v2/en_speaker_4",
|
216 |
+
"en_speaker_5-Male BARK": "v2/en_speaker_5",
|
217 |
+
"en_speaker_6-Male BARK": "v2/en_speaker_6",
|
218 |
+
"en_speaker_7-Male BARK": "v2/en_speaker_7",
|
219 |
+
"en_speaker_8-Male BARK": "v2/en_speaker_8",
|
220 |
+
"en_speaker_9-Female BARK": "v2/en_speaker_9",
|
221 |
+
"es_speaker_0-Male BARK": "v2/es_speaker_0",
|
222 |
+
"es_speaker_1-Male BARK": "v2/es_speaker_1",
|
223 |
+
"es_speaker_2-Male BARK": "v2/es_speaker_2",
|
224 |
+
"es_speaker_3-Male BARK": "v2/es_speaker_3",
|
225 |
+
"es_speaker_4-Male BARK": "v2/es_speaker_4",
|
226 |
+
"es_speaker_5-Male BARK": "v2/es_speaker_5",
|
227 |
+
"es_speaker_6-Male BARK": "v2/es_speaker_6",
|
228 |
+
"es_speaker_7-Male BARK": "v2/es_speaker_7",
|
229 |
+
"es_speaker_8-Female BARK": "v2/es_speaker_8",
|
230 |
+
"es_speaker_9-Female BARK": "v2/es_speaker_9",
|
231 |
+
"fr_speaker_0-Male BARK": "v2/fr_speaker_0",
|
232 |
+
"fr_speaker_1-Female BARK": "v2/fr_speaker_1",
|
233 |
+
"fr_speaker_2-Female BARK": "v2/fr_speaker_2",
|
234 |
+
"fr_speaker_3-Male BARK": "v2/fr_speaker_3",
|
235 |
+
"fr_speaker_4-Male BARK": "v2/fr_speaker_4",
|
236 |
+
"fr_speaker_5-Female BARK": "v2/fr_speaker_5",
|
237 |
+
"fr_speaker_6-Male BARK": "v2/fr_speaker_6",
|
238 |
+
"fr_speaker_7-Male BARK": "v2/fr_speaker_7",
|
239 |
+
"fr_speaker_8-Male BARK": "v2/fr_speaker_8",
|
240 |
+
"fr_speaker_9-Male BARK": "v2/fr_speaker_9",
|
241 |
+
"hi_speaker_0-Female BARK": "v2/hi_speaker_0",
|
242 |
+
"hi_speaker_1-Female BARK": "v2/hi_speaker_1",
|
243 |
+
"hi_speaker_2-Male BARK": "v2/hi_speaker_2",
|
244 |
+
"hi_speaker_3-Female BARK": "v2/hi_speaker_3",
|
245 |
+
"hi_speaker_4-Female BARK": "v2/hi_speaker_4",
|
246 |
+
"hi_speaker_5-Male BARK": "v2/hi_speaker_5",
|
247 |
+
"hi_speaker_6-Male BARK": "v2/hi_speaker_6",
|
248 |
+
"hi_speaker_7-Male BARK": "v2/hi_speaker_7",
|
249 |
+
"hi_speaker_8-Male BARK": "v2/hi_speaker_8",
|
250 |
+
"hi_speaker_9-Female BARK": "v2/hi_speaker_9",
|
251 |
+
"it_speaker_0-Male BARK": "v2/it_speaker_0",
|
252 |
+
"it_speaker_1-Male BARK": "v2/it_speaker_1",
|
253 |
+
"it_speaker_2-Female BARK": "v2/it_speaker_2",
|
254 |
+
"it_speaker_3-Male BARK": "v2/it_speaker_3",
|
255 |
+
"it_speaker_4-Male BARK": "v2/it_speaker_4",
|
256 |
+
"it_speaker_5-Male BARK": "v2/it_speaker_5",
|
257 |
+
"it_speaker_6-Male BARK": "v2/it_speaker_6",
|
258 |
+
"it_speaker_7-Female BARK": "v2/it_speaker_7",
|
259 |
+
"it_speaker_8-Male BARK": "v2/it_speaker_8",
|
260 |
+
"it_speaker_9-Female BARK": "v2/it_speaker_9",
|
261 |
+
"ja_speaker_0-Female BARK": "v2/ja_speaker_0",
|
262 |
+
"ja_speaker_1-Female BARK": "v2/ja_speaker_1",
|
263 |
+
"ja_speaker_2-Male BARK": "v2/ja_speaker_2",
|
264 |
+
"ja_speaker_3-Female BARK": "v2/ja_speaker_3",
|
265 |
+
"ja_speaker_4-Female BARK": "v2/ja_speaker_4",
|
266 |
+
"ja_speaker_5-Female BARK": "v2/ja_speaker_5",
|
267 |
+
"ja_speaker_6-Male BARK": "v2/ja_speaker_6",
|
268 |
+
"ja_speaker_7-Female BARK": "v2/ja_speaker_7",
|
269 |
+
"ja_speaker_8-Female BARK": "v2/ja_speaker_8",
|
270 |
+
"ja_speaker_9-Female BARK": "v2/ja_speaker_9",
|
271 |
+
"ko_speaker_0-Female BARK": "v2/ko_speaker_0",
|
272 |
+
"ko_speaker_1-Male BARK": "v2/ko_speaker_1",
|
273 |
+
"ko_speaker_2-Male BARK": "v2/ko_speaker_2",
|
274 |
+
"ko_speaker_3-Male BARK": "v2/ko_speaker_3",
|
275 |
+
"ko_speaker_4-Male BARK": "v2/ko_speaker_4",
|
276 |
+
"ko_speaker_5-Male BARK": "v2/ko_speaker_5",
|
277 |
+
"ko_speaker_6-Male BARK": "v2/ko_speaker_6",
|
278 |
+
"ko_speaker_7-Male BARK": "v2/ko_speaker_7",
|
279 |
+
"ko_speaker_8-Male BARK": "v2/ko_speaker_8",
|
280 |
+
"ko_speaker_9-Male BARK": "v2/ko_speaker_9",
|
281 |
+
"pl_speaker_0-Male BARK": "v2/pl_speaker_0",
|
282 |
+
"pl_speaker_1-Male BARK": "v2/pl_speaker_1",
|
283 |
+
"pl_speaker_2-Male BARK": "v2/pl_speaker_2",
|
284 |
+
"pl_speaker_3-Male BARK": "v2/pl_speaker_3",
|
285 |
+
"pl_speaker_4-Female BARK": "v2/pl_speaker_4",
|
286 |
+
"pl_speaker_5-Male BARK": "v2/pl_speaker_5",
|
287 |
+
"pl_speaker_6-Female BARK": "v2/pl_speaker_6",
|
288 |
+
"pl_speaker_7-Male BARK": "v2/pl_speaker_7",
|
289 |
+
"pl_speaker_8-Male BARK": "v2/pl_speaker_8",
|
290 |
+
"pl_speaker_9-Female BARK": "v2/pl_speaker_9",
|
291 |
+
"pt_speaker_0-Male BARK": "v2/pt_speaker_0",
|
292 |
+
"pt_speaker_1-Male BARK": "v2/pt_speaker_1",
|
293 |
+
"pt_speaker_2-Male BARK": "v2/pt_speaker_2",
|
294 |
+
"pt_speaker_3-Male BARK": "v2/pt_speaker_3",
|
295 |
+
"pt_speaker_4-Male BARK": "v2/pt_speaker_4",
|
296 |
+
"pt_speaker_5-Male BARK": "v2/pt_speaker_5",
|
297 |
+
"pt_speaker_6-Male BARK": "v2/pt_speaker_6",
|
298 |
+
"pt_speaker_7-Male BARK": "v2/pt_speaker_7",
|
299 |
+
"pt_speaker_8-Male BARK": "v2/pt_speaker_8",
|
300 |
+
"pt_speaker_9-Male BARK": "v2/pt_speaker_9",
|
301 |
+
"ru_speaker_0-Male BARK": "v2/ru_speaker_0",
|
302 |
+
"ru_speaker_1-Male BARK": "v2/ru_speaker_1",
|
303 |
+
"ru_speaker_2-Male BARK": "v2/ru_speaker_2",
|
304 |
+
"ru_speaker_3-Male BARK": "v2/ru_speaker_3",
|
305 |
+
"ru_speaker_4-Male BARK": "v2/ru_speaker_4",
|
306 |
+
"ru_speaker_5-Female BARK": "v2/ru_speaker_5",
|
307 |
+
"ru_speaker_6-Female BARK": "v2/ru_speaker_6",
|
308 |
+
"ru_speaker_7-Male BARK": "v2/ru_speaker_7",
|
309 |
+
"ru_speaker_8-Male BARK": "v2/ru_speaker_8",
|
310 |
+
"ru_speaker_9-Female BARK": "v2/ru_speaker_9",
|
311 |
+
"tr_speaker_0-Male BARK": "v2/tr_speaker_0",
|
312 |
+
"tr_speaker_1-Male BARK": "v2/tr_speaker_1",
|
313 |
+
"tr_speaker_2-Male BARK": "v2/tr_speaker_2",
|
314 |
+
"tr_speaker_3-Male BARK": "v2/tr_speaker_3",
|
315 |
+
"tr_speaker_4-Female BARK": "v2/tr_speaker_4",
|
316 |
+
"tr_speaker_5-Female BARK": "v2/tr_speaker_5",
|
317 |
+
"tr_speaker_6-Male BARK": "v2/tr_speaker_6",
|
318 |
+
"tr_speaker_7-Male BARK": "v2/tr_speaker_7",
|
319 |
+
"tr_speaker_8-Male BARK": "v2/tr_speaker_8",
|
320 |
+
"tr_speaker_9-Male BARK": "v2/tr_speaker_9",
|
321 |
+
"zh_speaker_0-Male BARK": "v2/zh_speaker_0",
|
322 |
+
"zh_speaker_1-Male BARK": "v2/zh_speaker_1",
|
323 |
+
"zh_speaker_2-Male BARK": "v2/zh_speaker_2",
|
324 |
+
"zh_speaker_3-Male BARK": "v2/zh_speaker_3",
|
325 |
+
"zh_speaker_4-Female BARK": "v2/zh_speaker_4",
|
326 |
+
"zh_speaker_5-Male BARK": "v2/zh_speaker_5",
|
327 |
+
"zh_speaker_6-Female BARK": "v2/zh_speaker_6",
|
328 |
+
"zh_speaker_7-Female BARK": "v2/zh_speaker_7",
|
329 |
+
"zh_speaker_8-Male BARK": "v2/zh_speaker_8",
|
330 |
+
"zh_speaker_9-Female BARK": "v2/zh_speaker_9",
|
331 |
+
}
|
332 |
+
|
333 |
+
VITS_VOICES_LIST = {
|
334 |
+
"ar-facebook-mms VITS": "facebook/mms-tts-ara",
|
335 |
+
# 'zh-facebook-mms VITS': 'facebook/mms-tts-cmn',
|
336 |
+
"zh_Hakka-facebook-mms VITS": "facebook/mms-tts-hak",
|
337 |
+
"zh_MinNan-facebook-mms VITS": "facebook/mms-tts-nan",
|
338 |
+
# 'cs-facebook-mms VITS': 'facebook/mms-tts-ces',
|
339 |
+
# 'da-facebook-mms VITS': 'facebook/mms-tts-dan',
|
340 |
+
"nl-facebook-mms VITS": "facebook/mms-tts-nld",
|
341 |
+
"en-facebook-mms VITS": "facebook/mms-tts-eng",
|
342 |
+
"fi-facebook-mms VITS": "facebook/mms-tts-fin",
|
343 |
+
"fr-facebook-mms VITS": "facebook/mms-tts-fra",
|
344 |
+
"de-facebook-mms VITS": "facebook/mms-tts-deu",
|
345 |
+
"el-facebook-mms VITS": "facebook/mms-tts-ell",
|
346 |
+
"el_Ancient-facebook-mms VITS": "facebook/mms-tts-grc",
|
347 |
+
"he-facebook-mms VITS": "facebook/mms-tts-heb",
|
348 |
+
"hu-facebook-mms VITS": "facebook/mms-tts-hun",
|
349 |
+
# 'it-facebook-mms VITS': 'facebook/mms-tts-ita',
|
350 |
+
# 'ja-facebook-mms VITS': 'facebook/mms-tts-jpn',
|
351 |
+
"ko-facebook-mms VITS": "facebook/mms-tts-kor",
|
352 |
+
"fa-facebook-mms VITS": "facebook/mms-tts-fas",
|
353 |
+
"pl-facebook-mms VITS": "facebook/mms-tts-pol",
|
354 |
+
"pt-facebook-mms VITS": "facebook/mms-tts-por",
|
355 |
+
"ru-facebook-mms VITS": "facebook/mms-tts-rus",
|
356 |
+
"es-facebook-mms VITS": "facebook/mms-tts-spa",
|
357 |
+
"tr-facebook-mms VITS": "facebook/mms-tts-tur",
|
358 |
+
"uk-facebook-mms VITS": "facebook/mms-tts-ukr",
|
359 |
+
"ur_arabic-facebook-mms VITS": "facebook/mms-tts-urd-script_arabic",
|
360 |
+
"ur_devanagari-facebook-mms VITS": "facebook/mms-tts-urd-script_devanagari",
|
361 |
+
"ur_latin-facebook-mms VITS": "facebook/mms-tts-urd-script_latin",
|
362 |
+
"vi-facebook-mms VITS": "facebook/mms-tts-vie",
|
363 |
+
"hi-facebook-mms VITS": "facebook/mms-tts-hin",
|
364 |
+
"hi_Fiji-facebook-mms VITS": "facebook/mms-tts-hif",
|
365 |
+
"id-facebook-mms VITS": "facebook/mms-tts-ind",
|
366 |
+
"bn-facebook-mms VITS": "facebook/mms-tts-ben",
|
367 |
+
"te-facebook-mms VITS": "facebook/mms-tts-tel",
|
368 |
+
"mr-facebook-mms VITS": "facebook/mms-tts-mar",
|
369 |
+
"ta-facebook-mms VITS": "facebook/mms-tts-tam",
|
370 |
+
"jw-facebook-mms VITS": "facebook/mms-tts-jav",
|
371 |
+
"jw_Suriname-facebook-mms VITS": "facebook/mms-tts-jvn",
|
372 |
+
"ca-facebook-mms VITS": "facebook/mms-tts-cat",
|
373 |
+
"ne-facebook-mms VITS": "facebook/mms-tts-nep",
|
374 |
+
"th-facebook-mms VITS": "facebook/mms-tts-tha",
|
375 |
+
"th_Northern-facebook-mms VITS": "facebook/mms-tts-nod",
|
376 |
+
"sv-facebook-mms VITS": "facebook/mms-tts-swe",
|
377 |
+
"am-facebook-mms VITS": "facebook/mms-tts-amh",
|
378 |
+
"cy-facebook-mms VITS": "facebook/mms-tts-cym",
|
379 |
+
# "et-facebook-mms VITS": "facebook/mms-tts-est",
|
380 |
+
# "ht-facebook-mms VITS": "facebook/mms-tts-hrv",
|
381 |
+
"is-facebook-mms VITS": "facebook/mms-tts-isl",
|
382 |
+
"km-facebook-mms VITS": "facebook/mms-tts-khm",
|
383 |
+
"km_Northern-facebook-mms VITS": "facebook/mms-tts-kxm",
|
384 |
+
# "sk-facebook-mms VITS": "facebook/mms-tts-slk",
|
385 |
+
"sq_Northern-facebook-mms VITS": "facebook/mms-tts-sqi",
|
386 |
+
"az_South-facebook-mms VITS": "facebook/mms-tts-azb",
|
387 |
+
"az_North_script_cyrillic-facebook-mms VITS": "facebook/mms-tts-azj-script_cyrillic",
|
388 |
+
"az_North_script_latin-facebook-mms VITS": "facebook/mms-tts-azj-script_latin",
|
389 |
+
"bg-facebook-mms VITS": "facebook/mms-tts-bul",
|
390 |
+
# "gl-facebook-mms VITS": "facebook/mms-tts-glg",
|
391 |
+
"gu-facebook-mms VITS": "facebook/mms-tts-guj",
|
392 |
+
"kk-facebook-mms VITS": "facebook/mms-tts-kaz",
|
393 |
+
"kn-facebook-mms VITS": "facebook/mms-tts-kan",
|
394 |
+
# "lt-facebook-mms VITS": "facebook/mms-tts-lit",
|
395 |
+
"lv-facebook-mms VITS": "facebook/mms-tts-lav",
|
396 |
+
# "mk-facebook-mms VITS": "facebook/mms-tts-mkd",
|
397 |
+
"ml-facebook-mms VITS": "facebook/mms-tts-mal",
|
398 |
+
"ms-facebook-mms VITS": "facebook/mms-tts-zlm",
|
399 |
+
"ms_Central-facebook-mms VITS": "facebook/mms-tts-pse",
|
400 |
+
"ms_Manado-facebook-mms VITS": "facebook/mms-tts-xmm",
|
401 |
+
"ro-facebook-mms VITS": "facebook/mms-tts-ron",
|
402 |
+
# "si-facebook-mms VITS": "facebook/mms-tts-sin",
|
403 |
+
"sw-facebook-mms VITS": "facebook/mms-tts-swh",
|
404 |
+
# "af-facebook-mms VITS": "facebook/mms-tts-afr",
|
405 |
+
# "bs-facebook-mms VITS": "facebook/mms-tts-bos",
|
406 |
+
"la-facebook-mms VITS": "facebook/mms-tts-lat",
|
407 |
+
"my-facebook-mms VITS": "facebook/mms-tts-mya",
|
408 |
+
# "no_Bokmål-facebook-mms VITS": "thomasht86/mms-tts-nob", # verify
|
409 |
+
"as-facebook-mms VITS": "facebook/mms-tts-asm",
|
410 |
+
"as_Nagamese-facebook-mms VITS": "facebook/mms-tts-nag",
|
411 |
+
"eu-facebook-mms VITS": "facebook/mms-tts-eus",
|
412 |
+
"ha-facebook-mms VITS": "facebook/mms-tts-hau",
|
413 |
+
"ht-facebook-mms VITS": "facebook/mms-tts-hat",
|
414 |
+
"hy_Western-facebook-mms VITS": "facebook/mms-tts-hyw",
|
415 |
+
"lo-facebook-mms VITS": "facebook/mms-tts-lao",
|
416 |
+
"mg-facebook-mms VITS": "facebook/mms-tts-mlg",
|
417 |
+
"mn-facebook-mms VITS": "facebook/mms-tts-mon",
|
418 |
+
# "mt-facebook-mms VITS": "facebook/mms-tts-mlt",
|
419 |
+
"pa_Eastern-facebook-mms VITS": "facebook/mms-tts-pan",
|
420 |
+
# "pa_Western-facebook-mms VITS": "facebook/mms-tts-pnb",
|
421 |
+
# "ps-facebook-mms VITS": "facebook/mms-tts-pus",
|
422 |
+
# "sl-facebook-mms VITS": "facebook/mms-tts-slv",
|
423 |
+
"sn-facebook-mms VITS": "facebook/mms-tts-sna",
|
424 |
+
"so-facebook-mms VITS": "facebook/mms-tts-son",
|
425 |
+
"tg-facebook-mms VITS": "facebook/mms-tts-tgk",
|
426 |
+
"tk_script_arabic-facebook-mms VITS": "facebook/mms-tts-tuk-script_arabic",
|
427 |
+
"tk_script_latin-facebook-mms VITS": "facebook/mms-tts-tuk-script_latin",
|
428 |
+
"tt-facebook-mms VITS": "facebook/mms-tts-tat",
|
429 |
+
"tt_Crimean-facebook-mms VITS": "facebook/mms-tts-crh",
|
430 |
+
"uz_script_cyrillic-facebook-mms VITS": "facebook/mms-tts-uzb-script_cyrillic",
|
431 |
+
"yo-facebook-mms VITS": "facebook/mms-tts-yor",
|
432 |
+
"ay-facebook-mms VITS": "facebook/mms-tts-ayr",
|
433 |
+
"bm-facebook-mms VITS": "facebook/mms-tts-bam",
|
434 |
+
"ceb-facebook-mms VITS": "facebook/mms-tts-ceb",
|
435 |
+
"ny-facebook-mms VITS": "facebook/mms-tts-nya",
|
436 |
+
"dv-facebook-mms VITS": "facebook/mms-tts-div",
|
437 |
+
"doi-facebook-mms VITS": "facebook/mms-tts-dgo",
|
438 |
+
"ee-facebook-mms VITS": "facebook/mms-tts-ewe",
|
439 |
+
"gn-facebook-mms VITS": "facebook/mms-tts-grn",
|
440 |
+
"ilo-facebook-mms VITS": "facebook/mms-tts-ilo",
|
441 |
+
"rw-facebook-mms VITS": "facebook/mms-tts-kin",
|
442 |
+
"kri-facebook-mms VITS": "facebook/mms-tts-kri",
|
443 |
+
"ku_script_arabic-facebook-mms VITS": "facebook/mms-tts-kmr-script_arabic",
|
444 |
+
"ku_script_cyrillic-facebook-mms VITS": "facebook/mms-tts-kmr-script_cyrillic",
|
445 |
+
"ku_script_latin-facebook-mms VITS": "facebook/mms-tts-kmr-script_latin",
|
446 |
+
"ckb-facebook-mms VITS": "razhan/mms-tts-ckb", # Verify w
|
447 |
+
"ky-facebook-mms VITS": "facebook/mms-tts-kir",
|
448 |
+
"lg-facebook-mms VITS": "facebook/mms-tts-lug",
|
449 |
+
"mai-facebook-mms VITS": "facebook/mms-tts-mai",
|
450 |
+
"or-facebook-mms VITS": "facebook/mms-tts-ory",
|
451 |
+
"om-facebook-mms VITS": "facebook/mms-tts-orm",
|
452 |
+
"qu_Huallaga-facebook-mms VITS": "facebook/mms-tts-qub",
|
453 |
+
"qu_Lambayeque-facebook-mms VITS": "facebook/mms-tts-quf",
|
454 |
+
"qu_South_Bolivian-facebook-mms VITS": "facebook/mms-tts-quh",
|
455 |
+
"qu_North_Bolivian-facebook-mms VITS": "facebook/mms-tts-qul",
|
456 |
+
"qu_Tena_Lowland-facebook-mms VITS": "facebook/mms-tts-quw",
|
457 |
+
"qu_Ayacucho-facebook-mms VITS": "facebook/mms-tts-quy",
|
458 |
+
"qu_Cusco-facebook-mms VITS": "facebook/mms-tts-quz",
|
459 |
+
"qu_Cajamarca-facebook-mms VITS": "facebook/mms-tts-qvc",
|
460 |
+
"qu_Eastern_Apurímac-facebook-mms VITS": "facebook/mms-tts-qve",
|
461 |
+
"qu_Huamalíes_Dos_de_Mayo_Huánuco-facebook-mms VITS": "facebook/mms-tts-qvh",
|
462 |
+
"qu_Margos_Yarowilca_Lauricocha-facebook-mms VITS": "facebook/mms-tts-qvm",
|
463 |
+
"qu_North_Junín-facebook-mms VITS": "facebook/mms-tts-qvn",
|
464 |
+
"qu_Napo-facebook-mms VITS": "facebook/mms-tts-qvo",
|
465 |
+
"qu_San_Martín-facebook-mms VITS": "facebook/mms-tts-qvs",
|
466 |
+
"qu_Huaylla_Wanca-facebook-mms VITS": "facebook/mms-tts-qvw",
|
467 |
+
"qu_Northern_Pastaza-facebook-mms VITS": "facebook/mms-tts-qvz",
|
468 |
+
"qu_Huaylas_Ancash-facebook-mms VITS": "facebook/mms-tts-qwh",
|
469 |
+
"qu_Panao-facebook-mms VITS": "facebook/mms-tts-qxh",
|
470 |
+
"qu_Salasaca_Highland-facebook-mms VITS": "facebook/mms-tts-qxl",
|
471 |
+
"qu_Northern_Conchucos_Ancash-facebook-mms VITS": "facebook/mms-tts-qxn",
|
472 |
+
"qu_Southern_Conchucos-facebook-mms VITS": "facebook/mms-tts-qxo",
|
473 |
+
"qu_Cañar_Highland-facebook-mms VITS": "facebook/mms-tts-qxr",
|
474 |
+
"sm-facebook-mms VITS": "facebook/mms-tts-smo",
|
475 |
+
"ti-facebook-mms VITS": "facebook/mms-tts-tir",
|
476 |
+
"ts-facebook-mms VITS": "facebook/mms-tts-tso",
|
477 |
+
"ak-facebook-mms VITS": "facebook/mms-tts-aka",
|
478 |
+
"ug_script_arabic-facebook-mms VITS": "facebook/mms-tts-uig-script_arabic",
|
479 |
+
"ug_script_cyrillic-facebook-mms VITS": "facebook/mms-tts-uig-script_cyrillic",
|
480 |
+
}
|
481 |
+
|
482 |
+
OPENAI_TTS_CODES = [
|
483 |
+
"af", "ar", "hy", "az", "be", "bs", "bg", "ca", "zh", "hr", "cs", "da",
|
484 |
+
"nl", "en", "et", "fi", "fr", "gl", "de", "el", "he", "hi", "hu", "is",
|
485 |
+
"id", "it", "ja", "kn", "kk", "ko", "lv", "lt", "mk", "ms", "mr", "mi",
|
486 |
+
"ne", "no", "fa", "pl", "pt", "ro", "ru", "sr", "sk", "sl", "es", "sw",
|
487 |
+
"sv", "tl", "ta", "th", "tr", "uk", "ur", "vi", "cy", "zh-TW"
|
488 |
+
]
|
489 |
+
|
490 |
+
OPENAI_TTS_MODELS = [
|
491 |
+
">alloy OpenAI-TTS",
|
492 |
+
">echo OpenAI-TTS",
|
493 |
+
">fable OpenAI-TTS",
|
494 |
+
">onyx OpenAI-TTS",
|
495 |
+
">nova OpenAI-TTS",
|
496 |
+
">shimmer OpenAI-TTS",
|
497 |
+
">alloy HD OpenAI-TTS",
|
498 |
+
">echo HD OpenAI-TTS",
|
499 |
+
">fable HD OpenAI-TTS",
|
500 |
+
">onyx HD OpenAI-TTS",
|
501 |
+
">nova HD OpenAI-TTS",
|
502 |
+
">shimmer HD OpenAI-TTS"
|
503 |
+
]
|
504 |
+
|
505 |
+
LANGUAGE_CODE_IN_THREE_LETTERS = {
|
506 |
+
"Automatic detection": "aut",
|
507 |
+
"ar": "ara",
|
508 |
+
"zh": "chi",
|
509 |
+
"cs": "cze",
|
510 |
+
"da": "dan",
|
511 |
+
"nl": "dut",
|
512 |
+
"en": "eng",
|
513 |
+
"fi": "fin",
|
514 |
+
"fr": "fre",
|
515 |
+
"de": "ger",
|
516 |
+
"el": "gre",
|
517 |
+
"he": "heb",
|
518 |
+
"hu": "hun",
|
519 |
+
"it": "ita",
|
520 |
+
"ja": "jpn",
|
521 |
+
"ko": "kor",
|
522 |
+
"fa": "per",
|
523 |
+
"pl": "pol",
|
524 |
+
"pt": "por",
|
525 |
+
"ru": "rus",
|
526 |
+
"es": "spa",
|
527 |
+
"tr": "tur",
|
528 |
+
"uk": "ukr",
|
529 |
+
"ur": "urd",
|
530 |
+
"vi": "vie",
|
531 |
+
"hi": "hin",
|
532 |
+
"id": "ind",
|
533 |
+
"bn": "ben",
|
534 |
+
"te": "tel",
|
535 |
+
"mr": "mar",
|
536 |
+
"ta": "tam",
|
537 |
+
"jw": "jav",
|
538 |
+
"ca": "cat",
|
539 |
+
"ne": "nep",
|
540 |
+
"th": "tha",
|
541 |
+
"sv": "swe",
|
542 |
+
"am": "amh",
|
543 |
+
"cy": "cym",
|
544 |
+
"et": "est",
|
545 |
+
"hr": "hrv",
|
546 |
+
"is": "isl",
|
547 |
+
"km": "khm",
|
548 |
+
"sk": "slk",
|
549 |
+
"sq": "sqi",
|
550 |
+
"sr": "srp",
|
551 |
+
}
|
soni_translate/languages_gui.py
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
news = """ ## 📖 News
|
4 |
|
5 |
-
🔥 2024/18
|
6 |
|
7 |
🔥 2024/03/02: Preserve file names in output. Multiple archives can now be submitted simultaneously by specifying their paths, directories or URLs separated by commas. Added option for disabling diarization. Implemented soft subtitles. Format output (MP3, MP4, MKV, WAV, and OGG), and resolved issues related to file reading and diarization.
|
8 |
|
|
|
2 |
|
3 |
news = """ ## 📖 News
|
4 |
|
5 |
+
🔥 2024/05/18: Overlap reduction. OpenAI API key integration for transcription, translation, and TTS. Output type: subtitles by speaker, separate audio sound, and video only with subtitles. Now you have access to a better-performing version of Whisper for transcribing speech. For example, you can use `kotoba-tech/kotoba-whisper-v1.1` for Japanese transcription, available [here](https://huggingface.co/kotoba-tech/kotoba-whisper-v1.1). You can find these improved models on the [Hugging Face Whisper page](https://huggingface.co/models?pipeline_tag=automatic-speech-recognition&sort=trending&search=whisper). Simply copy the repository ID and paste it into the 'Whisper ASR model' in 'Advanced Settings'. Support for ass subtitles and batch processing with subtitles. Vocal enhancement before transcription. Added CPU mode with `app_rvc.py --cpu_mode`. TTS now supports up to 12 speakers. OpenVoiceV2 has been integrated for voice imitation. PDF to videobook (displays images from the PDF).
|
6 |
|
7 |
🔥 2024/03/02: Preserve file names in output. Multiple archives can now be submitted simultaneously by specifying their paths, directories or URLs separated by commas. Added option for disabling diarization. Implemented soft subtitles. Format output (MP3, MP4, MKV, WAV, and OGG), and resolved issues related to file reading and diarization.
|
8 |
|
soni_translate/logging_setup.py
CHANGED
@@ -1,68 +1,68 @@
|
|
1 |
-
import logging
|
2 |
-
import sys
|
3 |
-
import warnings
|
4 |
-
import os
|
5 |
-
|
6 |
-
|
7 |
-
def configure_logging_libs(debug=False):
|
8 |
-
warnings.filterwarnings(
|
9 |
-
action="ignore", category=UserWarning, module="pyannote"
|
10 |
-
)
|
11 |
-
modules = [
|
12 |
-
"numba", "httpx", "markdown_it", "speechbrain", "fairseq", "pyannote",
|
13 |
-
"faiss",
|
14 |
-
"pytorch_lightning.utilities.migration.utils",
|
15 |
-
"pytorch_lightning.utilities.migration",
|
16 |
-
"pytorch_lightning",
|
17 |
-
"lightning",
|
18 |
-
"lightning.pytorch.utilities.migration.utils",
|
19 |
-
]
|
20 |
-
try:
|
21 |
-
for module in modules:
|
22 |
-
logging.getLogger(module).setLevel(logging.WARNING)
|
23 |
-
os.environ['TF_CPP_MIN_LOG_LEVEL'] = "3" if not debug else "1"
|
24 |
-
|
25 |
-
# fix verbose pyannote audio
|
26 |
-
def fix_verbose_pyannote(*args, what=""):
|
27 |
-
pass
|
28 |
-
import pyannote.audio.core.model # noqa
|
29 |
-
pyannote.audio.core.model.check_version = fix_verbose_pyannote
|
30 |
-
except Exception as error:
|
31 |
-
logger.error(str(error))
|
32 |
-
|
33 |
-
|
34 |
-
def setup_logger(name_log):
|
35 |
-
logger = logging.getLogger(name_log)
|
36 |
-
logger.setLevel(logging.INFO)
|
37 |
-
|
38 |
-
_default_handler = logging.StreamHandler() # Set sys.stderr as stream.
|
39 |
-
_default_handler.flush = sys.stderr.flush
|
40 |
-
logger.addHandler(_default_handler)
|
41 |
-
|
42 |
-
logger.propagate = False
|
43 |
-
|
44 |
-
handlers = logger.handlers
|
45 |
-
|
46 |
-
for handler in handlers:
|
47 |
-
formatter = logging.Formatter("[%(levelname)s] >> %(message)s")
|
48 |
-
handler.setFormatter(formatter)
|
49 |
-
|
50 |
-
# logger.handlers
|
51 |
-
|
52 |
-
return logger
|
53 |
-
|
54 |
-
|
55 |
-
logger = setup_logger("sonitranslate")
|
56 |
-
logger.setLevel(logging.INFO)
|
57 |
-
|
58 |
-
|
59 |
-
def set_logging_level(verbosity_level):
|
60 |
-
logging_level_mapping = {
|
61 |
-
"debug": logging.DEBUG,
|
62 |
-
"info": logging.INFO,
|
63 |
-
"warning": logging.WARNING,
|
64 |
-
"error": logging.ERROR,
|
65 |
-
"critical": logging.CRITICAL,
|
66 |
-
}
|
67 |
-
|
68 |
-
logger.setLevel(logging_level_mapping.get(verbosity_level, logging.INFO))
|
|
|
1 |
+
import logging
|
2 |
+
import sys
|
3 |
+
import warnings
|
4 |
+
import os
|
5 |
+
|
6 |
+
|
7 |
+
def configure_logging_libs(debug=False):
|
8 |
+
warnings.filterwarnings(
|
9 |
+
action="ignore", category=UserWarning, module="pyannote"
|
10 |
+
)
|
11 |
+
modules = [
|
12 |
+
"numba", "httpx", "markdown_it", "speechbrain", "fairseq", "pyannote",
|
13 |
+
"faiss",
|
14 |
+
"pytorch_lightning.utilities.migration.utils",
|
15 |
+
"pytorch_lightning.utilities.migration",
|
16 |
+
"pytorch_lightning",
|
17 |
+
"lightning",
|
18 |
+
"lightning.pytorch.utilities.migration.utils",
|
19 |
+
]
|
20 |
+
try:
|
21 |
+
for module in modules:
|
22 |
+
logging.getLogger(module).setLevel(logging.WARNING)
|
23 |
+
os.environ['TF_CPP_MIN_LOG_LEVEL'] = "3" if not debug else "1"
|
24 |
+
|
25 |
+
# fix verbose pyannote audio
|
26 |
+
def fix_verbose_pyannote(*args, what=""):
|
27 |
+
pass
|
28 |
+
import pyannote.audio.core.model # noqa
|
29 |
+
pyannote.audio.core.model.check_version = fix_verbose_pyannote
|
30 |
+
except Exception as error:
|
31 |
+
logger.error(str(error))
|
32 |
+
|
33 |
+
|
34 |
+
def setup_logger(name_log):
|
35 |
+
logger = logging.getLogger(name_log)
|
36 |
+
logger.setLevel(logging.INFO)
|
37 |
+
|
38 |
+
_default_handler = logging.StreamHandler() # Set sys.stderr as stream.
|
39 |
+
_default_handler.flush = sys.stderr.flush
|
40 |
+
logger.addHandler(_default_handler)
|
41 |
+
|
42 |
+
logger.propagate = False
|
43 |
+
|
44 |
+
handlers = logger.handlers
|
45 |
+
|
46 |
+
for handler in handlers:
|
47 |
+
formatter = logging.Formatter("[%(levelname)s] >> %(message)s")
|
48 |
+
handler.setFormatter(formatter)
|
49 |
+
|
50 |
+
# logger.handlers
|
51 |
+
|
52 |
+
return logger
|
53 |
+
|
54 |
+
|
55 |
+
logger = setup_logger("sonitranslate")
|
56 |
+
logger.setLevel(logging.INFO)
|
57 |
+
|
58 |
+
|
59 |
+
def set_logging_level(verbosity_level):
|
60 |
+
logging_level_mapping = {
|
61 |
+
"debug": logging.DEBUG,
|
62 |
+
"info": logging.INFO,
|
63 |
+
"warning": logging.WARNING,
|
64 |
+
"error": logging.ERROR,
|
65 |
+
"critical": logging.CRITICAL,
|
66 |
+
}
|
67 |
+
|
68 |
+
logger.setLevel(logging_level_mapping.get(verbosity_level, logging.INFO))
|
soni_translate/mdx_net.py
CHANGED
@@ -1,594 +1,582 @@
|
|
1 |
-
import gc
|
2 |
-
import hashlib
|
3 |
-
import os
|
4 |
-
import queue
|
5 |
-
import threading
|
6 |
-
import json
|
7 |
-
import shlex
|
8 |
-
import sys
|
9 |
-
import subprocess
|
10 |
-
import librosa
|
11 |
-
import numpy as np
|
12 |
-
import soundfile as sf
|
13 |
-
import torch
|
14 |
-
from tqdm import tqdm
|
15 |
-
|
16 |
-
try:
|
17 |
-
from .utils import (
|
18 |
-
remove_directory_contents,
|
19 |
-
create_directories,
|
20 |
-
)
|
21 |
-
except: # noqa
|
22 |
-
from utils import (
|
23 |
-
remove_directory_contents,
|
24 |
-
create_directories,
|
25 |
-
)
|
26 |
-
from .logging_setup import logger
|
27 |
-
|
28 |
-
try:
|
29 |
-
import onnxruntime as ort
|
30 |
-
except Exception as error:
|
31 |
-
logger.error(str(error))
|
32 |
-
# import warnings
|
33 |
-
# warnings.filterwarnings("ignore")
|
34 |
-
|
35 |
-
stem_naming = {
|
36 |
-
"Vocals": "Instrumental",
|
37 |
-
"Other": "Instruments",
|
38 |
-
"Instrumental": "Vocals",
|
39 |
-
"Drums": "Drumless",
|
40 |
-
"Bass": "Bassless",
|
41 |
-
}
|
42 |
-
|
43 |
-
|
44 |
-
class MDXModel:
|
45 |
-
def __init__(
|
46 |
-
self,
|
47 |
-
device,
|
48 |
-
dim_f,
|
49 |
-
dim_t,
|
50 |
-
n_fft,
|
51 |
-
hop=1024,
|
52 |
-
stem_name=None,
|
53 |
-
compensation=1.000,
|
54 |
-
):
|
55 |
-
self.dim_f = dim_f
|
56 |
-
self.dim_t = dim_t
|
57 |
-
self.dim_c = 4
|
58 |
-
self.n_fft = n_fft
|
59 |
-
self.hop = hop
|
60 |
-
self.stem_name = stem_name
|
61 |
-
self.compensation = compensation
|
62 |
-
|
63 |
-
self.n_bins = self.n_fft // 2 + 1
|
64 |
-
self.chunk_size = hop * (self.dim_t - 1)
|
65 |
-
self.window = torch.hann_window(
|
66 |
-
window_length=self.n_fft, periodic=True
|
67 |
-
).to(device)
|
68 |
-
|
69 |
-
out_c = self.dim_c
|
70 |
-
|
71 |
-
self.freq_pad = torch.zeros(
|
72 |
-
[1, out_c, self.n_bins - self.dim_f, self.dim_t]
|
73 |
-
).to(device)
|
74 |
-
|
75 |
-
def stft(self, x):
|
76 |
-
x = x.reshape([-1, self.chunk_size])
|
77 |
-
x = torch.stft(
|
78 |
-
x,
|
79 |
-
n_fft=self.n_fft,
|
80 |
-
hop_length=self.hop,
|
81 |
-
window=self.window,
|
82 |
-
center=True,
|
83 |
-
return_complex=True,
|
84 |
-
)
|
85 |
-
x = torch.view_as_real(x)
|
86 |
-
x = x.permute([0, 3, 1, 2])
|
87 |
-
x = x.reshape([-1, 2, 2, self.n_bins, self.dim_t]).reshape(
|
88 |
-
[-1, 4, self.n_bins, self.dim_t]
|
89 |
-
)
|
90 |
-
return x[:, :, : self.dim_f]
|
91 |
-
|
92 |
-
def istft(self, x, freq_pad=None):
|
93 |
-
freq_pad = (
|
94 |
-
self.freq_pad.repeat([x.shape[0], 1, 1, 1])
|
95 |
-
if freq_pad is None
|
96 |
-
else freq_pad
|
97 |
-
)
|
98 |
-
x = torch.cat([x, freq_pad], -2)
|
99 |
-
# c = 4*2 if self.target_name=='*' else 2
|
100 |
-
x = x.reshape([-1, 2, 2, self.n_bins, self.dim_t]).reshape(
|
101 |
-
[-1, 2, self.n_bins, self.dim_t]
|
102 |
-
)
|
103 |
-
x = x.permute([0, 2, 3, 1])
|
104 |
-
x = x.contiguous()
|
105 |
-
x = torch.view_as_complex(x)
|
106 |
-
x = torch.istft(
|
107 |
-
x,
|
108 |
-
n_fft=self.n_fft,
|
109 |
-
hop_length=self.hop,
|
110 |
-
window=self.window,
|
111 |
-
center=True,
|
112 |
-
)
|
113 |
-
return x.reshape([-1, 2, self.chunk_size])
|
114 |
-
|
115 |
-
|
116 |
-
class MDX:
|
117 |
-
DEFAULT_SR = 44100
|
118 |
-
# Unit: seconds
|
119 |
-
DEFAULT_CHUNK_SIZE = 0 * DEFAULT_SR
|
120 |
-
DEFAULT_MARGIN_SIZE = 1 * DEFAULT_SR
|
121 |
-
|
122 |
-
def __init__(
|
123 |
-
self, model_path: str, params: MDXModel, processor=0
|
124 |
-
):
|
125 |
-
# Set the device and the provider (CPU or CUDA)
|
126 |
-
self.device = (
|
127 |
-
torch.device(f"cuda:{processor}")
|
128 |
-
if processor >= 0
|
129 |
-
else torch.device("cpu")
|
130 |
-
)
|
131 |
-
self.provider = (
|
132 |
-
["CUDAExecutionProvider"]
|
133 |
-
if processor >= 0
|
134 |
-
else ["CPUExecutionProvider"]
|
135 |
-
)
|
136 |
-
|
137 |
-
self.model = params
|
138 |
-
|
139 |
-
# Load the ONNX model using ONNX Runtime
|
140 |
-
self.ort = ort.InferenceSession(model_path, providers=self.provider)
|
141 |
-
# Preload the model for faster performance
|
142 |
-
self.ort.run(
|
143 |
-
None,
|
144 |
-
{"input": torch.rand(1, 4, params.dim_f, params.dim_t).numpy()},
|
145 |
-
)
|
146 |
-
self.process = lambda spec: self.ort.run(
|
147 |
-
None, {"input": spec.cpu().numpy()}
|
148 |
-
)[0]
|
149 |
-
|
150 |
-
self.prog = None
|
151 |
-
|
152 |
-
@staticmethod
|
153 |
-
def get_hash(model_path):
|
154 |
-
try:
|
155 |
-
with open(model_path, "rb") as f:
|
156 |
-
f.seek(-10000 * 1024, 2)
|
157 |
-
model_hash = hashlib.md5(f.read()).hexdigest()
|
158 |
-
except: # noqa
|
159 |
-
model_hash = hashlib.md5(open(model_path, "rb").read()).hexdigest()
|
160 |
-
|
161 |
-
return model_hash
|
162 |
-
|
163 |
-
@staticmethod
|
164 |
-
def segment(
|
165 |
-
wave,
|
166 |
-
combine=True,
|
167 |
-
chunk_size=DEFAULT_CHUNK_SIZE,
|
168 |
-
margin_size=DEFAULT_MARGIN_SIZE,
|
169 |
-
):
|
170 |
-
"""
|
171 |
-
Segment or join segmented wave array
|
172 |
-
|
173 |
-
Args:
|
174 |
-
wave: (np.array) Wave array to be segmented or joined
|
175 |
-
combine: (bool) If True, combines segmented wave array.
|
176 |
-
If False, segments wave array.
|
177 |
-
chunk_size: (int) Size of each segment (in samples)
|
178 |
-
margin_size: (int) Size of margin between segments (in samples)
|
179 |
-
|
180 |
-
Returns:
|
181 |
-
numpy array: Segmented or joined wave array
|
182 |
-
"""
|
183 |
-
|
184 |
-
if combine:
|
185 |
-
# Initializing as None instead of [] for later numpy array concatenation
|
186 |
-
processed_wave = None
|
187 |
-
for segment_count, segment in enumerate(wave):
|
188 |
-
start = 0 if segment_count == 0 else margin_size
|
189 |
-
end = None if segment_count == len(wave) - 1 else -margin_size
|
190 |
-
if margin_size == 0:
|
191 |
-
end = None
|
192 |
-
if processed_wave is None: # Create array for first segment
|
193 |
-
processed_wave = segment[:, start:end]
|
194 |
-
else: # Concatenate to existing array for subsequent segments
|
195 |
-
processed_wave = np.concatenate(
|
196 |
-
(processed_wave, segment[:, start:end]), axis=-1
|
197 |
-
)
|
198 |
-
|
199 |
-
else:
|
200 |
-
processed_wave = []
|
201 |
-
sample_count = wave.shape[-1]
|
202 |
-
|
203 |
-
if chunk_size <= 0 or chunk_size > sample_count:
|
204 |
-
chunk_size = sample_count
|
205 |
-
|
206 |
-
if margin_size > chunk_size:
|
207 |
-
margin_size = chunk_size
|
208 |
-
|
209 |
-
for segment_count, skip in enumerate(
|
210 |
-
range(0, sample_count, chunk_size)
|
211 |
-
):
|
212 |
-
margin = 0 if segment_count == 0 else margin_size
|
213 |
-
end = min(skip + chunk_size + margin_size, sample_count)
|
214 |
-
start = skip - margin
|
215 |
-
|
216 |
-
cut = wave[:, start:end].copy()
|
217 |
-
processed_wave.append(cut)
|
218 |
-
|
219 |
-
if end == sample_count:
|
220 |
-
break
|
221 |
-
|
222 |
-
return processed_wave
|
223 |
-
|
224 |
-
def pad_wave(self, wave):
|
225 |
-
"""
|
226 |
-
Pad the wave array to match the required chunk size
|
227 |
-
|
228 |
-
Args:
|
229 |
-
wave: (np.array) Wave array to be padded
|
230 |
-
|
231 |
-
Returns:
|
232 |
-
tuple: (padded_wave, pad, trim)
|
233 |
-
- padded_wave: Padded wave array
|
234 |
-
- pad: Number of samples that were padded
|
235 |
-
- trim: Number of samples that were trimmed
|
236 |
-
"""
|
237 |
-
n_sample = wave.shape[1]
|
238 |
-
trim = self.model.n_fft // 2
|
239 |
-
gen_size = self.model.chunk_size - 2 * trim
|
240 |
-
pad = gen_size - n_sample % gen_size
|
241 |
-
|
242 |
-
# Padded wave
|
243 |
-
wave_p = np.concatenate(
|
244 |
-
(
|
245 |
-
np.zeros((2, trim)),
|
246 |
-
wave,
|
247 |
-
np.zeros((2, pad)),
|
248 |
-
np.zeros((2, trim)),
|
249 |
-
),
|
250 |
-
1,
|
251 |
-
)
|
252 |
-
|
253 |
-
mix_waves = []
|
254 |
-
for i in range(0, n_sample + pad, gen_size):
|
255 |
-
waves = np.array(wave_p[:, i:i + self.model.chunk_size])
|
256 |
-
mix_waves.append(waves)
|
257 |
-
|
258 |
-
mix_waves = torch.tensor(mix_waves, dtype=torch.float32).to(
|
259 |
-
self.device
|
260 |
-
)
|
261 |
-
|
262 |
-
return mix_waves, pad, trim
|
263 |
-
|
264 |
-
def _process_wave(self, mix_waves, trim, pad, q: queue.Queue, _id: int):
|
265 |
-
"""
|
266 |
-
Process each wave segment in a multi-threaded environment
|
267 |
-
|
268 |
-
Args:
|
269 |
-
mix_waves: (torch.Tensor) Wave segments to be processed
|
270 |
-
trim: (int) Number of samples trimmed during padding
|
271 |
-
pad: (int) Number of samples padded during padding
|
272 |
-
q: (queue.Queue) Queue to hold the processed wave segments
|
273 |
-
_id: (int) Identifier of the processed wave segment
|
274 |
-
|
275 |
-
Returns:
|
276 |
-
numpy array: Processed wave segment
|
277 |
-
"""
|
278 |
-
mix_waves = mix_waves.split(1)
|
279 |
-
with torch.no_grad():
|
280 |
-
pw = []
|
281 |
-
for mix_wave in mix_waves:
|
282 |
-
self.prog.update()
|
283 |
-
spec = self.model.stft(mix_wave)
|
284 |
-
processed_spec = torch.tensor(self.process(spec))
|
285 |
-
processed_wav = self.model.istft(
|
286 |
-
processed_spec.to(self.device)
|
287 |
-
)
|
288 |
-
processed_wav = (
|
289 |
-
processed_wav[:, :, trim:-trim]
|
290 |
-
.transpose(0, 1)
|
291 |
-
.reshape(2, -1)
|
292 |
-
.cpu()
|
293 |
-
.numpy()
|
294 |
-
)
|
295 |
-
pw.append(processed_wav)
|
296 |
-
processed_signal = np.concatenate(pw, axis=-1)[:, :-pad]
|
297 |
-
q.put({_id: processed_signal})
|
298 |
-
return processed_signal
|
299 |
-
|
300 |
-
def process_wave(self, wave: np.array, mt_threads=1):
|
301 |
-
"""
|
302 |
-
Process the wave array in a multi-threaded environment
|
303 |
-
|
304 |
-
Args:
|
305 |
-
wave: (np.array) Wave array to be processed
|
306 |
-
mt_threads: (int) Number of threads to be used for processing
|
307 |
-
|
308 |
-
Returns:
|
309 |
-
numpy array: Processed wave array
|
310 |
-
"""
|
311 |
-
self.prog = tqdm(total=0)
|
312 |
-
chunk = wave.shape[-1] // mt_threads
|
313 |
-
waves = self.segment(wave, False, chunk)
|
314 |
-
|
315 |
-
# Create a queue to hold the processed wave segments
|
316 |
-
q = queue.Queue()
|
317 |
-
threads = []
|
318 |
-
for c, batch in enumerate(waves):
|
319 |
-
mix_waves, pad, trim = self.pad_wave(batch)
|
320 |
-
self.prog.total = len(mix_waves) * mt_threads
|
321 |
-
thread = threading.Thread(
|
322 |
-
target=self._process_wave, args=(mix_waves, trim, pad, q, c)
|
323 |
-
)
|
324 |
-
thread.start()
|
325 |
-
threads.append(thread)
|
326 |
-
for thread in threads:
|
327 |
-
thread.join()
|
328 |
-
self.prog.close()
|
329 |
-
|
330 |
-
processed_batches = []
|
331 |
-
while not q.empty():
|
332 |
-
processed_batches.append(q.get())
|
333 |
-
processed_batches = [
|
334 |
-
list(wave.values())[0]
|
335 |
-
for wave in sorted(
|
336 |
-
processed_batches, key=lambda d: list(d.keys())[0]
|
337 |
-
)
|
338 |
-
]
|
339 |
-
assert len(processed_batches) == len(
|
340 |
-
waves
|
341 |
-
), "Incomplete processed batches, please reduce batch size!"
|
342 |
-
return self.segment(processed_batches, True, chunk)
|
343 |
-
|
344 |
-
|
345 |
-
def run_mdx(
|
346 |
-
model_params,
|
347 |
-
output_dir,
|
348 |
-
model_path,
|
349 |
-
filename,
|
350 |
-
exclude_main=False,
|
351 |
-
exclude_inversion=False,
|
352 |
-
suffix=None,
|
353 |
-
invert_suffix=None,
|
354 |
-
denoise=False,
|
355 |
-
keep_orig=True,
|
356 |
-
m_threads=2,
|
357 |
-
device_base="cuda",
|
358 |
-
):
|
359 |
-
if device_base == "cuda":
|
360 |
-
device = torch.device("cuda:0")
|
361 |
-
processor_num = 0
|
362 |
-
device_properties = torch.cuda.get_device_properties(device)
|
363 |
-
vram_gb = device_properties.total_memory / 1024**3
|
364 |
-
m_threads = 1 if vram_gb < 8 else 2
|
365 |
-
else:
|
366 |
-
device = torch.device("cpu")
|
367 |
-
processor_num = -1
|
368 |
-
m_threads = 1
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
if
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
f"{
|
414 |
-
)
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
)
|
424 |
-
|
425 |
-
|
426 |
-
)
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
"
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
)
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
if
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
vocals_path_,
|
584 |
-
instrumentals_path_,
|
585 |
-
backup_vocals_path_,
|
586 |
-
main_vocals_path_,
|
587 |
-
vocals_dereverb_path_,
|
588 |
-
) = process_uvr_task(
|
589 |
-
orig_song_path="aud.mp3",
|
590 |
-
main_vocals=True,
|
591 |
-
dereverb=True,
|
592 |
-
song_id="mdx",
|
593 |
-
remove_files_output_dir=True,
|
594 |
-
)
|
|
|
1 |
+
import gc
|
2 |
+
import hashlib
|
3 |
+
import os
|
4 |
+
import queue
|
5 |
+
import threading
|
6 |
+
import json
|
7 |
+
import shlex
|
8 |
+
import sys
|
9 |
+
import subprocess
|
10 |
+
import librosa
|
11 |
+
import numpy as np
|
12 |
+
import soundfile as sf
|
13 |
+
import torch
|
14 |
+
from tqdm import tqdm
|
15 |
+
|
16 |
+
try:
|
17 |
+
from .utils import (
|
18 |
+
remove_directory_contents,
|
19 |
+
create_directories,
|
20 |
+
)
|
21 |
+
except: # noqa
|
22 |
+
from utils import (
|
23 |
+
remove_directory_contents,
|
24 |
+
create_directories,
|
25 |
+
)
|
26 |
+
from .logging_setup import logger
|
27 |
+
|
28 |
+
try:
|
29 |
+
import onnxruntime as ort
|
30 |
+
except Exception as error:
|
31 |
+
logger.error(str(error))
|
32 |
+
# import warnings
|
33 |
+
# warnings.filterwarnings("ignore")
|
34 |
+
|
35 |
+
stem_naming = {
|
36 |
+
"Vocals": "Instrumental",
|
37 |
+
"Other": "Instruments",
|
38 |
+
"Instrumental": "Vocals",
|
39 |
+
"Drums": "Drumless",
|
40 |
+
"Bass": "Bassless",
|
41 |
+
}
|
42 |
+
|
43 |
+
|
44 |
+
class MDXModel:
|
45 |
+
def __init__(
|
46 |
+
self,
|
47 |
+
device,
|
48 |
+
dim_f,
|
49 |
+
dim_t,
|
50 |
+
n_fft,
|
51 |
+
hop=1024,
|
52 |
+
stem_name=None,
|
53 |
+
compensation=1.000,
|
54 |
+
):
|
55 |
+
self.dim_f = dim_f
|
56 |
+
self.dim_t = dim_t
|
57 |
+
self.dim_c = 4
|
58 |
+
self.n_fft = n_fft
|
59 |
+
self.hop = hop
|
60 |
+
self.stem_name = stem_name
|
61 |
+
self.compensation = compensation
|
62 |
+
|
63 |
+
self.n_bins = self.n_fft // 2 + 1
|
64 |
+
self.chunk_size = hop * (self.dim_t - 1)
|
65 |
+
self.window = torch.hann_window(
|
66 |
+
window_length=self.n_fft, periodic=True
|
67 |
+
).to(device)
|
68 |
+
|
69 |
+
out_c = self.dim_c
|
70 |
+
|
71 |
+
self.freq_pad = torch.zeros(
|
72 |
+
[1, out_c, self.n_bins - self.dim_f, self.dim_t]
|
73 |
+
).to(device)
|
74 |
+
|
75 |
+
def stft(self, x):
|
76 |
+
x = x.reshape([-1, self.chunk_size])
|
77 |
+
x = torch.stft(
|
78 |
+
x,
|
79 |
+
n_fft=self.n_fft,
|
80 |
+
hop_length=self.hop,
|
81 |
+
window=self.window,
|
82 |
+
center=True,
|
83 |
+
return_complex=True,
|
84 |
+
)
|
85 |
+
x = torch.view_as_real(x)
|
86 |
+
x = x.permute([0, 3, 1, 2])
|
87 |
+
x = x.reshape([-1, 2, 2, self.n_bins, self.dim_t]).reshape(
|
88 |
+
[-1, 4, self.n_bins, self.dim_t]
|
89 |
+
)
|
90 |
+
return x[:, :, : self.dim_f]
|
91 |
+
|
92 |
+
def istft(self, x, freq_pad=None):
|
93 |
+
freq_pad = (
|
94 |
+
self.freq_pad.repeat([x.shape[0], 1, 1, 1])
|
95 |
+
if freq_pad is None
|
96 |
+
else freq_pad
|
97 |
+
)
|
98 |
+
x = torch.cat([x, freq_pad], -2)
|
99 |
+
# c = 4*2 if self.target_name=='*' else 2
|
100 |
+
x = x.reshape([-1, 2, 2, self.n_bins, self.dim_t]).reshape(
|
101 |
+
[-1, 2, self.n_bins, self.dim_t]
|
102 |
+
)
|
103 |
+
x = x.permute([0, 2, 3, 1])
|
104 |
+
x = x.contiguous()
|
105 |
+
x = torch.view_as_complex(x)
|
106 |
+
x = torch.istft(
|
107 |
+
x,
|
108 |
+
n_fft=self.n_fft,
|
109 |
+
hop_length=self.hop,
|
110 |
+
window=self.window,
|
111 |
+
center=True,
|
112 |
+
)
|
113 |
+
return x.reshape([-1, 2, self.chunk_size])
|
114 |
+
|
115 |
+
|
116 |
+
class MDX:
|
117 |
+
DEFAULT_SR = 44100
|
118 |
+
# Unit: seconds
|
119 |
+
DEFAULT_CHUNK_SIZE = 0 * DEFAULT_SR
|
120 |
+
DEFAULT_MARGIN_SIZE = 1 * DEFAULT_SR
|
121 |
+
|
122 |
+
def __init__(
|
123 |
+
self, model_path: str, params: MDXModel, processor=0
|
124 |
+
):
|
125 |
+
# Set the device and the provider (CPU or CUDA)
|
126 |
+
self.device = (
|
127 |
+
torch.device(f"cuda:{processor}")
|
128 |
+
if processor >= 0
|
129 |
+
else torch.device("cpu")
|
130 |
+
)
|
131 |
+
self.provider = (
|
132 |
+
["CUDAExecutionProvider"]
|
133 |
+
if processor >= 0
|
134 |
+
else ["CPUExecutionProvider"]
|
135 |
+
)
|
136 |
+
|
137 |
+
self.model = params
|
138 |
+
|
139 |
+
# Load the ONNX model using ONNX Runtime
|
140 |
+
self.ort = ort.InferenceSession(model_path, providers=self.provider)
|
141 |
+
# Preload the model for faster performance
|
142 |
+
self.ort.run(
|
143 |
+
None,
|
144 |
+
{"input": torch.rand(1, 4, params.dim_f, params.dim_t).numpy()},
|
145 |
+
)
|
146 |
+
self.process = lambda spec: self.ort.run(
|
147 |
+
None, {"input": spec.cpu().numpy()}
|
148 |
+
)[0]
|
149 |
+
|
150 |
+
self.prog = None
|
151 |
+
|
152 |
+
@staticmethod
|
153 |
+
def get_hash(model_path):
|
154 |
+
try:
|
155 |
+
with open(model_path, "rb") as f:
|
156 |
+
f.seek(-10000 * 1024, 2)
|
157 |
+
model_hash = hashlib.md5(f.read()).hexdigest()
|
158 |
+
except: # noqa
|
159 |
+
model_hash = hashlib.md5(open(model_path, "rb").read()).hexdigest()
|
160 |
+
|
161 |
+
return model_hash
|
162 |
+
|
163 |
+
@staticmethod
|
164 |
+
def segment(
|
165 |
+
wave,
|
166 |
+
combine=True,
|
167 |
+
chunk_size=DEFAULT_CHUNK_SIZE,
|
168 |
+
margin_size=DEFAULT_MARGIN_SIZE,
|
169 |
+
):
|
170 |
+
"""
|
171 |
+
Segment or join segmented wave array
|
172 |
+
|
173 |
+
Args:
|
174 |
+
wave: (np.array) Wave array to be segmented or joined
|
175 |
+
combine: (bool) If True, combines segmented wave array.
|
176 |
+
If False, segments wave array.
|
177 |
+
chunk_size: (int) Size of each segment (in samples)
|
178 |
+
margin_size: (int) Size of margin between segments (in samples)
|
179 |
+
|
180 |
+
Returns:
|
181 |
+
numpy array: Segmented or joined wave array
|
182 |
+
"""
|
183 |
+
|
184 |
+
if combine:
|
185 |
+
# Initializing as None instead of [] for later numpy array concatenation
|
186 |
+
processed_wave = None
|
187 |
+
for segment_count, segment in enumerate(wave):
|
188 |
+
start = 0 if segment_count == 0 else margin_size
|
189 |
+
end = None if segment_count == len(wave) - 1 else -margin_size
|
190 |
+
if margin_size == 0:
|
191 |
+
end = None
|
192 |
+
if processed_wave is None: # Create array for first segment
|
193 |
+
processed_wave = segment[:, start:end]
|
194 |
+
else: # Concatenate to existing array for subsequent segments
|
195 |
+
processed_wave = np.concatenate(
|
196 |
+
(processed_wave, segment[:, start:end]), axis=-1
|
197 |
+
)
|
198 |
+
|
199 |
+
else:
|
200 |
+
processed_wave = []
|
201 |
+
sample_count = wave.shape[-1]
|
202 |
+
|
203 |
+
if chunk_size <= 0 or chunk_size > sample_count:
|
204 |
+
chunk_size = sample_count
|
205 |
+
|
206 |
+
if margin_size > chunk_size:
|
207 |
+
margin_size = chunk_size
|
208 |
+
|
209 |
+
for segment_count, skip in enumerate(
|
210 |
+
range(0, sample_count, chunk_size)
|
211 |
+
):
|
212 |
+
margin = 0 if segment_count == 0 else margin_size
|
213 |
+
end = min(skip + chunk_size + margin_size, sample_count)
|
214 |
+
start = skip - margin
|
215 |
+
|
216 |
+
cut = wave[:, start:end].copy()
|
217 |
+
processed_wave.append(cut)
|
218 |
+
|
219 |
+
if end == sample_count:
|
220 |
+
break
|
221 |
+
|
222 |
+
return processed_wave
|
223 |
+
|
224 |
+
def pad_wave(self, wave):
|
225 |
+
"""
|
226 |
+
Pad the wave array to match the required chunk size
|
227 |
+
|
228 |
+
Args:
|
229 |
+
wave: (np.array) Wave array to be padded
|
230 |
+
|
231 |
+
Returns:
|
232 |
+
tuple: (padded_wave, pad, trim)
|
233 |
+
- padded_wave: Padded wave array
|
234 |
+
- pad: Number of samples that were padded
|
235 |
+
- trim: Number of samples that were trimmed
|
236 |
+
"""
|
237 |
+
n_sample = wave.shape[1]
|
238 |
+
trim = self.model.n_fft // 2
|
239 |
+
gen_size = self.model.chunk_size - 2 * trim
|
240 |
+
pad = gen_size - n_sample % gen_size
|
241 |
+
|
242 |
+
# Padded wave
|
243 |
+
wave_p = np.concatenate(
|
244 |
+
(
|
245 |
+
np.zeros((2, trim)),
|
246 |
+
wave,
|
247 |
+
np.zeros((2, pad)),
|
248 |
+
np.zeros((2, trim)),
|
249 |
+
),
|
250 |
+
1,
|
251 |
+
)
|
252 |
+
|
253 |
+
mix_waves = []
|
254 |
+
for i in range(0, n_sample + pad, gen_size):
|
255 |
+
waves = np.array(wave_p[:, i:i + self.model.chunk_size])
|
256 |
+
mix_waves.append(waves)
|
257 |
+
|
258 |
+
mix_waves = torch.tensor(mix_waves, dtype=torch.float32).to(
|
259 |
+
self.device
|
260 |
+
)
|
261 |
+
|
262 |
+
return mix_waves, pad, trim
|
263 |
+
|
264 |
+
def _process_wave(self, mix_waves, trim, pad, q: queue.Queue, _id: int):
|
265 |
+
"""
|
266 |
+
Process each wave segment in a multi-threaded environment
|
267 |
+
|
268 |
+
Args:
|
269 |
+
mix_waves: (torch.Tensor) Wave segments to be processed
|
270 |
+
trim: (int) Number of samples trimmed during padding
|
271 |
+
pad: (int) Number of samples padded during padding
|
272 |
+
q: (queue.Queue) Queue to hold the processed wave segments
|
273 |
+
_id: (int) Identifier of the processed wave segment
|
274 |
+
|
275 |
+
Returns:
|
276 |
+
numpy array: Processed wave segment
|
277 |
+
"""
|
278 |
+
mix_waves = mix_waves.split(1)
|
279 |
+
with torch.no_grad():
|
280 |
+
pw = []
|
281 |
+
for mix_wave in mix_waves:
|
282 |
+
self.prog.update()
|
283 |
+
spec = self.model.stft(mix_wave)
|
284 |
+
processed_spec = torch.tensor(self.process(spec))
|
285 |
+
processed_wav = self.model.istft(
|
286 |
+
processed_spec.to(self.device)
|
287 |
+
)
|
288 |
+
processed_wav = (
|
289 |
+
processed_wav[:, :, trim:-trim]
|
290 |
+
.transpose(0, 1)
|
291 |
+
.reshape(2, -1)
|
292 |
+
.cpu()
|
293 |
+
.numpy()
|
294 |
+
)
|
295 |
+
pw.append(processed_wav)
|
296 |
+
processed_signal = np.concatenate(pw, axis=-1)[:, :-pad]
|
297 |
+
q.put({_id: processed_signal})
|
298 |
+
return processed_signal
|
299 |
+
|
300 |
+
def process_wave(self, wave: np.array, mt_threads=1):
|
301 |
+
"""
|
302 |
+
Process the wave array in a multi-threaded environment
|
303 |
+
|
304 |
+
Args:
|
305 |
+
wave: (np.array) Wave array to be processed
|
306 |
+
mt_threads: (int) Number of threads to be used for processing
|
307 |
+
|
308 |
+
Returns:
|
309 |
+
numpy array: Processed wave array
|
310 |
+
"""
|
311 |
+
self.prog = tqdm(total=0)
|
312 |
+
chunk = wave.shape[-1] // mt_threads
|
313 |
+
waves = self.segment(wave, False, chunk)
|
314 |
+
|
315 |
+
# Create a queue to hold the processed wave segments
|
316 |
+
q = queue.Queue()
|
317 |
+
threads = []
|
318 |
+
for c, batch in enumerate(waves):
|
319 |
+
mix_waves, pad, trim = self.pad_wave(batch)
|
320 |
+
self.prog.total = len(mix_waves) * mt_threads
|
321 |
+
thread = threading.Thread(
|
322 |
+
target=self._process_wave, args=(mix_waves, trim, pad, q, c)
|
323 |
+
)
|
324 |
+
thread.start()
|
325 |
+
threads.append(thread)
|
326 |
+
for thread in threads:
|
327 |
+
thread.join()
|
328 |
+
self.prog.close()
|
329 |
+
|
330 |
+
processed_batches = []
|
331 |
+
while not q.empty():
|
332 |
+
processed_batches.append(q.get())
|
333 |
+
processed_batches = [
|
334 |
+
list(wave.values())[0]
|
335 |
+
for wave in sorted(
|
336 |
+
processed_batches, key=lambda d: list(d.keys())[0]
|
337 |
+
)
|
338 |
+
]
|
339 |
+
assert len(processed_batches) == len(
|
340 |
+
waves
|
341 |
+
), "Incomplete processed batches, please reduce batch size!"
|
342 |
+
return self.segment(processed_batches, True, chunk)
|
343 |
+
|
344 |
+
|
345 |
+
def run_mdx(
|
346 |
+
model_params,
|
347 |
+
output_dir,
|
348 |
+
model_path,
|
349 |
+
filename,
|
350 |
+
exclude_main=False,
|
351 |
+
exclude_inversion=False,
|
352 |
+
suffix=None,
|
353 |
+
invert_suffix=None,
|
354 |
+
denoise=False,
|
355 |
+
keep_orig=True,
|
356 |
+
m_threads=2,
|
357 |
+
device_base="cuda",
|
358 |
+
):
|
359 |
+
if device_base == "cuda":
|
360 |
+
device = torch.device("cuda:0")
|
361 |
+
processor_num = 0
|
362 |
+
device_properties = torch.cuda.get_device_properties(device)
|
363 |
+
vram_gb = device_properties.total_memory / 1024**3
|
364 |
+
m_threads = 1 if vram_gb < 8 else 2
|
365 |
+
else:
|
366 |
+
device = torch.device("cpu")
|
367 |
+
processor_num = -1
|
368 |
+
m_threads = 1
|
369 |
+
|
370 |
+
model_hash = MDX.get_hash(model_path)
|
371 |
+
mp = model_params.get(model_hash)
|
372 |
+
model = MDXModel(
|
373 |
+
device,
|
374 |
+
dim_f=mp["mdx_dim_f_set"],
|
375 |
+
dim_t=2 ** mp["mdx_dim_t_set"],
|
376 |
+
n_fft=mp["mdx_n_fft_scale_set"],
|
377 |
+
stem_name=mp["primary_stem"],
|
378 |
+
compensation=mp["compensate"],
|
379 |
+
)
|
380 |
+
|
381 |
+
mdx_sess = MDX(model_path, model, processor=processor_num)
|
382 |
+
wave, sr = librosa.load(filename, mono=False, sr=44100)
|
383 |
+
# normalizing input wave gives better output
|
384 |
+
peak = max(np.max(wave), abs(np.min(wave)))
|
385 |
+
wave /= peak
|
386 |
+
if denoise:
|
387 |
+
wave_processed = -(mdx_sess.process_wave(-wave, m_threads)) + (
|
388 |
+
mdx_sess.process_wave(wave, m_threads)
|
389 |
+
)
|
390 |
+
wave_processed *= 0.5
|
391 |
+
else:
|
392 |
+
wave_processed = mdx_sess.process_wave(wave, m_threads)
|
393 |
+
# return to previous peak
|
394 |
+
wave_processed *= peak
|
395 |
+
stem_name = model.stem_name if suffix is None else suffix
|
396 |
+
|
397 |
+
main_filepath = None
|
398 |
+
if not exclude_main:
|
399 |
+
main_filepath = os.path.join(
|
400 |
+
output_dir,
|
401 |
+
f"{os.path.basename(os.path.splitext(filename)[0])}_{stem_name}.wav",
|
402 |
+
)
|
403 |
+
sf.write(main_filepath, wave_processed.T, sr)
|
404 |
+
|
405 |
+
invert_filepath = None
|
406 |
+
if not exclude_inversion:
|
407 |
+
diff_stem_name = (
|
408 |
+
stem_naming.get(stem_name)
|
409 |
+
if invert_suffix is None
|
410 |
+
else invert_suffix
|
411 |
+
)
|
412 |
+
stem_name = (
|
413 |
+
f"{stem_name}_diff" if diff_stem_name is None else diff_stem_name
|
414 |
+
)
|
415 |
+
invert_filepath = os.path.join(
|
416 |
+
output_dir,
|
417 |
+
f"{os.path.basename(os.path.splitext(filename)[0])}_{stem_name}.wav",
|
418 |
+
)
|
419 |
+
sf.write(
|
420 |
+
invert_filepath,
|
421 |
+
(-wave_processed.T * model.compensation) + wave.T,
|
422 |
+
sr,
|
423 |
+
)
|
424 |
+
|
425 |
+
if not keep_orig:
|
426 |
+
os.remove(filename)
|
427 |
+
|
428 |
+
del mdx_sess, wave_processed, wave
|
429 |
+
gc.collect()
|
430 |
+
torch.cuda.empty_cache()
|
431 |
+
return main_filepath, invert_filepath
|
432 |
+
|
433 |
+
|
434 |
+
MDX_DOWNLOAD_LINK = "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/"
|
435 |
+
UVR_MODELS = [
|
436 |
+
"UVR-MDX-NET-Voc_FT.onnx",
|
437 |
+
"UVR_MDXNET_KARA_2.onnx",
|
438 |
+
"Reverb_HQ_By_FoxJoy.onnx",
|
439 |
+
"UVR-MDX-NET-Inst_HQ_4.onnx",
|
440 |
+
]
|
441 |
+
BASE_DIR = "." # os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
442 |
+
mdxnet_models_dir = os.path.join(BASE_DIR, "mdx_models")
|
443 |
+
output_dir = os.path.join(BASE_DIR, "clean_song_output")
|
444 |
+
|
445 |
+
|
446 |
+
def convert_to_stereo_and_wav(audio_path):
|
447 |
+
wave, sr = librosa.load(audio_path, mono=False, sr=44100)
|
448 |
+
|
449 |
+
# check if mono
|
450 |
+
if type(wave[0]) != np.ndarray or audio_path[-4:].lower() != ".wav": # noqa
|
451 |
+
stereo_path = f"{os.path.splitext(audio_path)[0]}_stereo.wav"
|
452 |
+
stereo_path = os.path.join(output_dir, stereo_path)
|
453 |
+
|
454 |
+
command = shlex.split(
|
455 |
+
f'ffmpeg -y -loglevel error -i "{audio_path}" -ac 2 -f wav "{stereo_path}"'
|
456 |
+
)
|
457 |
+
sub_params = {
|
458 |
+
"stdout": subprocess.PIPE,
|
459 |
+
"stderr": subprocess.PIPE,
|
460 |
+
"creationflags": subprocess.CREATE_NO_WINDOW
|
461 |
+
if sys.platform == "win32"
|
462 |
+
else 0,
|
463 |
+
}
|
464 |
+
process_wav = subprocess.Popen(command, **sub_params)
|
465 |
+
output, errors = process_wav.communicate()
|
466 |
+
if process_wav.returncode != 0 or not os.path.exists(stereo_path):
|
467 |
+
raise Exception("Error processing audio to stereo wav")
|
468 |
+
|
469 |
+
return stereo_path
|
470 |
+
else:
|
471 |
+
return audio_path
|
472 |
+
|
473 |
+
|
474 |
+
def process_uvr_task(
|
475 |
+
orig_song_path: str = "aud_test.mp3",
|
476 |
+
main_vocals: bool = False,
|
477 |
+
dereverb: bool = True,
|
478 |
+
song_id: str = "mdx", # folder output name
|
479 |
+
only_voiceless: bool = False,
|
480 |
+
remove_files_output_dir: bool = False,
|
481 |
+
):
|
482 |
+
if os.environ.get("SONITR_DEVICE") == "cpu":
|
483 |
+
device_base = "cpu"
|
484 |
+
else:
|
485 |
+
device_base = "cuda" if torch.cuda.is_available() else "cpu"
|
486 |
+
|
487 |
+
if remove_files_output_dir:
|
488 |
+
remove_directory_contents(output_dir)
|
489 |
+
|
490 |
+
with open(os.path.join(mdxnet_models_dir, "data.json")) as infile:
|
491 |
+
mdx_model_params = json.load(infile)
|
492 |
+
|
493 |
+
song_output_dir = os.path.join(output_dir, song_id)
|
494 |
+
create_directories(song_output_dir)
|
495 |
+
orig_song_path = convert_to_stereo_and_wav(orig_song_path)
|
496 |
+
|
497 |
+
logger.debug(f"onnxruntime device >> {ort.get_device()}")
|
498 |
+
|
499 |
+
if only_voiceless:
|
500 |
+
logger.info("Voiceless Track Separation...")
|
501 |
+
return run_mdx(
|
502 |
+
mdx_model_params,
|
503 |
+
song_output_dir,
|
504 |
+
os.path.join(mdxnet_models_dir, "UVR-MDX-NET-Inst_HQ_4.onnx"),
|
505 |
+
orig_song_path,
|
506 |
+
suffix="Voiceless",
|
507 |
+
denoise=False,
|
508 |
+
keep_orig=True,
|
509 |
+
exclude_inversion=True,
|
510 |
+
device_base=device_base,
|
511 |
+
)
|
512 |
+
|
513 |
+
logger.info("Vocal Track Isolation and Voiceless Track Separation...")
|
514 |
+
vocals_path, instrumentals_path = run_mdx(
|
515 |
+
mdx_model_params,
|
516 |
+
song_output_dir,
|
517 |
+
os.path.join(mdxnet_models_dir, "UVR-MDX-NET-Voc_FT.onnx"),
|
518 |
+
orig_song_path,
|
519 |
+
denoise=True,
|
520 |
+
keep_orig=True,
|
521 |
+
device_base=device_base,
|
522 |
+
)
|
523 |
+
|
524 |
+
if main_vocals:
|
525 |
+
logger.info("Main Voice Separation from Supporting Vocals...")
|
526 |
+
backup_vocals_path, main_vocals_path = run_mdx(
|
527 |
+
mdx_model_params,
|
528 |
+
song_output_dir,
|
529 |
+
os.path.join(mdxnet_models_dir, "UVR_MDXNET_KARA_2.onnx"),
|
530 |
+
vocals_path,
|
531 |
+
suffix="Backup",
|
532 |
+
invert_suffix="Main",
|
533 |
+
denoise=True,
|
534 |
+
device_base=device_base,
|
535 |
+
)
|
536 |
+
else:
|
537 |
+
backup_vocals_path, main_vocals_path = None, vocals_path
|
538 |
+
|
539 |
+
if dereverb:
|
540 |
+
logger.info("Vocal Clarity Enhancement through De-Reverberation...")
|
541 |
+
_, vocals_dereverb_path = run_mdx(
|
542 |
+
mdx_model_params,
|
543 |
+
song_output_dir,
|
544 |
+
os.path.join(mdxnet_models_dir, "Reverb_HQ_By_FoxJoy.onnx"),
|
545 |
+
main_vocals_path,
|
546 |
+
invert_suffix="DeReverb",
|
547 |
+
exclude_main=True,
|
548 |
+
denoise=True,
|
549 |
+
device_base=device_base,
|
550 |
+
)
|
551 |
+
else:
|
552 |
+
vocals_dereverb_path = main_vocals_path
|
553 |
+
|
554 |
+
return (
|
555 |
+
vocals_path,
|
556 |
+
instrumentals_path,
|
557 |
+
backup_vocals_path,
|
558 |
+
main_vocals_path,
|
559 |
+
vocals_dereverb_path,
|
560 |
+
)
|
561 |
+
|
562 |
+
|
563 |
+
if __name__ == "__main__":
|
564 |
+
from utils import download_manager
|
565 |
+
|
566 |
+
for id_model in UVR_MODELS:
|
567 |
+
download_manager(
|
568 |
+
os.path.join(MDX_DOWNLOAD_LINK, id_model), mdxnet_models_dir
|
569 |
+
)
|
570 |
+
(
|
571 |
+
vocals_path_,
|
572 |
+
instrumentals_path_,
|
573 |
+
backup_vocals_path_,
|
574 |
+
main_vocals_path_,
|
575 |
+
vocals_dereverb_path_,
|
576 |
+
) = process_uvr_task(
|
577 |
+
orig_song_path="aud.mp3",
|
578 |
+
main_vocals=True,
|
579 |
+
dereverb=True,
|
580 |
+
song_id="mdx",
|
581 |
+
remove_files_output_dir=True,
|
582 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
soni_translate/postprocessor.py
CHANGED
@@ -1,231 +1,231 @@
|
|
1 |
-
from .utils import remove_files, run_command
|
2 |
-
from .text_multiformat_processor import get_subtitle
|
3 |
-
from .logging_setup import logger
|
4 |
-
import unicodedata
|
5 |
-
import shutil
|
6 |
-
import copy
|
7 |
-
import os
|
8 |
-
import re
|
9 |
-
|
10 |
-
OUTPUT_TYPE_OPTIONS = [
|
11 |
-
"video (mp4)",
|
12 |
-
"video (mkv)",
|
13 |
-
"audio (mp3)",
|
14 |
-
"audio (ogg)",
|
15 |
-
"audio (wav)",
|
16 |
-
"subtitle",
|
17 |
-
"subtitle [by speaker]",
|
18 |
-
"video [subtitled] (mp4)",
|
19 |
-
"video [subtitled] (mkv)",
|
20 |
-
"audio [original vocal sound]",
|
21 |
-
"audio [original background sound]",
|
22 |
-
"audio [original vocal and background sound]",
|
23 |
-
"audio [original vocal-dereverb sound]",
|
24 |
-
"audio [original vocal-dereverb and background sound]",
|
25 |
-
"raw media",
|
26 |
-
]
|
27 |
-
|
28 |
-
DOCS_OUTPUT_TYPE_OPTIONS = [
|
29 |
-
"videobook (mp4)",
|
30 |
-
"videobook (mkv)",
|
31 |
-
"audiobook (wav)",
|
32 |
-
"audiobook (mp3)",
|
33 |
-
"audiobook (ogg)",
|
34 |
-
"book (txt)",
|
35 |
-
] # Add DOCX and etc.
|
36 |
-
|
37 |
-
|
38 |
-
def get_no_ext_filename(file_path):
|
39 |
-
file_name_with_extension = os.path.basename(rf"{file_path}")
|
40 |
-
filename_without_extension, _ = os.path.splitext(file_name_with_extension)
|
41 |
-
return filename_without_extension
|
42 |
-
|
43 |
-
|
44 |
-
def get_video_info(link):
|
45 |
-
aux_name = f"video_url_{link}"
|
46 |
-
params_dlp = {"quiet": True, "no_warnings": True, "noplaylist": True}
|
47 |
-
try:
|
48 |
-
from yt_dlp import YoutubeDL
|
49 |
-
|
50 |
-
with YoutubeDL(params_dlp) as ydl:
|
51 |
-
if link.startswith(("www.youtube.com/", "m.youtube.com/")):
|
52 |
-
link = "https://" + link
|
53 |
-
info_dict = ydl.extract_info(link, download=False, process=False)
|
54 |
-
video_id = info_dict.get("id", aux_name)
|
55 |
-
video_title = info_dict.get("title", video_id)
|
56 |
-
if "youtube.com" in link and "&list=" in link:
|
57 |
-
video_title = ydl.extract_info(
|
58 |
-
"https://m.youtube.com/watch?v="+video_id,
|
59 |
-
download=False,
|
60 |
-
process=False
|
61 |
-
).get("title", video_title)
|
62 |
-
except Exception as error:
|
63 |
-
logger.error(str(error))
|
64 |
-
video_title, video_id = aux_name, "NO_ID"
|
65 |
-
return video_title, video_id
|
66 |
-
|
67 |
-
|
68 |
-
def sanitize_file_name(file_name):
|
69 |
-
# Normalize the string to NFKD form to separate combined
|
70 |
-
# characters into base characters and diacritics
|
71 |
-
normalized_name = unicodedata.normalize("NFKD", file_name)
|
72 |
-
# Replace any non-ASCII characters or special symbols with an underscore
|
73 |
-
sanitized_name = re.sub(r"[^\w\s.-]", "_", normalized_name)
|
74 |
-
return sanitized_name
|
75 |
-
|
76 |
-
|
77 |
-
def get_output_file(
|
78 |
-
original_file,
|
79 |
-
new_file_name,
|
80 |
-
soft_subtitles,
|
81 |
-
output_directory="",
|
82 |
-
):
|
83 |
-
directory_base = "." # default directory
|
84 |
-
|
85 |
-
if output_directory and os.path.isdir(output_directory):
|
86 |
-
new_file_path = os.path.join(output_directory, new_file_name)
|
87 |
-
else:
|
88 |
-
new_file_path = os.path.join(directory_base, "outputs", new_file_name)
|
89 |
-
remove_files(new_file_path)
|
90 |
-
|
91 |
-
cm = None
|
92 |
-
if soft_subtitles and original_file.endswith(".mp4"):
|
93 |
-
if new_file_path.endswith(".mp4"):
|
94 |
-
cm = f'ffmpeg -y -i "{original_file}" -i sub_tra.srt -i sub_ori.srt -map 0:v -map 0:a -map 1 -map 2 -c:v copy -c:a copy -c:s mov_text "{new_file_path}"'
|
95 |
-
else:
|
96 |
-
cm = f'ffmpeg -y -i "{original_file}" -i sub_tra.srt -i sub_ori.srt -map 0:v -map 0:a -map 1 -map 2 -c:v copy -c:a copy -c:s srt -movflags use_metadata_tags -map_metadata 0 "{new_file_path}"'
|
97 |
-
elif new_file_path.endswith(".mkv"):
|
98 |
-
cm = f'ffmpeg -i "{original_file}" -c:v copy -c:a copy "{new_file_path}"'
|
99 |
-
elif new_file_path.endswith(".wav") and not original_file.endswith(".wav"):
|
100 |
-
cm = f'ffmpeg -y -i "{original_file}" -acodec pcm_s16le -ar 44100 -ac 2 "{new_file_path}"'
|
101 |
-
elif new_file_path.endswith(".ogg"):
|
102 |
-
cm = f'ffmpeg -i "{original_file}" -c:a libvorbis "{new_file_path}"'
|
103 |
-
elif new_file_path.endswith(".mp3") and not original_file.endswith(".mp3"):
|
104 |
-
cm = f'ffmpeg -y -i "{original_file}" -codec:a libmp3lame -qscale:a 2 "{new_file_path}"'
|
105 |
-
|
106 |
-
if cm:
|
107 |
-
try:
|
108 |
-
run_command(cm)
|
109 |
-
except Exception as error:
|
110 |
-
logger.error(str(error))
|
111 |
-
remove_files(new_file_path)
|
112 |
-
shutil.copy2(original_file, new_file_path)
|
113 |
-
else:
|
114 |
-
shutil.copy2(original_file, new_file_path)
|
115 |
-
|
116 |
-
return os.path.abspath(new_file_path)
|
117 |
-
|
118 |
-
|
119 |
-
def media_out(
|
120 |
-
media_file,
|
121 |
-
lang_code,
|
122 |
-
media_out_name="",
|
123 |
-
extension="mp4",
|
124 |
-
file_obj="video_dub.mp4",
|
125 |
-
soft_subtitles=False,
|
126 |
-
subtitle_files="disable",
|
127 |
-
):
|
128 |
-
if media_out_name:
|
129 |
-
base_name = media_out_name + "_origin"
|
130 |
-
else:
|
131 |
-
if os.path.exists(media_file):
|
132 |
-
base_name = get_no_ext_filename(media_file)
|
133 |
-
else:
|
134 |
-
base_name, _ = get_video_info(media_file)
|
135 |
-
|
136 |
-
media_out_name = f"{base_name}__{lang_code}"
|
137 |
-
|
138 |
-
f_name = f"{sanitize_file_name(media_out_name)}.{extension}"
|
139 |
-
|
140 |
-
if subtitle_files != "disable":
|
141 |
-
final_media = [get_output_file(file_obj, f_name, soft_subtitles)]
|
142 |
-
name_tra = f"{sanitize_file_name(media_out_name)}.{subtitle_files}"
|
143 |
-
name_ori = f"{sanitize_file_name(base_name)}.{subtitle_files}"
|
144 |
-
tgt_subs = f"sub_tra.{subtitle_files}"
|
145 |
-
ori_subs = f"sub_ori.{subtitle_files}"
|
146 |
-
final_subtitles = [
|
147 |
-
get_output_file(tgt_subs, name_tra, False),
|
148 |
-
get_output_file(ori_subs, name_ori, False)
|
149 |
-
]
|
150 |
-
return final_media + final_subtitles
|
151 |
-
else:
|
152 |
-
return get_output_file(file_obj, f_name, soft_subtitles)
|
153 |
-
|
154 |
-
|
155 |
-
def get_subtitle_speaker(media_file, result, language, extension, base_name):
|
156 |
-
|
157 |
-
segments_base = copy.deepcopy(result)
|
158 |
-
|
159 |
-
# Sub segments by speaker
|
160 |
-
segments_by_speaker = {}
|
161 |
-
for segment in segments_base["segments"]:
|
162 |
-
if segment["speaker"] not in segments_by_speaker.keys():
|
163 |
-
segments_by_speaker[segment["speaker"]] = [segment]
|
164 |
-
else:
|
165 |
-
segments_by_speaker[segment["speaker"]].append(segment)
|
166 |
-
|
167 |
-
if not base_name:
|
168 |
-
if os.path.exists(media_file):
|
169 |
-
base_name = get_no_ext_filename(media_file)
|
170 |
-
else:
|
171 |
-
base_name, _ = get_video_info(media_file)
|
172 |
-
|
173 |
-
files_subs = []
|
174 |
-
for name_sk, segments in segments_by_speaker.items():
|
175 |
-
|
176 |
-
subtitle_speaker = get_subtitle(
|
177 |
-
language,
|
178 |
-
{"segments": segments},
|
179 |
-
extension,
|
180 |
-
filename=name_sk,
|
181 |
-
)
|
182 |
-
|
183 |
-
media_out_name = f"{base_name}_{language}_{name_sk}"
|
184 |
-
|
185 |
-
output = media_out(
|
186 |
-
media_file, # no need
|
187 |
-
language,
|
188 |
-
media_out_name,
|
189 |
-
extension,
|
190 |
-
file_obj=subtitle_speaker,
|
191 |
-
)
|
192 |
-
|
193 |
-
files_subs.append(output)
|
194 |
-
|
195 |
-
return files_subs
|
196 |
-
|
197 |
-
|
198 |
-
def sound_separate(media_file, task_uvr):
|
199 |
-
from .mdx_net import process_uvr_task
|
200 |
-
|
201 |
-
outputs = []
|
202 |
-
|
203 |
-
if "vocal" in task_uvr:
|
204 |
-
try:
|
205 |
-
_, _, _, _, vocal_audio = process_uvr_task(
|
206 |
-
orig_song_path=media_file,
|
207 |
-
main_vocals=False,
|
208 |
-
dereverb=True if "dereverb" in task_uvr else False,
|
209 |
-
remove_files_output_dir=True,
|
210 |
-
)
|
211 |
-
outputs.append(vocal_audio)
|
212 |
-
except Exception as error:
|
213 |
-
logger.error(str(error))
|
214 |
-
|
215 |
-
if "background" in task_uvr:
|
216 |
-
try:
|
217 |
-
background_audio, _ = process_uvr_task(
|
218 |
-
orig_song_path=media_file,
|
219 |
-
song_id="voiceless",
|
220 |
-
only_voiceless=True,
|
221 |
-
remove_files_output_dir=False if "vocal" in task_uvr else True,
|
222 |
-
)
|
223 |
-
# copy_files(background_audio, ".")
|
224 |
-
outputs.append(background_audio)
|
225 |
-
except Exception as error:
|
226 |
-
logger.error(str(error))
|
227 |
-
|
228 |
-
if not outputs:
|
229 |
-
raise Exception("Error in uvr process")
|
230 |
-
|
231 |
-
return outputs
|
|
|
1 |
+
from .utils import remove_files, run_command
|
2 |
+
from .text_multiformat_processor import get_subtitle
|
3 |
+
from .logging_setup import logger
|
4 |
+
import unicodedata
|
5 |
+
import shutil
|
6 |
+
import copy
|
7 |
+
import os
|
8 |
+
import re
|
9 |
+
|
10 |
+
OUTPUT_TYPE_OPTIONS = [
|
11 |
+
"video (mp4)",
|
12 |
+
"video (mkv)",
|
13 |
+
"audio (mp3)",
|
14 |
+
"audio (ogg)",
|
15 |
+
"audio (wav)",
|
16 |
+
"subtitle",
|
17 |
+
"subtitle [by speaker]",
|
18 |
+
"video [subtitled] (mp4)",
|
19 |
+
"video [subtitled] (mkv)",
|
20 |
+
"audio [original vocal sound]",
|
21 |
+
"audio [original background sound]",
|
22 |
+
"audio [original vocal and background sound]",
|
23 |
+
"audio [original vocal-dereverb sound]",
|
24 |
+
"audio [original vocal-dereverb and background sound]",
|
25 |
+
"raw media",
|
26 |
+
]
|
27 |
+
|
28 |
+
DOCS_OUTPUT_TYPE_OPTIONS = [
|
29 |
+
"videobook (mp4)",
|
30 |
+
"videobook (mkv)",
|
31 |
+
"audiobook (wav)",
|
32 |
+
"audiobook (mp3)",
|
33 |
+
"audiobook (ogg)",
|
34 |
+
"book (txt)",
|
35 |
+
] # Add DOCX and etc.
|
36 |
+
|
37 |
+
|
38 |
+
def get_no_ext_filename(file_path):
|
39 |
+
file_name_with_extension = os.path.basename(rf"{file_path}")
|
40 |
+
filename_without_extension, _ = os.path.splitext(file_name_with_extension)
|
41 |
+
return filename_without_extension
|
42 |
+
|
43 |
+
|
44 |
+
def get_video_info(link):
|
45 |
+
aux_name = f"video_url_{link}"
|
46 |
+
params_dlp = {"quiet": True, "no_warnings": True, "noplaylist": True}
|
47 |
+
try:
|
48 |
+
from yt_dlp import YoutubeDL
|
49 |
+
|
50 |
+
with YoutubeDL(params_dlp) as ydl:
|
51 |
+
if link.startswith(("www.youtube.com/", "m.youtube.com/")):
|
52 |
+
link = "https://" + link
|
53 |
+
info_dict = ydl.extract_info(link, download=False, process=False)
|
54 |
+
video_id = info_dict.get("id", aux_name)
|
55 |
+
video_title = info_dict.get("title", video_id)
|
56 |
+
if "youtube.com" in link and "&list=" in link:
|
57 |
+
video_title = ydl.extract_info(
|
58 |
+
"https://m.youtube.com/watch?v="+video_id,
|
59 |
+
download=False,
|
60 |
+
process=False
|
61 |
+
).get("title", video_title)
|
62 |
+
except Exception as error:
|
63 |
+
logger.error(str(error))
|
64 |
+
video_title, video_id = aux_name, "NO_ID"
|
65 |
+
return video_title, video_id
|
66 |
+
|
67 |
+
|
68 |
+
def sanitize_file_name(file_name):
|
69 |
+
# Normalize the string to NFKD form to separate combined
|
70 |
+
# characters into base characters and diacritics
|
71 |
+
normalized_name = unicodedata.normalize("NFKD", file_name)
|
72 |
+
# Replace any non-ASCII characters or special symbols with an underscore
|
73 |
+
sanitized_name = re.sub(r"[^\w\s.-]", "_", normalized_name)
|
74 |
+
return sanitized_name
|
75 |
+
|
76 |
+
|
77 |
+
def get_output_file(
|
78 |
+
original_file,
|
79 |
+
new_file_name,
|
80 |
+
soft_subtitles,
|
81 |
+
output_directory="",
|
82 |
+
):
|
83 |
+
directory_base = "." # default directory
|
84 |
+
|
85 |
+
if output_directory and os.path.isdir(output_directory):
|
86 |
+
new_file_path = os.path.join(output_directory, new_file_name)
|
87 |
+
else:
|
88 |
+
new_file_path = os.path.join(directory_base, "outputs", new_file_name)
|
89 |
+
remove_files(new_file_path)
|
90 |
+
|
91 |
+
cm = None
|
92 |
+
if soft_subtitles and original_file.endswith(".mp4"):
|
93 |
+
if new_file_path.endswith(".mp4"):
|
94 |
+
cm = f'ffmpeg -y -i "{original_file}" -i sub_tra.srt -i sub_ori.srt -map 0:v -map 0:a -map 1 -map 2 -c:v copy -c:a copy -c:s mov_text "{new_file_path}"'
|
95 |
+
else:
|
96 |
+
cm = f'ffmpeg -y -i "{original_file}" -i sub_tra.srt -i sub_ori.srt -map 0:v -map 0:a -map 1 -map 2 -c:v copy -c:a copy -c:s srt -movflags use_metadata_tags -map_metadata 0 "{new_file_path}"'
|
97 |
+
elif new_file_path.endswith(".mkv"):
|
98 |
+
cm = f'ffmpeg -i "{original_file}" -c:v copy -c:a copy "{new_file_path}"'
|
99 |
+
elif new_file_path.endswith(".wav") and not original_file.endswith(".wav"):
|
100 |
+
cm = f'ffmpeg -y -i "{original_file}" -acodec pcm_s16le -ar 44100 -ac 2 "{new_file_path}"'
|
101 |
+
elif new_file_path.endswith(".ogg"):
|
102 |
+
cm = f'ffmpeg -i "{original_file}" -c:a libvorbis "{new_file_path}"'
|
103 |
+
elif new_file_path.endswith(".mp3") and not original_file.endswith(".mp3"):
|
104 |
+
cm = f'ffmpeg -y -i "{original_file}" -codec:a libmp3lame -qscale:a 2 "{new_file_path}"'
|
105 |
+
|
106 |
+
if cm:
|
107 |
+
try:
|
108 |
+
run_command(cm)
|
109 |
+
except Exception as error:
|
110 |
+
logger.error(str(error))
|
111 |
+
remove_files(new_file_path)
|
112 |
+
shutil.copy2(original_file, new_file_path)
|
113 |
+
else:
|
114 |
+
shutil.copy2(original_file, new_file_path)
|
115 |
+
|
116 |
+
return os.path.abspath(new_file_path)
|
117 |
+
|
118 |
+
|
119 |
+
def media_out(
|
120 |
+
media_file,
|
121 |
+
lang_code,
|
122 |
+
media_out_name="",
|
123 |
+
extension="mp4",
|
124 |
+
file_obj="video_dub.mp4",
|
125 |
+
soft_subtitles=False,
|
126 |
+
subtitle_files="disable",
|
127 |
+
):
|
128 |
+
if media_out_name:
|
129 |
+
base_name = media_out_name + "_origin"
|
130 |
+
else:
|
131 |
+
if os.path.exists(media_file):
|
132 |
+
base_name = get_no_ext_filename(media_file)
|
133 |
+
else:
|
134 |
+
base_name, _ = get_video_info(media_file)
|
135 |
+
|
136 |
+
media_out_name = f"{base_name}__{lang_code}"
|
137 |
+
|
138 |
+
f_name = f"{sanitize_file_name(media_out_name)}.{extension}"
|
139 |
+
|
140 |
+
if subtitle_files != "disable":
|
141 |
+
final_media = [get_output_file(file_obj, f_name, soft_subtitles)]
|
142 |
+
name_tra = f"{sanitize_file_name(media_out_name)}.{subtitle_files}"
|
143 |
+
name_ori = f"{sanitize_file_name(base_name)}.{subtitle_files}"
|
144 |
+
tgt_subs = f"sub_tra.{subtitle_files}"
|
145 |
+
ori_subs = f"sub_ori.{subtitle_files}"
|
146 |
+
final_subtitles = [
|
147 |
+
get_output_file(tgt_subs, name_tra, False),
|
148 |
+
get_output_file(ori_subs, name_ori, False)
|
149 |
+
]
|
150 |
+
return final_media + final_subtitles
|
151 |
+
else:
|
152 |
+
return get_output_file(file_obj, f_name, soft_subtitles)
|
153 |
+
|
154 |
+
|
155 |
+
def get_subtitle_speaker(media_file, result, language, extension, base_name):
|
156 |
+
|
157 |
+
segments_base = copy.deepcopy(result)
|
158 |
+
|
159 |
+
# Sub segments by speaker
|
160 |
+
segments_by_speaker = {}
|
161 |
+
for segment in segments_base["segments"]:
|
162 |
+
if segment["speaker"] not in segments_by_speaker.keys():
|
163 |
+
segments_by_speaker[segment["speaker"]] = [segment]
|
164 |
+
else:
|
165 |
+
segments_by_speaker[segment["speaker"]].append(segment)
|
166 |
+
|
167 |
+
if not base_name:
|
168 |
+
if os.path.exists(media_file):
|
169 |
+
base_name = get_no_ext_filename(media_file)
|
170 |
+
else:
|
171 |
+
base_name, _ = get_video_info(media_file)
|
172 |
+
|
173 |
+
files_subs = []
|
174 |
+
for name_sk, segments in segments_by_speaker.items():
|
175 |
+
|
176 |
+
subtitle_speaker = get_subtitle(
|
177 |
+
language,
|
178 |
+
{"segments": segments},
|
179 |
+
extension,
|
180 |
+
filename=name_sk,
|
181 |
+
)
|
182 |
+
|
183 |
+
media_out_name = f"{base_name}_{language}_{name_sk}"
|
184 |
+
|
185 |
+
output = media_out(
|
186 |
+
media_file, # no need
|
187 |
+
language,
|
188 |
+
media_out_name,
|
189 |
+
extension,
|
190 |
+
file_obj=subtitle_speaker,
|
191 |
+
)
|
192 |
+
|
193 |
+
files_subs.append(output)
|
194 |
+
|
195 |
+
return files_subs
|
196 |
+
|
197 |
+
|
198 |
+
def sound_separate(media_file, task_uvr):
|
199 |
+
from .mdx_net import process_uvr_task
|
200 |
+
|
201 |
+
outputs = []
|
202 |
+
|
203 |
+
if "vocal" in task_uvr:
|
204 |
+
try:
|
205 |
+
_, _, _, _, vocal_audio = process_uvr_task(
|
206 |
+
orig_song_path=media_file,
|
207 |
+
main_vocals=False,
|
208 |
+
dereverb=True if "dereverb" in task_uvr else False,
|
209 |
+
remove_files_output_dir=True,
|
210 |
+
)
|
211 |
+
outputs.append(vocal_audio)
|
212 |
+
except Exception as error:
|
213 |
+
logger.error(str(error))
|
214 |
+
|
215 |
+
if "background" in task_uvr:
|
216 |
+
try:
|
217 |
+
background_audio, _ = process_uvr_task(
|
218 |
+
orig_song_path=media_file,
|
219 |
+
song_id="voiceless",
|
220 |
+
only_voiceless=True,
|
221 |
+
remove_files_output_dir=False if "vocal" in task_uvr else True,
|
222 |
+
)
|
223 |
+
# copy_files(background_audio, ".")
|
224 |
+
outputs.append(background_audio)
|
225 |
+
except Exception as error:
|
226 |
+
logger.error(str(error))
|
227 |
+
|
228 |
+
if not outputs:
|
229 |
+
raise Exception("Error in uvr process")
|
230 |
+
|
231 |
+
return outputs
|
soni_translate/preprocessor.py
CHANGED
@@ -1,309 +1,309 @@
|
|
1 |
-
from .utils import remove_files
|
2 |
-
import os, shutil, subprocess, time, shlex, sys # noqa
|
3 |
-
from .logging_setup import logger
|
4 |
-
import json
|
5 |
-
|
6 |
-
ERROR_INCORRECT_CODEC_PARAMETERS = [
|
7 |
-
"prores", # mov
|
8 |
-
"ffv1", # mkv
|
9 |
-
"msmpeg4v3", # avi
|
10 |
-
"wmv2", # wmv
|
11 |
-
"theora", # ogv
|
12 |
-
] # fix final merge
|
13 |
-
|
14 |
-
TESTED_CODECS = [
|
15 |
-
"h264", # mp4
|
16 |
-
"h265", # mp4
|
17 |
-
"hevc",
|
18 |
-
"vp9", # webm
|
19 |
-
"mpeg4", # mp4
|
20 |
-
"mpeg2video", # mpg
|
21 |
-
"mjpeg", # avi
|
22 |
-
]
|
23 |
-
|
24 |
-
|
25 |
-
class OperationFailedError(Exception):
|
26 |
-
def __init__(self, message="The operation did not complete successfully."):
|
27 |
-
self.message = message
|
28 |
-
super().__init__(self.message)
|
29 |
-
|
30 |
-
|
31 |
-
def get_video_codec(video_file):
|
32 |
-
command_base = rf'ffprobe -v error -select_streams v:0 -show_entries stream=codec_name -of json "{video_file}"'
|
33 |
-
command = shlex.split(command_base)
|
34 |
-
try:
|
35 |
-
process = subprocess.Popen(
|
36 |
-
command,
|
37 |
-
stdout=subprocess.PIPE,
|
38 |
-
creationflags=subprocess.CREATE_NO_WINDOW if sys.platform == "win32" else 0,
|
39 |
-
)
|
40 |
-
output, _ = process.communicate()
|
41 |
-
codec_info = json.loads(output.decode('utf-8'))
|
42 |
-
codec_name = codec_info['streams'][0]['codec_name']
|
43 |
-
return codec_name
|
44 |
-
except Exception as error:
|
45 |
-
logger.debug(str(error))
|
46 |
-
return None
|
47 |
-
|
48 |
-
|
49 |
-
def audio_preprocessor(preview, base_audio, audio_wav, use_cuda=False):
|
50 |
-
base_audio = base_audio.strip()
|
51 |
-
previous_files_to_remove = [audio_wav]
|
52 |
-
remove_files(previous_files_to_remove)
|
53 |
-
|
54 |
-
if preview:
|
55 |
-
logger.warning(
|
56 |
-
"Creating a preview video of 10 seconds, to disable "
|
57 |
-
"this option, go to advanced settings and turn off preview."
|
58 |
-
)
|
59 |
-
wav_ = f'ffmpeg -y -i "{base_audio}" -ss 00:00:20 -t 00:00:10 -vn -acodec pcm_s16le -ar 44100 -ac 2 audio.wav'
|
60 |
-
else:
|
61 |
-
wav_ = f'ffmpeg -y -i "{base_audio}" -vn -acodec pcm_s16le -ar 44100 -ac 2 audio.wav'
|
62 |
-
|
63 |
-
# Run cmd process
|
64 |
-
sub_params = {
|
65 |
-
"stdout": subprocess.PIPE,
|
66 |
-
"stderr": subprocess.PIPE,
|
67 |
-
"creationflags": subprocess.CREATE_NO_WINDOW
|
68 |
-
if sys.platform == "win32"
|
69 |
-
else 0,
|
70 |
-
}
|
71 |
-
wav_ = shlex.split(wav_)
|
72 |
-
result_convert_audio = subprocess.Popen(wav_, **sub_params)
|
73 |
-
output, errors = result_convert_audio.communicate()
|
74 |
-
time.sleep(1)
|
75 |
-
if result_convert_audio.returncode in [1, 2] or not os.path.exists(
|
76 |
-
audio_wav
|
77 |
-
):
|
78 |
-
raise OperationFailedError(f"Error can't create the audio file:\n{errors.decode('utf-8')}")
|
79 |
-
|
80 |
-
|
81 |
-
def audio_video_preprocessor(
|
82 |
-
preview, video, OutputFile, audio_wav, use_cuda=False
|
83 |
-
):
|
84 |
-
video = video.strip()
|
85 |
-
previous_files_to_remove = [OutputFile, "audio.webm", audio_wav]
|
86 |
-
remove_files(previous_files_to_remove)
|
87 |
-
|
88 |
-
if os.path.exists(video):
|
89 |
-
if preview:
|
90 |
-
logger.warning(
|
91 |
-
"Creating a preview video of 10 seconds, "
|
92 |
-
"to disable this option, go to advanced "
|
93 |
-
"settings and turn off preview."
|
94 |
-
)
|
95 |
-
mp4_ = f'ffmpeg -y -i "{video}" -ss 00:00:20 -t 00:00:10 -c:v libx264 -c:a aac -strict experimental Video.mp4'
|
96 |
-
else:
|
97 |
-
video_codec = get_video_codec(video)
|
98 |
-
if not video_codec:
|
99 |
-
logger.debug("No video codec found in video")
|
100 |
-
else:
|
101 |
-
logger.info(f"Video codec: {video_codec}")
|
102 |
-
|
103 |
-
# Check if the file ends with ".mp4" extension or is valid codec
|
104 |
-
if video.endswith(".mp4") or video_codec in TESTED_CODECS:
|
105 |
-
destination_path = os.path.join(os.getcwd(), "Video.mp4")
|
106 |
-
shutil.copy(video, destination_path)
|
107 |
-
time.sleep(0.5)
|
108 |
-
if os.path.exists(OutputFile):
|
109 |
-
mp4_ = "ffmpeg -h"
|
110 |
-
else:
|
111 |
-
mp4_ = f'ffmpeg -y -i "{video}" -c copy Video.mp4'
|
112 |
-
else:
|
113 |
-
logger.warning(
|
114 |
-
"File does not have the '.mp4' extension or a "
|
115 |
-
"supported codec. Converting video to mp4 (codec: h264)."
|
116 |
-
)
|
117 |
-
mp4_ = f'ffmpeg -y -i "{video}" -c:v libx264 -c:a aac -strict experimental Video.mp4'
|
118 |
-
else:
|
119 |
-
if preview:
|
120 |
-
logger.warning(
|
121 |
-
"Creating a preview from the link, 10 seconds "
|
122 |
-
"to disable this option, go to advanced "
|
123 |
-
"settings and turn off preview."
|
124 |
-
)
|
125 |
-
# https://github.com/yt-dlp/yt-dlp/issues/2220
|
126 |
-
mp4_ = f'yt-dlp -f "mp4" --downloader ffmpeg --downloader-args "ffmpeg_i: -ss 00:00:20 -t 00:00:10" --force-overwrites --max-downloads 1 --no-warnings --no-playlist --no-abort-on-error --ignore-no-formats-error --restrict-filenames -o {OutputFile} {video}'
|
127 |
-
wav_ = "ffmpeg -y -i Video.mp4 -vn -acodec pcm_s16le -ar 44100 -ac 2 audio.wav"
|
128 |
-
else:
|
129 |
-
mp4_ = f'yt-dlp -f "mp4" --force-overwrites --max-downloads 1 --no-warnings --no-playlist --no-abort-on-error --ignore-no-formats-error --restrict-filenames -o {OutputFile} {video}'
|
130 |
-
wav_ = f"python -m yt_dlp --output {audio_wav} --force-overwrites --max-downloads 1 --no-warnings --no-playlist --no-abort-on-error --ignore-no-formats-error --extract-audio --audio-format wav {video}"
|
131 |
-
|
132 |
-
# Run cmd process
|
133 |
-
mp4_ = shlex.split(mp4_)
|
134 |
-
sub_params = {
|
135 |
-
"stdout": subprocess.PIPE,
|
136 |
-
"stderr": subprocess.PIPE,
|
137 |
-
"creationflags": subprocess.CREATE_NO_WINDOW
|
138 |
-
if sys.platform == "win32"
|
139 |
-
else 0,
|
140 |
-
}
|
141 |
-
|
142 |
-
if os.path.exists(video):
|
143 |
-
logger.info("Process video...")
|
144 |
-
result_convert_video = subprocess.Popen(mp4_, **sub_params)
|
145 |
-
# result_convert_video.wait()
|
146 |
-
output, errors = result_convert_video.communicate()
|
147 |
-
time.sleep(1)
|
148 |
-
if result_convert_video.returncode in [1, 2] or not os.path.exists(
|
149 |
-
OutputFile
|
150 |
-
):
|
151 |
-
raise OperationFailedError(f"Error processing video:\n{errors.decode('utf-8')}")
|
152 |
-
logger.info("Process audio...")
|
153 |
-
wav_ = "ffmpeg -y -i Video.mp4 -vn -acodec pcm_s16le -ar 44100 -ac 2 audio.wav"
|
154 |
-
wav_ = shlex.split(wav_)
|
155 |
-
result_convert_audio = subprocess.Popen(wav_, **sub_params)
|
156 |
-
output, errors = result_convert_audio.communicate()
|
157 |
-
time.sleep(1)
|
158 |
-
if result_convert_audio.returncode in [1, 2] or not os.path.exists(
|
159 |
-
audio_wav
|
160 |
-
):
|
161 |
-
raise OperationFailedError(f"Error can't create the audio file:\n{errors.decode('utf-8')}")
|
162 |
-
|
163 |
-
else:
|
164 |
-
wav_ = shlex.split(wav_)
|
165 |
-
if preview:
|
166 |
-
result_convert_video = subprocess.Popen(mp4_, **sub_params)
|
167 |
-
output, errors = result_convert_video.communicate()
|
168 |
-
time.sleep(0.5)
|
169 |
-
result_convert_audio = subprocess.Popen(wav_, **sub_params)
|
170 |
-
output, errors = result_convert_audio.communicate()
|
171 |
-
time.sleep(0.5)
|
172 |
-
if result_convert_audio.returncode in [1, 2] or not os.path.exists(
|
173 |
-
audio_wav
|
174 |
-
):
|
175 |
-
raise OperationFailedError(
|
176 |
-
f"Error can't create the preview file:\n{errors.decode('utf-8')}"
|
177 |
-
)
|
178 |
-
else:
|
179 |
-
logger.info("Process audio...")
|
180 |
-
result_convert_audio = subprocess.Popen(wav_, **sub_params)
|
181 |
-
output, errors = result_convert_audio.communicate()
|
182 |
-
time.sleep(1)
|
183 |
-
if result_convert_audio.returncode in [1, 2] or not os.path.exists(
|
184 |
-
audio_wav
|
185 |
-
):
|
186 |
-
raise OperationFailedError(f"Error can't download the audio:\n{errors.decode('utf-8')}")
|
187 |
-
logger.info("Process video...")
|
188 |
-
result_convert_video = subprocess.Popen(mp4_, **sub_params)
|
189 |
-
output, errors = result_convert_video.communicate()
|
190 |
-
time.sleep(1)
|
191 |
-
if result_convert_video.returncode in [1, 2] or not os.path.exists(
|
192 |
-
OutputFile
|
193 |
-
):
|
194 |
-
raise OperationFailedError(f"Error can't download the video:\n{errors.decode('utf-8')}")
|
195 |
-
|
196 |
-
|
197 |
-
def old_audio_video_preprocessor(preview, video, OutputFile, audio_wav):
|
198 |
-
previous_files_to_remove = [OutputFile, "audio.webm", audio_wav]
|
199 |
-
remove_files(previous_files_to_remove)
|
200 |
-
|
201 |
-
if os.path.exists(video):
|
202 |
-
if preview:
|
203 |
-
logger.warning(
|
204 |
-
"Creating a preview video of 10 seconds, "
|
205 |
-
"to disable this option, go to advanced "
|
206 |
-
"settings and turn off preview."
|
207 |
-
)
|
208 |
-
command = f'ffmpeg -y -i "{video}" -ss 00:00:20 -t 00:00:10 -c:v libx264 -c:a aac -strict experimental Video.mp4'
|
209 |
-
result_convert_video = subprocess.run(
|
210 |
-
command, capture_output=True, text=True, shell=True
|
211 |
-
)
|
212 |
-
else:
|
213 |
-
# Check if the file ends with ".mp4" extension
|
214 |
-
if video.endswith(".mp4"):
|
215 |
-
destination_path = os.path.join(os.getcwd(), "Video.mp4")
|
216 |
-
shutil.copy(video, destination_path)
|
217 |
-
result_convert_video = {}
|
218 |
-
result_convert_video = subprocess.run(
|
219 |
-
"echo Video copied",
|
220 |
-
capture_output=True,
|
221 |
-
text=True,
|
222 |
-
shell=True,
|
223 |
-
)
|
224 |
-
else:
|
225 |
-
logger.warning(
|
226 |
-
"File does not have the '.mp4' extension. Converting video."
|
227 |
-
)
|
228 |
-
command = f'ffmpeg -y -i "{video}" -c:v libx264 -c:a aac -strict experimental Video.mp4'
|
229 |
-
result_convert_video = subprocess.run(
|
230 |
-
command, capture_output=True, text=True, shell=True
|
231 |
-
)
|
232 |
-
|
233 |
-
if result_convert_video.returncode in [1, 2]:
|
234 |
-
raise OperationFailedError("Error can't convert the video")
|
235 |
-
|
236 |
-
for i in range(120):
|
237 |
-
time.sleep(1)
|
238 |
-
logger.info("Process video...")
|
239 |
-
if os.path.exists(OutputFile):
|
240 |
-
time.sleep(1)
|
241 |
-
command = "ffmpeg -y -i Video.mp4 -vn -acodec pcm_s16le -ar 44100 -ac 2 audio.wav"
|
242 |
-
result_convert_audio = subprocess.run(
|
243 |
-
command, capture_output=True, text=True, shell=True
|
244 |
-
)
|
245 |
-
time.sleep(1)
|
246 |
-
break
|
247 |
-
if i == 119:
|
248 |
-
# if not os.path.exists(OutputFile):
|
249 |
-
raise OperationFailedError("Error processing video")
|
250 |
-
|
251 |
-
if result_convert_audio.returncode in [1, 2]:
|
252 |
-
raise OperationFailedError(
|
253 |
-
f"Error can't create the audio file: {result_convert_audio.stderr}"
|
254 |
-
)
|
255 |
-
|
256 |
-
for i in range(120):
|
257 |
-
time.sleep(1)
|
258 |
-
logger.info("Process audio...")
|
259 |
-
if os.path.exists(audio_wav):
|
260 |
-
break
|
261 |
-
if i == 119:
|
262 |
-
raise OperationFailedError("Error can't create the audio file")
|
263 |
-
|
264 |
-
else:
|
265 |
-
video = video.strip()
|
266 |
-
if preview:
|
267 |
-
logger.warning(
|
268 |
-
"Creating a preview from the link, 10 "
|
269 |
-
"seconds to disable this option, go to "
|
270 |
-
"advanced settings and turn off preview."
|
271 |
-
)
|
272 |
-
# https://github.com/yt-dlp/yt-dlp/issues/2220
|
273 |
-
mp4_ = f'yt-dlp -f "mp4" --downloader ffmpeg --downloader-args "ffmpeg_i: -ss 00:00:20 -t 00:00:10" --force-overwrites --max-downloads 1 --no-warnings --no-abort-on-error --ignore-no-formats-error --restrict-filenames -o {OutputFile} {video}'
|
274 |
-
wav_ = "ffmpeg -y -i Video.mp4 -vn -acodec pcm_s16le -ar 44100 -ac 2 audio.wav"
|
275 |
-
result_convert_video = subprocess.run(
|
276 |
-
mp4_, capture_output=True, text=True, shell=True
|
277 |
-
)
|
278 |
-
result_convert_audio = subprocess.run(
|
279 |
-
wav_, capture_output=True, text=True, shell=True
|
280 |
-
)
|
281 |
-
if result_convert_audio.returncode in [1, 2]:
|
282 |
-
raise OperationFailedError("Error can't download a preview")
|
283 |
-
else:
|
284 |
-
mp4_ = f'yt-dlp -f "mp4" --force-overwrites --max-downloads 1 --no-warnings --no-abort-on-error --ignore-no-formats-error --restrict-filenames -o {OutputFile} {video}'
|
285 |
-
wav_ = f"python -m yt_dlp --output {audio_wav} --force-overwrites --max-downloads 1 --no-warnings --no-abort-on-error --ignore-no-formats-error --extract-audio --audio-format wav {video}"
|
286 |
-
|
287 |
-
result_convert_audio = subprocess.run(
|
288 |
-
wav_, capture_output=True, text=True, shell=True
|
289 |
-
)
|
290 |
-
|
291 |
-
if result_convert_audio.returncode in [1, 2]:
|
292 |
-
raise OperationFailedError("Error can't download the audio")
|
293 |
-
|
294 |
-
for i in range(120):
|
295 |
-
time.sleep(1)
|
296 |
-
logger.info("Process audio...")
|
297 |
-
if os.path.exists(audio_wav) and not os.path.exists(
|
298 |
-
"audio.webm"
|
299 |
-
):
|
300 |
-
time.sleep(1)
|
301 |
-
result_convert_video = subprocess.run(
|
302 |
-
mp4_, capture_output=True, text=True, shell=True
|
303 |
-
)
|
304 |
-
break
|
305 |
-
if i == 119:
|
306 |
-
raise OperationFailedError("Error downloading the audio")
|
307 |
-
|
308 |
-
if result_convert_video.returncode in [1, 2]:
|
309 |
-
raise OperationFailedError("Error can't download the video")
|
|
|
1 |
+
from .utils import remove_files
|
2 |
+
import os, shutil, subprocess, time, shlex, sys # noqa
|
3 |
+
from .logging_setup import logger
|
4 |
+
import json
|
5 |
+
|
6 |
+
ERROR_INCORRECT_CODEC_PARAMETERS = [
|
7 |
+
"prores", # mov
|
8 |
+
"ffv1", # mkv
|
9 |
+
"msmpeg4v3", # avi
|
10 |
+
"wmv2", # wmv
|
11 |
+
"theora", # ogv
|
12 |
+
] # fix final merge
|
13 |
+
|
14 |
+
TESTED_CODECS = [
|
15 |
+
"h264", # mp4
|
16 |
+
"h265", # mp4
|
17 |
+
"hevc",
|
18 |
+
"vp9", # webm
|
19 |
+
"mpeg4", # mp4
|
20 |
+
"mpeg2video", # mpg
|
21 |
+
"mjpeg", # avi
|
22 |
+
]
|
23 |
+
|
24 |
+
|
25 |
+
class OperationFailedError(Exception):
|
26 |
+
def __init__(self, message="The operation did not complete successfully."):
|
27 |
+
self.message = message
|
28 |
+
super().__init__(self.message)
|
29 |
+
|
30 |
+
|
31 |
+
def get_video_codec(video_file):
|
32 |
+
command_base = rf'ffprobe -v error -select_streams v:0 -show_entries stream=codec_name -of json "{video_file}"'
|
33 |
+
command = shlex.split(command_base)
|
34 |
+
try:
|
35 |
+
process = subprocess.Popen(
|
36 |
+
command,
|
37 |
+
stdout=subprocess.PIPE,
|
38 |
+
creationflags=subprocess.CREATE_NO_WINDOW if sys.platform == "win32" else 0,
|
39 |
+
)
|
40 |
+
output, _ = process.communicate()
|
41 |
+
codec_info = json.loads(output.decode('utf-8'))
|
42 |
+
codec_name = codec_info['streams'][0]['codec_name']
|
43 |
+
return codec_name
|
44 |
+
except Exception as error:
|
45 |
+
logger.debug(str(error))
|
46 |
+
return None
|
47 |
+
|
48 |
+
|
49 |
+
def audio_preprocessor(preview, base_audio, audio_wav, use_cuda=False):
|
50 |
+
base_audio = base_audio.strip()
|
51 |
+
previous_files_to_remove = [audio_wav]
|
52 |
+
remove_files(previous_files_to_remove)
|
53 |
+
|
54 |
+
if preview:
|
55 |
+
logger.warning(
|
56 |
+
"Creating a preview video of 10 seconds, to disable "
|
57 |
+
"this option, go to advanced settings and turn off preview."
|
58 |
+
)
|
59 |
+
wav_ = f'ffmpeg -y -i "{base_audio}" -ss 00:00:20 -t 00:00:10 -vn -acodec pcm_s16le -ar 44100 -ac 2 audio.wav'
|
60 |
+
else:
|
61 |
+
wav_ = f'ffmpeg -y -i "{base_audio}" -vn -acodec pcm_s16le -ar 44100 -ac 2 audio.wav'
|
62 |
+
|
63 |
+
# Run cmd process
|
64 |
+
sub_params = {
|
65 |
+
"stdout": subprocess.PIPE,
|
66 |
+
"stderr": subprocess.PIPE,
|
67 |
+
"creationflags": subprocess.CREATE_NO_WINDOW
|
68 |
+
if sys.platform == "win32"
|
69 |
+
else 0,
|
70 |
+
}
|
71 |
+
wav_ = shlex.split(wav_)
|
72 |
+
result_convert_audio = subprocess.Popen(wav_, **sub_params)
|
73 |
+
output, errors = result_convert_audio.communicate()
|
74 |
+
time.sleep(1)
|
75 |
+
if result_convert_audio.returncode in [1, 2] or not os.path.exists(
|
76 |
+
audio_wav
|
77 |
+
):
|
78 |
+
raise OperationFailedError(f"Error can't create the audio file:\n{errors.decode('utf-8')}")
|
79 |
+
|
80 |
+
|
81 |
+
def audio_video_preprocessor(
|
82 |
+
preview, video, OutputFile, audio_wav, use_cuda=False
|
83 |
+
):
|
84 |
+
video = video.strip()
|
85 |
+
previous_files_to_remove = [OutputFile, "audio.webm", audio_wav]
|
86 |
+
remove_files(previous_files_to_remove)
|
87 |
+
|
88 |
+
if os.path.exists(video):
|
89 |
+
if preview:
|
90 |
+
logger.warning(
|
91 |
+
"Creating a preview video of 10 seconds, "
|
92 |
+
"to disable this option, go to advanced "
|
93 |
+
"settings and turn off preview."
|
94 |
+
)
|
95 |
+
mp4_ = f'ffmpeg -y -i "{video}" -ss 00:00:20 -t 00:00:10 -c:v libx264 -c:a aac -strict experimental Video.mp4'
|
96 |
+
else:
|
97 |
+
video_codec = get_video_codec(video)
|
98 |
+
if not video_codec:
|
99 |
+
logger.debug("No video codec found in video")
|
100 |
+
else:
|
101 |
+
logger.info(f"Video codec: {video_codec}")
|
102 |
+
|
103 |
+
# Check if the file ends with ".mp4" extension or is valid codec
|
104 |
+
if video.endswith(".mp4") or video_codec in TESTED_CODECS:
|
105 |
+
destination_path = os.path.join(os.getcwd(), "Video.mp4")
|
106 |
+
shutil.copy(video, destination_path)
|
107 |
+
time.sleep(0.5)
|
108 |
+
if os.path.exists(OutputFile):
|
109 |
+
mp4_ = "ffmpeg -h"
|
110 |
+
else:
|
111 |
+
mp4_ = f'ffmpeg -y -i "{video}" -c copy Video.mp4'
|
112 |
+
else:
|
113 |
+
logger.warning(
|
114 |
+
"File does not have the '.mp4' extension or a "
|
115 |
+
"supported codec. Converting video to mp4 (codec: h264)."
|
116 |
+
)
|
117 |
+
mp4_ = f'ffmpeg -y -i "{video}" -c:v libx264 -c:a aac -strict experimental Video.mp4'
|
118 |
+
else:
|
119 |
+
if preview:
|
120 |
+
logger.warning(
|
121 |
+
"Creating a preview from the link, 10 seconds "
|
122 |
+
"to disable this option, go to advanced "
|
123 |
+
"settings and turn off preview."
|
124 |
+
)
|
125 |
+
# https://github.com/yt-dlp/yt-dlp/issues/2220
|
126 |
+
mp4_ = f'yt-dlp -f "mp4" --downloader ffmpeg --downloader-args "ffmpeg_i: -ss 00:00:20 -t 00:00:10" --force-overwrites --max-downloads 1 --no-warnings --no-playlist --no-abort-on-error --ignore-no-formats-error --restrict-filenames -o {OutputFile} {video}'
|
127 |
+
wav_ = "ffmpeg -y -i Video.mp4 -vn -acodec pcm_s16le -ar 44100 -ac 2 audio.wav"
|
128 |
+
else:
|
129 |
+
mp4_ = f'yt-dlp -f "mp4" --force-overwrites --max-downloads 1 --no-warnings --no-playlist --no-abort-on-error --ignore-no-formats-error --restrict-filenames -o {OutputFile} {video}'
|
130 |
+
wav_ = f"python -m yt_dlp --output {audio_wav} --force-overwrites --max-downloads 1 --no-warnings --no-playlist --no-abort-on-error --ignore-no-formats-error --extract-audio --audio-format wav {video}"
|
131 |
+
|
132 |
+
# Run cmd process
|
133 |
+
mp4_ = shlex.split(mp4_)
|
134 |
+
sub_params = {
|
135 |
+
"stdout": subprocess.PIPE,
|
136 |
+
"stderr": subprocess.PIPE,
|
137 |
+
"creationflags": subprocess.CREATE_NO_WINDOW
|
138 |
+
if sys.platform == "win32"
|
139 |
+
else 0,
|
140 |
+
}
|
141 |
+
|
142 |
+
if os.path.exists(video):
|
143 |
+
logger.info("Process video...")
|
144 |
+
result_convert_video = subprocess.Popen(mp4_, **sub_params)
|
145 |
+
# result_convert_video.wait()
|
146 |
+
output, errors = result_convert_video.communicate()
|
147 |
+
time.sleep(1)
|
148 |
+
if result_convert_video.returncode in [1, 2] or not os.path.exists(
|
149 |
+
OutputFile
|
150 |
+
):
|
151 |
+
raise OperationFailedError(f"Error processing video:\n{errors.decode('utf-8')}")
|
152 |
+
logger.info("Process audio...")
|
153 |
+
wav_ = "ffmpeg -y -i Video.mp4 -vn -acodec pcm_s16le -ar 44100 -ac 2 audio.wav"
|
154 |
+
wav_ = shlex.split(wav_)
|
155 |
+
result_convert_audio = subprocess.Popen(wav_, **sub_params)
|
156 |
+
output, errors = result_convert_audio.communicate()
|
157 |
+
time.sleep(1)
|
158 |
+
if result_convert_audio.returncode in [1, 2] or not os.path.exists(
|
159 |
+
audio_wav
|
160 |
+
):
|
161 |
+
raise OperationFailedError(f"Error can't create the audio file:\n{errors.decode('utf-8')}")
|
162 |
+
|
163 |
+
else:
|
164 |
+
wav_ = shlex.split(wav_)
|
165 |
+
if preview:
|
166 |
+
result_convert_video = subprocess.Popen(mp4_, **sub_params)
|
167 |
+
output, errors = result_convert_video.communicate()
|
168 |
+
time.sleep(0.5)
|
169 |
+
result_convert_audio = subprocess.Popen(wav_, **sub_params)
|
170 |
+
output, errors = result_convert_audio.communicate()
|
171 |
+
time.sleep(0.5)
|
172 |
+
if result_convert_audio.returncode in [1, 2] or not os.path.exists(
|
173 |
+
audio_wav
|
174 |
+
):
|
175 |
+
raise OperationFailedError(
|
176 |
+
f"Error can't create the preview file:\n{errors.decode('utf-8')}"
|
177 |
+
)
|
178 |
+
else:
|
179 |
+
logger.info("Process audio...")
|
180 |
+
result_convert_audio = subprocess.Popen(wav_, **sub_params)
|
181 |
+
output, errors = result_convert_audio.communicate()
|
182 |
+
time.sleep(1)
|
183 |
+
if result_convert_audio.returncode in [1, 2] or not os.path.exists(
|
184 |
+
audio_wav
|
185 |
+
):
|
186 |
+
raise OperationFailedError(f"Error can't download the audio:\n{errors.decode('utf-8')}")
|
187 |
+
logger.info("Process video...")
|
188 |
+
result_convert_video = subprocess.Popen(mp4_, **sub_params)
|
189 |
+
output, errors = result_convert_video.communicate()
|
190 |
+
time.sleep(1)
|
191 |
+
if result_convert_video.returncode in [1, 2] or not os.path.exists(
|
192 |
+
OutputFile
|
193 |
+
):
|
194 |
+
raise OperationFailedError(f"Error can't download the video:\n{errors.decode('utf-8')}")
|
195 |
+
|
196 |
+
|
197 |
+
def old_audio_video_preprocessor(preview, video, OutputFile, audio_wav):
|
198 |
+
previous_files_to_remove = [OutputFile, "audio.webm", audio_wav]
|
199 |
+
remove_files(previous_files_to_remove)
|
200 |
+
|
201 |
+
if os.path.exists(video):
|
202 |
+
if preview:
|
203 |
+
logger.warning(
|
204 |
+
"Creating a preview video of 10 seconds, "
|
205 |
+
"to disable this option, go to advanced "
|
206 |
+
"settings and turn off preview."
|
207 |
+
)
|
208 |
+
command = f'ffmpeg -y -i "{video}" -ss 00:00:20 -t 00:00:10 -c:v libx264 -c:a aac -strict experimental Video.mp4'
|
209 |
+
result_convert_video = subprocess.run(
|
210 |
+
command, capture_output=True, text=True, shell=True
|
211 |
+
)
|
212 |
+
else:
|
213 |
+
# Check if the file ends with ".mp4" extension
|
214 |
+
if video.endswith(".mp4"):
|
215 |
+
destination_path = os.path.join(os.getcwd(), "Video.mp4")
|
216 |
+
shutil.copy(video, destination_path)
|
217 |
+
result_convert_video = {}
|
218 |
+
result_convert_video = subprocess.run(
|
219 |
+
"echo Video copied",
|
220 |
+
capture_output=True,
|
221 |
+
text=True,
|
222 |
+
shell=True,
|
223 |
+
)
|
224 |
+
else:
|
225 |
+
logger.warning(
|
226 |
+
"File does not have the '.mp4' extension. Converting video."
|
227 |
+
)
|
228 |
+
command = f'ffmpeg -y -i "{video}" -c:v libx264 -c:a aac -strict experimental Video.mp4'
|
229 |
+
result_convert_video = subprocess.run(
|
230 |
+
command, capture_output=True, text=True, shell=True
|
231 |
+
)
|
232 |
+
|
233 |
+
if result_convert_video.returncode in [1, 2]:
|
234 |
+
raise OperationFailedError("Error can't convert the video")
|
235 |
+
|
236 |
+
for i in range(120):
|
237 |
+
time.sleep(1)
|
238 |
+
logger.info("Process video...")
|
239 |
+
if os.path.exists(OutputFile):
|
240 |
+
time.sleep(1)
|
241 |
+
command = "ffmpeg -y -i Video.mp4 -vn -acodec pcm_s16le -ar 44100 -ac 2 audio.wav"
|
242 |
+
result_convert_audio = subprocess.run(
|
243 |
+
command, capture_output=True, text=True, shell=True
|
244 |
+
)
|
245 |
+
time.sleep(1)
|
246 |
+
break
|
247 |
+
if i == 119:
|
248 |
+
# if not os.path.exists(OutputFile):
|
249 |
+
raise OperationFailedError("Error processing video")
|
250 |
+
|
251 |
+
if result_convert_audio.returncode in [1, 2]:
|
252 |
+
raise OperationFailedError(
|
253 |
+
f"Error can't create the audio file: {result_convert_audio.stderr}"
|
254 |
+
)
|
255 |
+
|
256 |
+
for i in range(120):
|
257 |
+
time.sleep(1)
|
258 |
+
logger.info("Process audio...")
|
259 |
+
if os.path.exists(audio_wav):
|
260 |
+
break
|
261 |
+
if i == 119:
|
262 |
+
raise OperationFailedError("Error can't create the audio file")
|
263 |
+
|
264 |
+
else:
|
265 |
+
video = video.strip()
|
266 |
+
if preview:
|
267 |
+
logger.warning(
|
268 |
+
"Creating a preview from the link, 10 "
|
269 |
+
"seconds to disable this option, go to "
|
270 |
+
"advanced settings and turn off preview."
|
271 |
+
)
|
272 |
+
# https://github.com/yt-dlp/yt-dlp/issues/2220
|
273 |
+
mp4_ = f'yt-dlp -f "mp4" --downloader ffmpeg --downloader-args "ffmpeg_i: -ss 00:00:20 -t 00:00:10" --force-overwrites --max-downloads 1 --no-warnings --no-abort-on-error --ignore-no-formats-error --restrict-filenames -o {OutputFile} {video}'
|
274 |
+
wav_ = "ffmpeg -y -i Video.mp4 -vn -acodec pcm_s16le -ar 44100 -ac 2 audio.wav"
|
275 |
+
result_convert_video = subprocess.run(
|
276 |
+
mp4_, capture_output=True, text=True, shell=True
|
277 |
+
)
|
278 |
+
result_convert_audio = subprocess.run(
|
279 |
+
wav_, capture_output=True, text=True, shell=True
|
280 |
+
)
|
281 |
+
if result_convert_audio.returncode in [1, 2]:
|
282 |
+
raise OperationFailedError("Error can't download a preview")
|
283 |
+
else:
|
284 |
+
mp4_ = f'yt-dlp -f "mp4" --force-overwrites --max-downloads 1 --no-warnings --no-abort-on-error --ignore-no-formats-error --restrict-filenames -o {OutputFile} {video}'
|
285 |
+
wav_ = f"python -m yt_dlp --output {audio_wav} --force-overwrites --max-downloads 1 --no-warnings --no-abort-on-error --ignore-no-formats-error --extract-audio --audio-format wav {video}"
|
286 |
+
|
287 |
+
result_convert_audio = subprocess.run(
|
288 |
+
wav_, capture_output=True, text=True, shell=True
|
289 |
+
)
|
290 |
+
|
291 |
+
if result_convert_audio.returncode in [1, 2]:
|
292 |
+
raise OperationFailedError("Error can't download the audio")
|
293 |
+
|
294 |
+
for i in range(120):
|
295 |
+
time.sleep(1)
|
296 |
+
logger.info("Process audio...")
|
297 |
+
if os.path.exists(audio_wav) and not os.path.exists(
|
298 |
+
"audio.webm"
|
299 |
+
):
|
300 |
+
time.sleep(1)
|
301 |
+
result_convert_video = subprocess.run(
|
302 |
+
mp4_, capture_output=True, text=True, shell=True
|
303 |
+
)
|
304 |
+
break
|
305 |
+
if i == 119:
|
306 |
+
raise OperationFailedError("Error downloading the audio")
|
307 |
+
|
308 |
+
if result_convert_video.returncode in [1, 2]:
|
309 |
+
raise OperationFailedError("Error can't download the video")
|
soni_translate/speech_segmentation.py
CHANGED
@@ -1,499 +1,447 @@
|
|
1 |
-
from whisperx.alignment import (
|
2 |
-
DEFAULT_ALIGN_MODELS_TORCH as DAMT,
|
3 |
-
DEFAULT_ALIGN_MODELS_HF as DAMHF,
|
4 |
-
)
|
5 |
-
from whisperx.utils import TO_LANGUAGE_CODE
|
6 |
-
import whisperx
|
7 |
-
import torch
|
8 |
-
import gc
|
9 |
-
import os
|
10 |
-
import soundfile as sf
|
11 |
-
from IPython.utils import capture # noqa
|
12 |
-
from .language_configuration import EXTRA_ALIGN, INVERTED_LANGUAGES
|
13 |
-
from .logging_setup import logger
|
14 |
-
from .postprocessor import sanitize_file_name
|
15 |
-
from .utils import remove_directory_contents, run_command
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
"
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
)
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
)
|
449 |
-
|
450 |
-
except Exception as error:
|
451 |
-
error_str = str(error)
|
452 |
-
gc.collect()
|
453 |
-
torch.cuda.empty_cache() # noqa
|
454 |
-
if "'NoneType' object has no attribute 'to'" in error_str:
|
455 |
-
if model_name == diarization_models["pyannote_2.1"]:
|
456 |
-
raise ValueError(
|
457 |
-
"Accept the license agreement for using Pyannote 2.1."
|
458 |
-
" You need to have an account on Hugging Face and "
|
459 |
-
"accept the license to use the models: "
|
460 |
-
"https://huggingface.co/pyannote/speaker-diarization "
|
461 |
-
"and https://huggingface.co/pyannote/segmentation "
|
462 |
-
"Get your KEY TOKEN here: "
|
463 |
-
"https://hf.co/settings/tokens "
|
464 |
-
)
|
465 |
-
elif model_name == diarization_models["pyannote_3.1"]:
|
466 |
-
raise ValueError(
|
467 |
-
"New Licence Pyannote 3.1: You need to have an account"
|
468 |
-
" on Hugging Face and accept the license to use the "
|
469 |
-
"models: https://huggingface.co/pyannote/speaker-diarization-3.1 " # noqa
|
470 |
-
"and https://huggingface.co/pyannote/segmentation-3.0 "
|
471 |
-
)
|
472 |
-
else:
|
473 |
-
raise error
|
474 |
-
|
475 |
-
random_sleep()
|
476 |
-
diarize_segments = diarize_audio(diarize_model, audio_wav, min_speakers, max_speakers)
|
477 |
-
|
478 |
-
result_diarize = whisperx.assign_word_speakers(
|
479 |
-
diarize_segments, result
|
480 |
-
)
|
481 |
-
|
482 |
-
for segment in result_diarize["segments"]:
|
483 |
-
if "speaker" not in segment:
|
484 |
-
segment["speaker"] = "SPEAKER_00"
|
485 |
-
logger.warning(
|
486 |
-
f"No speaker detected in {segment['start']}. First TTS "
|
487 |
-
f"will be used for the segment text: {segment['text']} "
|
488 |
-
)
|
489 |
-
|
490 |
-
del diarize_model
|
491 |
-
gc.collect()
|
492 |
-
torch.cuda.empty_cache() # noqa
|
493 |
-
else:
|
494 |
-
result_diarize = result
|
495 |
-
result_diarize["segments"] = [
|
496 |
-
{**item, "speaker": "SPEAKER_00"}
|
497 |
-
for item in result_diarize["segments"]
|
498 |
-
]
|
499 |
-
return reencode_speakers(result_diarize)
|
|
|
1 |
+
from whisperx.alignment import (
|
2 |
+
DEFAULT_ALIGN_MODELS_TORCH as DAMT,
|
3 |
+
DEFAULT_ALIGN_MODELS_HF as DAMHF,
|
4 |
+
)
|
5 |
+
from whisperx.utils import TO_LANGUAGE_CODE
|
6 |
+
import whisperx
|
7 |
+
import torch
|
8 |
+
import gc
|
9 |
+
import os
|
10 |
+
import soundfile as sf
|
11 |
+
from IPython.utils import capture # noqa
|
12 |
+
from .language_configuration import EXTRA_ALIGN, INVERTED_LANGUAGES
|
13 |
+
from .logging_setup import logger
|
14 |
+
from .postprocessor import sanitize_file_name
|
15 |
+
from .utils import remove_directory_contents, run_command
|
16 |
+
|
17 |
+
ASR_MODEL_OPTIONS = [
|
18 |
+
"tiny",
|
19 |
+
"base",
|
20 |
+
"small",
|
21 |
+
"medium",
|
22 |
+
"large",
|
23 |
+
"large-v1",
|
24 |
+
"large-v2",
|
25 |
+
"large-v3",
|
26 |
+
"distil-large-v2",
|
27 |
+
"Systran/faster-distil-whisper-large-v3",
|
28 |
+
"tiny.en",
|
29 |
+
"base.en",
|
30 |
+
"small.en",
|
31 |
+
"medium.en",
|
32 |
+
"distil-small.en",
|
33 |
+
"distil-medium.en",
|
34 |
+
"OpenAI_API_Whisper",
|
35 |
+
]
|
36 |
+
|
37 |
+
COMPUTE_TYPE_GPU = [
|
38 |
+
"default",
|
39 |
+
"auto",
|
40 |
+
"int8",
|
41 |
+
"int8_float32",
|
42 |
+
"int8_float16",
|
43 |
+
"int8_bfloat16",
|
44 |
+
"float16",
|
45 |
+
"bfloat16",
|
46 |
+
"float32"
|
47 |
+
]
|
48 |
+
|
49 |
+
COMPUTE_TYPE_CPU = [
|
50 |
+
"default",
|
51 |
+
"auto",
|
52 |
+
"int8",
|
53 |
+
"int8_float32",
|
54 |
+
"int16",
|
55 |
+
"float32",
|
56 |
+
]
|
57 |
+
|
58 |
+
WHISPER_MODELS_PATH = './WHISPER_MODELS'
|
59 |
+
|
60 |
+
|
61 |
+
def openai_api_whisper(
|
62 |
+
input_audio_file,
|
63 |
+
source_lang=None,
|
64 |
+
chunk_duration=1800
|
65 |
+
):
|
66 |
+
|
67 |
+
info = sf.info(input_audio_file)
|
68 |
+
duration = info.duration
|
69 |
+
|
70 |
+
output_directory = "./whisper_api_audio_parts"
|
71 |
+
os.makedirs(output_directory, exist_ok=True)
|
72 |
+
remove_directory_contents(output_directory)
|
73 |
+
|
74 |
+
if duration > chunk_duration:
|
75 |
+
# Split the audio file into smaller chunks with 30-minute duration
|
76 |
+
cm = f'ffmpeg -i "{input_audio_file}" -f segment -segment_time {chunk_duration} -c:a libvorbis "{output_directory}/output%03d.ogg"'
|
77 |
+
run_command(cm)
|
78 |
+
# Get list of generated chunk files
|
79 |
+
chunk_files = sorted(
|
80 |
+
[f"{output_directory}/{f}" for f in os.listdir(output_directory) if f.endswith('.ogg')]
|
81 |
+
)
|
82 |
+
else:
|
83 |
+
one_file = f"{output_directory}/output000.ogg"
|
84 |
+
cm = f'ffmpeg -i "{input_audio_file}" -c:a libvorbis {one_file}'
|
85 |
+
run_command(cm)
|
86 |
+
chunk_files = [one_file]
|
87 |
+
|
88 |
+
# Transcript
|
89 |
+
segments = []
|
90 |
+
language = source_lang if source_lang else None
|
91 |
+
for i, chunk in enumerate(chunk_files):
|
92 |
+
from openai import OpenAI
|
93 |
+
client = OpenAI()
|
94 |
+
|
95 |
+
audio_file = open(chunk, "rb")
|
96 |
+
transcription = client.audio.transcriptions.create(
|
97 |
+
model="whisper-1",
|
98 |
+
file=audio_file,
|
99 |
+
language=language,
|
100 |
+
response_format="verbose_json",
|
101 |
+
timestamp_granularities=["segment"],
|
102 |
+
)
|
103 |
+
|
104 |
+
try:
|
105 |
+
transcript_dict = transcription.model_dump()
|
106 |
+
except: # noqa
|
107 |
+
transcript_dict = transcription.to_dict()
|
108 |
+
|
109 |
+
if language is None:
|
110 |
+
logger.info(f'Language detected: {transcript_dict["language"]}')
|
111 |
+
language = TO_LANGUAGE_CODE[transcript_dict["language"]]
|
112 |
+
|
113 |
+
chunk_time = chunk_duration * (i)
|
114 |
+
|
115 |
+
for seg in transcript_dict["segments"]:
|
116 |
+
|
117 |
+
if "start" in seg.keys():
|
118 |
+
segments.append(
|
119 |
+
{
|
120 |
+
"text": seg["text"],
|
121 |
+
"start": seg["start"] + chunk_time,
|
122 |
+
"end": seg["end"] + chunk_time,
|
123 |
+
}
|
124 |
+
)
|
125 |
+
|
126 |
+
audio = whisperx.load_audio(input_audio_file)
|
127 |
+
result = {"segments": segments, "language": language}
|
128 |
+
|
129 |
+
return audio, result
|
130 |
+
|
131 |
+
|
132 |
+
def find_whisper_models():
|
133 |
+
path = WHISPER_MODELS_PATH
|
134 |
+
folders = []
|
135 |
+
|
136 |
+
if os.path.exists(path):
|
137 |
+
for folder in os.listdir(path):
|
138 |
+
folder_path = os.path.join(path, folder)
|
139 |
+
if (
|
140 |
+
os.path.isdir(folder_path)
|
141 |
+
and 'model.bin' in os.listdir(folder_path)
|
142 |
+
):
|
143 |
+
folders.append(folder)
|
144 |
+
return folders
|
145 |
+
|
146 |
+
|
147 |
+
def transcribe_speech(
|
148 |
+
audio_wav,
|
149 |
+
asr_model,
|
150 |
+
compute_type,
|
151 |
+
batch_size,
|
152 |
+
SOURCE_LANGUAGE,
|
153 |
+
literalize_numbers=True,
|
154 |
+
segment_duration_limit=15,
|
155 |
+
):
|
156 |
+
"""
|
157 |
+
Transcribe speech using a whisper model.
|
158 |
+
|
159 |
+
Parameters:
|
160 |
+
- audio_wav (str): Path to the audio file in WAV format.
|
161 |
+
- asr_model (str): The whisper model to be loaded.
|
162 |
+
- compute_type (str): Type of compute to be used (e.g., 'int8', 'float16').
|
163 |
+
- batch_size (int): Batch size for transcription.
|
164 |
+
- SOURCE_LANGUAGE (str): Source language for transcription.
|
165 |
+
|
166 |
+
Returns:
|
167 |
+
- Tuple containing:
|
168 |
+
- audio: Loaded audio file.
|
169 |
+
- result: Transcription result as a dictionary.
|
170 |
+
"""
|
171 |
+
|
172 |
+
if asr_model == "OpenAI_API_Whisper":
|
173 |
+
if literalize_numbers:
|
174 |
+
logger.info(
|
175 |
+
"OpenAI's API Whisper does not support "
|
176 |
+
"the literalization of numbers."
|
177 |
+
)
|
178 |
+
return openai_api_whisper(audio_wav, SOURCE_LANGUAGE)
|
179 |
+
|
180 |
+
# https://github.com/openai/whisper/discussions/277
|
181 |
+
prompt = "以下是普通话的句子。" if SOURCE_LANGUAGE == "zh" else None
|
182 |
+
SOURCE_LANGUAGE = (
|
183 |
+
SOURCE_LANGUAGE if SOURCE_LANGUAGE != "zh-TW" else "zh"
|
184 |
+
)
|
185 |
+
asr_options = {
|
186 |
+
"initial_prompt": prompt,
|
187 |
+
"suppress_numerals": literalize_numbers
|
188 |
+
}
|
189 |
+
|
190 |
+
if asr_model not in ASR_MODEL_OPTIONS:
|
191 |
+
|
192 |
+
base_dir = WHISPER_MODELS_PATH
|
193 |
+
if not os.path.exists(base_dir):
|
194 |
+
os.makedirs(base_dir)
|
195 |
+
model_dir = os.path.join(base_dir, sanitize_file_name(asr_model))
|
196 |
+
|
197 |
+
if not os.path.exists(model_dir):
|
198 |
+
from ctranslate2.converters import TransformersConverter
|
199 |
+
|
200 |
+
quantization = "float32"
|
201 |
+
# Download new model
|
202 |
+
try:
|
203 |
+
converter = TransformersConverter(
|
204 |
+
asr_model,
|
205 |
+
low_cpu_mem_usage=True,
|
206 |
+
copy_files=[
|
207 |
+
"tokenizer_config.json", "preprocessor_config.json"
|
208 |
+
]
|
209 |
+
)
|
210 |
+
converter.convert(
|
211 |
+
model_dir,
|
212 |
+
quantization=quantization,
|
213 |
+
force=False
|
214 |
+
)
|
215 |
+
except Exception as error:
|
216 |
+
if "File tokenizer_config.json does not exist" in str(error):
|
217 |
+
converter._copy_files = [
|
218 |
+
"tokenizer.json", "preprocessor_config.json"
|
219 |
+
]
|
220 |
+
converter.convert(
|
221 |
+
model_dir,
|
222 |
+
quantization=quantization,
|
223 |
+
force=True
|
224 |
+
)
|
225 |
+
else:
|
226 |
+
raise error
|
227 |
+
|
228 |
+
asr_model = model_dir
|
229 |
+
logger.info(f"ASR Model: {str(model_dir)}")
|
230 |
+
|
231 |
+
model = whisperx.load_model(
|
232 |
+
asr_model,
|
233 |
+
os.environ.get("SONITR_DEVICE"),
|
234 |
+
compute_type=compute_type,
|
235 |
+
language=SOURCE_LANGUAGE,
|
236 |
+
asr_options=asr_options,
|
237 |
+
)
|
238 |
+
|
239 |
+
audio = whisperx.load_audio(audio_wav)
|
240 |
+
result = model.transcribe(
|
241 |
+
audio,
|
242 |
+
batch_size=batch_size,
|
243 |
+
chunk_size=segment_duration_limit,
|
244 |
+
print_progress=True,
|
245 |
+
)
|
246 |
+
|
247 |
+
if result["language"] == "zh" and not prompt:
|
248 |
+
result["language"] = "zh-TW"
|
249 |
+
logger.info("Chinese - Traditional (zh-TW)")
|
250 |
+
|
251 |
+
del model
|
252 |
+
gc.collect()
|
253 |
+
torch.cuda.empty_cache() # noqa
|
254 |
+
return audio, result
|
255 |
+
|
256 |
+
|
257 |
+
def align_speech(audio, result):
|
258 |
+
"""
|
259 |
+
Aligns speech segments based on the provided audio and result metadata.
|
260 |
+
|
261 |
+
Parameters:
|
262 |
+
- audio (array): The audio data in a suitable format for alignment.
|
263 |
+
- result (dict): Metadata containing information about the segments
|
264 |
+
and language.
|
265 |
+
|
266 |
+
Returns:
|
267 |
+
- result (dict): Updated metadata after aligning the segments with
|
268 |
+
the audio. This includes character-level alignments if
|
269 |
+
'return_char_alignments' is set to True.
|
270 |
+
|
271 |
+
Notes:
|
272 |
+
- This function uses language-specific models to align speech segments.
|
273 |
+
- It performs language compatibility checks and selects the
|
274 |
+
appropriate alignment model.
|
275 |
+
- Cleans up memory by releasing resources after alignment.
|
276 |
+
"""
|
277 |
+
DAMHF.update(DAMT) # lang align
|
278 |
+
if (
|
279 |
+
not result["language"] in DAMHF.keys()
|
280 |
+
and not result["language"] in EXTRA_ALIGN.keys()
|
281 |
+
):
|
282 |
+
logger.warning(
|
283 |
+
"Automatic detection: Source language not compatible with align"
|
284 |
+
)
|
285 |
+
raise ValueError(
|
286 |
+
f"Detected language {result['language']} incompatible, "
|
287 |
+
"you can select the source language to avoid this error."
|
288 |
+
)
|
289 |
+
if (
|
290 |
+
result["language"] in EXTRA_ALIGN.keys()
|
291 |
+
and EXTRA_ALIGN[result["language"]] == ""
|
292 |
+
):
|
293 |
+
lang_name = (
|
294 |
+
INVERTED_LANGUAGES[result["language"]]
|
295 |
+
if result["language"] in INVERTED_LANGUAGES.keys()
|
296 |
+
else result["language"]
|
297 |
+
)
|
298 |
+
logger.warning(
|
299 |
+
"No compatible wav2vec2 model found "
|
300 |
+
f"for the language '{lang_name}', skipping alignment."
|
301 |
+
)
|
302 |
+
return result
|
303 |
+
|
304 |
+
model_a, metadata = whisperx.load_align_model(
|
305 |
+
language_code=result["language"],
|
306 |
+
device=os.environ.get("SONITR_DEVICE"),
|
307 |
+
model_name=None
|
308 |
+
if result["language"] in DAMHF.keys()
|
309 |
+
else EXTRA_ALIGN[result["language"]],
|
310 |
+
)
|
311 |
+
result = whisperx.align(
|
312 |
+
result["segments"],
|
313 |
+
model_a,
|
314 |
+
metadata,
|
315 |
+
audio,
|
316 |
+
os.environ.get("SONITR_DEVICE"),
|
317 |
+
return_char_alignments=True,
|
318 |
+
print_progress=False,
|
319 |
+
)
|
320 |
+
del model_a
|
321 |
+
gc.collect()
|
322 |
+
torch.cuda.empty_cache() # noqa
|
323 |
+
return result
|
324 |
+
|
325 |
+
|
326 |
+
diarization_models = {
|
327 |
+
"pyannote_3.1": "pyannote/speaker-diarization-3.1",
|
328 |
+
"pyannote_2.1": "pyannote/speaker-diarization@2.1",
|
329 |
+
"disable": "",
|
330 |
+
}
|
331 |
+
|
332 |
+
|
333 |
+
def reencode_speakers(result):
|
334 |
+
|
335 |
+
if result["segments"][0]["speaker"] == "SPEAKER_00":
|
336 |
+
return result
|
337 |
+
|
338 |
+
speaker_mapping = {}
|
339 |
+
counter = 0
|
340 |
+
|
341 |
+
logger.debug("Reencode speakers")
|
342 |
+
|
343 |
+
for segment in result["segments"]:
|
344 |
+
old_speaker = segment["speaker"]
|
345 |
+
if old_speaker not in speaker_mapping:
|
346 |
+
speaker_mapping[old_speaker] = f"SPEAKER_{counter:02d}"
|
347 |
+
counter += 1
|
348 |
+
segment["speaker"] = speaker_mapping[old_speaker]
|
349 |
+
|
350 |
+
return result
|
351 |
+
|
352 |
+
|
353 |
+
def diarize_speech(
|
354 |
+
audio_wav,
|
355 |
+
result,
|
356 |
+
min_speakers,
|
357 |
+
max_speakers,
|
358 |
+
YOUR_HF_TOKEN,
|
359 |
+
model_name="pyannote/speaker-diarization@2.1",
|
360 |
+
):
|
361 |
+
"""
|
362 |
+
Performs speaker diarization on speech segments.
|
363 |
+
|
364 |
+
Parameters:
|
365 |
+
- audio_wav (array): Audio data in WAV format to perform speaker
|
366 |
+
diarization.
|
367 |
+
- result (dict): Metadata containing information about speech segments
|
368 |
+
and alignments.
|
369 |
+
- min_speakers (int): Minimum number of speakers expected in the audio.
|
370 |
+
- max_speakers (int): Maximum number of speakers expected in the audio.
|
371 |
+
- YOUR_HF_TOKEN (str): Your Hugging Face API token for model
|
372 |
+
authentication.
|
373 |
+
- model_name (str): Name of the speaker diarization model to be used
|
374 |
+
(default: "pyannote/speaker-diarization@2.1").
|
375 |
+
|
376 |
+
Returns:
|
377 |
+
- result_diarize (dict): Updated metadata after assigning speaker
|
378 |
+
labels to segments.
|
379 |
+
|
380 |
+
Notes:
|
381 |
+
- This function utilizes a speaker diarization model to label speaker
|
382 |
+
segments in the audio.
|
383 |
+
- It assigns speakers to word-level segments based on diarization results.
|
384 |
+
- Cleans up memory by releasing resources after diarization.
|
385 |
+
- If only one speaker is specified, each segment is automatically assigned
|
386 |
+
as the first speaker, eliminating the need for diarization inference.
|
387 |
+
"""
|
388 |
+
|
389 |
+
if max(min_speakers, max_speakers) > 1 and model_name:
|
390 |
+
try:
|
391 |
+
|
392 |
+
diarize_model = whisperx.DiarizationPipeline(
|
393 |
+
model_name=model_name,
|
394 |
+
use_auth_token=YOUR_HF_TOKEN,
|
395 |
+
device=os.environ.get("SONITR_DEVICE"),
|
396 |
+
)
|
397 |
+
|
398 |
+
except Exception as error:
|
399 |
+
error_str = str(error)
|
400 |
+
gc.collect()
|
401 |
+
torch.cuda.empty_cache() # noqa
|
402 |
+
if "'NoneType' object has no attribute 'to'" in error_str:
|
403 |
+
if model_name == diarization_models["pyannote_2.1"]:
|
404 |
+
raise ValueError(
|
405 |
+
"Accept the license agreement for using Pyannote 2.1."
|
406 |
+
" You need to have an account on Hugging Face and "
|
407 |
+
"accept the license to use the models: "
|
408 |
+
"https://huggingface.co/pyannote/speaker-diarization "
|
409 |
+
"and https://huggingface.co/pyannote/segmentation "
|
410 |
+
"Get your KEY TOKEN here: "
|
411 |
+
"https://hf.co/settings/tokens "
|
412 |
+
)
|
413 |
+
elif model_name == diarization_models["pyannote_3.1"]:
|
414 |
+
raise ValueError(
|
415 |
+
"New Licence Pyannote 3.1: You need to have an account"
|
416 |
+
" on Hugging Face and accept the license to use the "
|
417 |
+
"models: https://huggingface.co/pyannote/speaker-diarization-3.1 " # noqa
|
418 |
+
"and https://huggingface.co/pyannote/segmentation-3.0 "
|
419 |
+
)
|
420 |
+
else:
|
421 |
+
raise error
|
422 |
+
diarize_segments = diarize_model(
|
423 |
+
audio_wav, min_speakers=min_speakers, max_speakers=max_speakers
|
424 |
+
)
|
425 |
+
|
426 |
+
result_diarize = whisperx.assign_word_speakers(
|
427 |
+
diarize_segments, result
|
428 |
+
)
|
429 |
+
|
430 |
+
for segment in result_diarize["segments"]:
|
431 |
+
if "speaker" not in segment:
|
432 |
+
segment["speaker"] = "SPEAKER_00"
|
433 |
+
logger.warning(
|
434 |
+
f"No speaker detected in {segment['start']}. First TTS "
|
435 |
+
f"will be used for the segment text: {segment['text']} "
|
436 |
+
)
|
437 |
+
|
438 |
+
del diarize_model
|
439 |
+
gc.collect()
|
440 |
+
torch.cuda.empty_cache() # noqa
|
441 |
+
else:
|
442 |
+
result_diarize = result
|
443 |
+
result_diarize["segments"] = [
|
444 |
+
{**item, "speaker": "SPEAKER_00"}
|
445 |
+
for item in result_diarize["segments"]
|
446 |
+
]
|
447 |
+
return reencode_speakers(result_diarize)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
soni_translate/text_multiformat_processor.py
CHANGED
@@ -1,987 +1,987 @@
|
|
1 |
-
from .logging_setup import logger
|
2 |
-
from whisperx.utils import get_writer
|
3 |
-
from .utils import remove_files, run_command, remove_directory_contents
|
4 |
-
from typing import List
|
5 |
-
import srt
|
6 |
-
import re
|
7 |
-
import os
|
8 |
-
import copy
|
9 |
-
import string
|
10 |
-
import soundfile as sf
|
11 |
-
from PIL import Image, ImageOps, ImageDraw, ImageFont
|
12 |
-
|
13 |
-
punctuation_list = list(
|
14 |
-
string.punctuation + "¡¿«»„”“”‚‘’「」『』《》()【】〈〉〔〕〖〗〘〙〚〛⸤⸥⸨⸩"
|
15 |
-
)
|
16 |
-
symbol_list = punctuation_list + ["", "..", "..."]
|
17 |
-
|
18 |
-
|
19 |
-
def extract_from_srt(file_path):
|
20 |
-
with open(file_path, "r", encoding="utf-8") as file:
|
21 |
-
srt_content = file.read()
|
22 |
-
|
23 |
-
subtitle_generator = srt.parse(srt_content)
|
24 |
-
srt_content_list = list(subtitle_generator)
|
25 |
-
|
26 |
-
return srt_content_list
|
27 |
-
|
28 |
-
|
29 |
-
def clean_text(text):
|
30 |
-
|
31 |
-
# Remove content within square brackets
|
32 |
-
text = re.sub(r'\[.*?\]', '', text)
|
33 |
-
# Add pattern to remove content within <comment> tags
|
34 |
-
text = re.sub(r'<comment>.*?</comment>', '', text)
|
35 |
-
# Remove HTML tags
|
36 |
-
text = re.sub(r'<.*?>', '', text)
|
37 |
-
# Remove "♫" and "♪" content
|
38 |
-
text = re.sub(r'♫.*?♫', '', text)
|
39 |
-
text = re.sub(r'♪.*?♪', '', text)
|
40 |
-
# Replace newline characters with an empty string
|
41 |
-
text = text.replace("\n", ". ")
|
42 |
-
# Remove double quotation marks
|
43 |
-
text = text.replace('"', '')
|
44 |
-
# Collapse multiple spaces and replace with a single space
|
45 |
-
text = re.sub(r"\s+", " ", text)
|
46 |
-
# Normalize spaces around periods
|
47 |
-
text = re.sub(r"[\s\.]+(?=\s)", ". ", text)
|
48 |
-
# Check if there are ♫ or ♪ symbols present
|
49 |
-
if '♫' in text or '♪' in text:
|
50 |
-
return ""
|
51 |
-
|
52 |
-
text = text.strip()
|
53 |
-
|
54 |
-
# Valid text
|
55 |
-
return text if text not in symbol_list else ""
|
56 |
-
|
57 |
-
|
58 |
-
def srt_file_to_segments(file_path, speaker=False):
|
59 |
-
try:
|
60 |
-
srt_content_list = extract_from_srt(file_path)
|
61 |
-
except Exception as error:
|
62 |
-
logger.error(str(error))
|
63 |
-
fixed_file = "fixed_sub.srt"
|
64 |
-
remove_files(fixed_file)
|
65 |
-
fix_sub = f'ffmpeg -i "{file_path}" "{fixed_file}" -y'
|
66 |
-
run_command(fix_sub)
|
67 |
-
srt_content_list = extract_from_srt(fixed_file)
|
68 |
-
|
69 |
-
segments = []
|
70 |
-
for segment in srt_content_list:
|
71 |
-
|
72 |
-
text = clean_text(str(segment.content))
|
73 |
-
|
74 |
-
if text:
|
75 |
-
segments.append(
|
76 |
-
{
|
77 |
-
"text": text,
|
78 |
-
"start": float(segment.start.total_seconds()),
|
79 |
-
"end": float(segment.end.total_seconds()),
|
80 |
-
}
|
81 |
-
)
|
82 |
-
|
83 |
-
if not segments:
|
84 |
-
raise Exception("No data found in srt subtitle file")
|
85 |
-
|
86 |
-
if speaker:
|
87 |
-
segments = [{**seg, "speaker": "SPEAKER_00"} for seg in segments]
|
88 |
-
|
89 |
-
return {"segments": segments}
|
90 |
-
|
91 |
-
|
92 |
-
# documents
|
93 |
-
|
94 |
-
|
95 |
-
def dehyphenate(lines: List[str], line_no: int) -> List[str]:
|
96 |
-
next_line = lines[line_no + 1]
|
97 |
-
word_suffix = next_line.split(" ")[0]
|
98 |
-
|
99 |
-
lines[line_no] = lines[line_no][:-1] + word_suffix
|
100 |
-
lines[line_no + 1] = lines[line_no + 1][len(word_suffix):]
|
101 |
-
return lines
|
102 |
-
|
103 |
-
|
104 |
-
def remove_hyphens(text: str) -> str:
|
105 |
-
"""
|
106 |
-
|
107 |
-
This fails for:
|
108 |
-
* Natural dashes: well-known, self-replication, use-cases, non-semantic,
|
109 |
-
Post-processing, Window-wise, viewpoint-dependent
|
110 |
-
* Trailing math operands: 2 - 4
|
111 |
-
* Names: Lopez-Ferreras, VGG-19, CIFAR-100
|
112 |
-
"""
|
113 |
-
lines = [line.rstrip() for line in text.split("\n")]
|
114 |
-
|
115 |
-
# Find dashes
|
116 |
-
line_numbers = []
|
117 |
-
for line_no, line in enumerate(lines[:-1]):
|
118 |
-
if line.endswith("-"):
|
119 |
-
line_numbers.append(line_no)
|
120 |
-
|
121 |
-
# Replace
|
122 |
-
for line_no in line_numbers:
|
123 |
-
lines = dehyphenate(lines, line_no)
|
124 |
-
|
125 |
-
return "\n".join(lines)
|
126 |
-
|
127 |
-
|
128 |
-
def pdf_to_txt(pdf_file, start_page, end_page):
|
129 |
-
from pypdf import PdfReader
|
130 |
-
|
131 |
-
with open(pdf_file, "rb") as file:
|
132 |
-
reader = PdfReader(file)
|
133 |
-
logger.debug(f"Total pages: {reader.get_num_pages()}")
|
134 |
-
text = ""
|
135 |
-
|
136 |
-
start_page_idx = max((start_page-1), 0)
|
137 |
-
end_page_inx = min((end_page), (reader.get_num_pages()))
|
138 |
-
document_pages = reader.pages[start_page_idx:end_page_inx]
|
139 |
-
logger.info(
|
140 |
-
f"Selected pages from {start_page_idx} to {end_page_inx}: "
|
141 |
-
f"{len(document_pages)}"
|
142 |
-
)
|
143 |
-
|
144 |
-
for page in document_pages:
|
145 |
-
text += remove_hyphens(page.extract_text())
|
146 |
-
return text
|
147 |
-
|
148 |
-
|
149 |
-
def docx_to_txt(docx_file):
|
150 |
-
# https://github.com/AlJohri/docx2pdf update
|
151 |
-
from docx import Document
|
152 |
-
|
153 |
-
doc = Document(docx_file)
|
154 |
-
text = ""
|
155 |
-
for paragraph in doc.paragraphs:
|
156 |
-
text += paragraph.text + "\n"
|
157 |
-
return text
|
158 |
-
|
159 |
-
|
160 |
-
def replace_multiple_elements(text, replacements):
|
161 |
-
pattern = re.compile("|".join(map(re.escape, replacements.keys())))
|
162 |
-
replaced_text = pattern.sub(
|
163 |
-
lambda match: replacements[match.group(0)], text
|
164 |
-
)
|
165 |
-
|
166 |
-
# Remove multiple spaces
|
167 |
-
replaced_text = re.sub(r"\s+", " ", replaced_text)
|
168 |
-
|
169 |
-
return replaced_text
|
170 |
-
|
171 |
-
|
172 |
-
def document_preprocessor(file_path, is_string, start_page, end_page):
|
173 |
-
if not is_string:
|
174 |
-
file_ext = os.path.splitext(file_path)[1].lower()
|
175 |
-
|
176 |
-
if is_string:
|
177 |
-
text = file_path
|
178 |
-
elif file_ext == ".pdf":
|
179 |
-
text = pdf_to_txt(file_path, start_page, end_page)
|
180 |
-
elif file_ext == ".docx":
|
181 |
-
text = docx_to_txt(file_path)
|
182 |
-
elif file_ext == ".txt":
|
183 |
-
with open(
|
184 |
-
file_path, "r", encoding='utf-8', errors='replace'
|
185 |
-
) as file:
|
186 |
-
text = file.read()
|
187 |
-
else:
|
188 |
-
raise Exception("Unsupported file format")
|
189 |
-
|
190 |
-
# Add space to break segments more easily later
|
191 |
-
replacements = {
|
192 |
-
"、": "、 ",
|
193 |
-
"。": "。 ",
|
194 |
-
# "\n": " ",
|
195 |
-
}
|
196 |
-
text = replace_multiple_elements(text, replacements)
|
197 |
-
|
198 |
-
# Save text to a .txt file
|
199 |
-
# file_name = os.path.splitext(os.path.basename(file_path))[0]
|
200 |
-
txt_file_path = "./text_preprocessor.txt"
|
201 |
-
|
202 |
-
with open(
|
203 |
-
txt_file_path, "w", encoding='utf-8', errors='replace'
|
204 |
-
) as txt_file:
|
205 |
-
txt_file.write(text)
|
206 |
-
|
207 |
-
return txt_file_path, text
|
208 |
-
|
209 |
-
|
210 |
-
def split_text_into_chunks(text, chunk_size):
|
211 |
-
words = re.findall(r"\b\w+\b", text)
|
212 |
-
chunks = []
|
213 |
-
current_chunk = ""
|
214 |
-
for word in words:
|
215 |
-
if (
|
216 |
-
len(current_chunk) + len(word) + 1 <= chunk_size
|
217 |
-
): # Adding 1 for the space between words
|
218 |
-
if current_chunk:
|
219 |
-
current_chunk += " "
|
220 |
-
current_chunk += word
|
221 |
-
else:
|
222 |
-
chunks.append(current_chunk)
|
223 |
-
current_chunk = word
|
224 |
-
if current_chunk:
|
225 |
-
chunks.append(current_chunk)
|
226 |
-
return chunks
|
227 |
-
|
228 |
-
|
229 |
-
def determine_chunk_size(file_name):
|
230 |
-
patterns = {
|
231 |
-
re.compile(r".*-(Male|Female)$"): 1024, # by character
|
232 |
-
re.compile(r".* BARK$"): 100, # t 64 256
|
233 |
-
re.compile(r".* VITS$"): 500,
|
234 |
-
re.compile(
|
235 |
-
r".+\.(wav|mp3|ogg|m4a)$"
|
236 |
-
): 150, # t 250 400 api automatic split
|
237 |
-
re.compile(r".* VITS-onnx$"): 250, # automatic sentence split
|
238 |
-
re.compile(r".* OpenAI-TTS$"): 1024 # max charaters 4096
|
239 |
-
}
|
240 |
-
|
241 |
-
for pattern, chunk_size in patterns.items():
|
242 |
-
if pattern.match(file_name):
|
243 |
-
return chunk_size
|
244 |
-
|
245 |
-
# Default chunk size if the file doesn't match any pattern; max 1800
|
246 |
-
return 100
|
247 |
-
|
248 |
-
|
249 |
-
def plain_text_to_segments(result_text=None, chunk_size=None):
|
250 |
-
if not chunk_size:
|
251 |
-
chunk_size = 100
|
252 |
-
text_chunks = split_text_into_chunks(result_text, chunk_size)
|
253 |
-
|
254 |
-
segments_chunks = []
|
255 |
-
for num, chunk in enumerate(text_chunks):
|
256 |
-
chunk_dict = {
|
257 |
-
"text": chunk,
|
258 |
-
"start": (1.0 + num),
|
259 |
-
"end": (2.0 + num),
|
260 |
-
"speaker": "SPEAKER_00",
|
261 |
-
}
|
262 |
-
segments_chunks.append(chunk_dict)
|
263 |
-
|
264 |
-
result_diarize = {"segments": segments_chunks}
|
265 |
-
|
266 |
-
return result_diarize
|
267 |
-
|
268 |
-
|
269 |
-
def segments_to_plain_text(result_diarize):
|
270 |
-
complete_text = ""
|
271 |
-
for seg in result_diarize["segments"]:
|
272 |
-
complete_text += seg["text"] + " " # issue
|
273 |
-
|
274 |
-
# Save text to a .txt file
|
275 |
-
# file_name = os.path.splitext(os.path.basename(file_path))[0]
|
276 |
-
txt_file_path = "./text_translation.txt"
|
277 |
-
|
278 |
-
with open(
|
279 |
-
txt_file_path, "w", encoding='utf-8', errors='replace'
|
280 |
-
) as txt_file:
|
281 |
-
txt_file.write(complete_text)
|
282 |
-
|
283 |
-
return txt_file_path, complete_text
|
284 |
-
|
285 |
-
|
286 |
-
# doc to video
|
287 |
-
|
288 |
-
COLORS = {
|
289 |
-
"black": (0, 0, 0),
|
290 |
-
"white": (255, 255, 255),
|
291 |
-
"red": (255, 0, 0),
|
292 |
-
"green": (0, 255, 0),
|
293 |
-
"blue": (0, 0, 255),
|
294 |
-
"yellow": (255, 255, 0),
|
295 |
-
"light_gray": (200, 200, 200),
|
296 |
-
"light_blue": (173, 216, 230),
|
297 |
-
"light_green": (144, 238, 144),
|
298 |
-
"light_yellow": (255, 255, 224),
|
299 |
-
"light_pink": (255, 182, 193),
|
300 |
-
"lavender": (230, 230, 250),
|
301 |
-
"peach": (255, 218, 185),
|
302 |
-
"light_cyan": (224, 255, 255),
|
303 |
-
"light_salmon": (255, 160, 122),
|
304 |
-
"light_green_yellow": (173, 255, 47),
|
305 |
-
}
|
306 |
-
|
307 |
-
BORDER_COLORS = ["dynamic"] + list(COLORS.keys())
|
308 |
-
|
309 |
-
|
310 |
-
def calculate_average_color(img):
|
311 |
-
# Resize the image to a small size for faster processing
|
312 |
-
img_small = img.resize((50, 50))
|
313 |
-
# Calculate the average color
|
314 |
-
average_color = img_small.convert("RGB").resize((1, 1)).getpixel((0, 0))
|
315 |
-
return average_color
|
316 |
-
|
317 |
-
|
318 |
-
def add_border_to_image(
|
319 |
-
image_path,
|
320 |
-
target_width,
|
321 |
-
target_height,
|
322 |
-
border_color=None
|
323 |
-
):
|
324 |
-
|
325 |
-
img = Image.open(image_path)
|
326 |
-
|
327 |
-
# Calculate the width and height for the new image with borders
|
328 |
-
original_width, original_height = img.size
|
329 |
-
original_aspect_ratio = original_width / original_height
|
330 |
-
target_aspect_ratio = target_width / target_height
|
331 |
-
|
332 |
-
# Resize the image to fit the target resolution retaining aspect ratio
|
333 |
-
if original_aspect_ratio > target_aspect_ratio:
|
334 |
-
# Image is wider, calculate new height
|
335 |
-
new_height = int(target_width / original_aspect_ratio)
|
336 |
-
resized_img = img.resize((target_width, new_height))
|
337 |
-
else:
|
338 |
-
# Image is taller, calculate new width
|
339 |
-
new_width = int(target_height * original_aspect_ratio)
|
340 |
-
resized_img = img.resize((new_width, target_height))
|
341 |
-
|
342 |
-
# Calculate padding for borders
|
343 |
-
padding = (0, 0, 0, 0)
|
344 |
-
if resized_img.size[0] != target_width or resized_img.size[1] != target_height:
|
345 |
-
if original_aspect_ratio > target_aspect_ratio:
|
346 |
-
# Add borders vertically
|
347 |
-
padding = (0, (target_height - resized_img.size[1]) // 2, 0, (target_height - resized_img.size[1]) // 2)
|
348 |
-
else:
|
349 |
-
# Add borders horizontally
|
350 |
-
padding = ((target_width - resized_img.size[0]) // 2, 0, (target_width - resized_img.size[0]) // 2, 0)
|
351 |
-
|
352 |
-
# Add borders with specified color
|
353 |
-
if not border_color or border_color == "dynamic":
|
354 |
-
border_color = calculate_average_color(resized_img)
|
355 |
-
else:
|
356 |
-
border_color = COLORS.get(border_color, (0, 0, 0))
|
357 |
-
|
358 |
-
bordered_img = ImageOps.expand(resized_img, padding, fill=border_color)
|
359 |
-
|
360 |
-
bordered_img.save(image_path)
|
361 |
-
|
362 |
-
return image_path
|
363 |
-
|
364 |
-
|
365 |
-
def resize_and_position_subimage(
|
366 |
-
subimage,
|
367 |
-
max_width,
|
368 |
-
max_height,
|
369 |
-
subimage_position,
|
370 |
-
main_width,
|
371 |
-
main_height
|
372 |
-
):
|
373 |
-
subimage_width, subimage_height = subimage.size
|
374 |
-
|
375 |
-
# Resize subimage if it exceeds maximum dimensions
|
376 |
-
if subimage_width > max_width or subimage_height > max_height:
|
377 |
-
# Calculate scaling factor
|
378 |
-
width_scale = max_width / subimage_width
|
379 |
-
height_scale = max_height / subimage_height
|
380 |
-
scale = min(width_scale, height_scale)
|
381 |
-
|
382 |
-
# Resize subimage
|
383 |
-
subimage = subimage.resize(
|
384 |
-
(int(subimage_width * scale), int(subimage_height * scale))
|
385 |
-
)
|
386 |
-
|
387 |
-
# Calculate position to place the subimage
|
388 |
-
if subimage_position == "top-left":
|
389 |
-
subimage_x = 0
|
390 |
-
subimage_y = 0
|
391 |
-
elif subimage_position == "top-right":
|
392 |
-
subimage_x = main_width - subimage.width
|
393 |
-
subimage_y = 0
|
394 |
-
elif subimage_position == "bottom-left":
|
395 |
-
subimage_x = 0
|
396 |
-
subimage_y = main_height - subimage.height
|
397 |
-
elif subimage_position == "bottom-right":
|
398 |
-
subimage_x = main_width - subimage.width
|
399 |
-
subimage_y = main_height - subimage.height
|
400 |
-
else:
|
401 |
-
raise ValueError(
|
402 |
-
"Invalid subimage_position. Choose from 'top-left', 'top-right',"
|
403 |
-
" 'bottom-left', or 'bottom-right'."
|
404 |
-
)
|
405 |
-
|
406 |
-
return subimage, subimage_x, subimage_y
|
407 |
-
|
408 |
-
|
409 |
-
def create_image_with_text_and_subimages(
|
410 |
-
text,
|
411 |
-
subimages,
|
412 |
-
width,
|
413 |
-
height,
|
414 |
-
text_color,
|
415 |
-
background_color,
|
416 |
-
output_file
|
417 |
-
):
|
418 |
-
# Create an image with the specified resolution and background color
|
419 |
-
image = Image.new('RGB', (width, height), color=background_color)
|
420 |
-
|
421 |
-
# Initialize ImageDraw object
|
422 |
-
draw = ImageDraw.Draw(image)
|
423 |
-
|
424 |
-
# Load a font
|
425 |
-
font = ImageFont.load_default() # You can specify your font file here
|
426 |
-
|
427 |
-
# Calculate text size and position
|
428 |
-
text_bbox = draw.textbbox((0, 0), text, font=font)
|
429 |
-
text_width = text_bbox[2] - text_bbox[0]
|
430 |
-
text_height = text_bbox[3] - text_bbox[1]
|
431 |
-
text_x = (width - text_width) / 2
|
432 |
-
text_y = (height - text_height) / 2
|
433 |
-
|
434 |
-
# Draw text on the image
|
435 |
-
draw.text((text_x, text_y), text, fill=text_color, font=font)
|
436 |
-
|
437 |
-
# Paste subimages onto the main image
|
438 |
-
for subimage_path, subimage_position in subimages:
|
439 |
-
# Open the subimage
|
440 |
-
subimage = Image.open(subimage_path)
|
441 |
-
|
442 |
-
# Convert subimage to RGBA mode if it doesn't have an alpha channel
|
443 |
-
if subimage.mode != 'RGBA':
|
444 |
-
subimage = subimage.convert('RGBA')
|
445 |
-
|
446 |
-
# Resize and position the subimage
|
447 |
-
subimage, subimage_x, subimage_y = resize_and_position_subimage(
|
448 |
-
subimage, width / 4, height / 4, subimage_position, width, height
|
449 |
-
)
|
450 |
-
|
451 |
-
# Paste the subimage onto the main image
|
452 |
-
image.paste(subimage, (int(subimage_x), int(subimage_y)), subimage)
|
453 |
-
|
454 |
-
image.save(output_file)
|
455 |
-
|
456 |
-
return output_file
|
457 |
-
|
458 |
-
|
459 |
-
def doc_to_txtximg_pages(
|
460 |
-
document,
|
461 |
-
width,
|
462 |
-
height,
|
463 |
-
start_page,
|
464 |
-
end_page,
|
465 |
-
bcolor
|
466 |
-
):
|
467 |
-
from pypdf import PdfReader
|
468 |
-
|
469 |
-
images_folder = "pdf_images/"
|
470 |
-
os.makedirs(images_folder, exist_ok=True)
|
471 |
-
remove_directory_contents(images_folder)
|
472 |
-
|
473 |
-
# First image
|
474 |
-
text_image = os.path.basename(document)[:-4]
|
475 |
-
subimages = [("./assets/logo.jpeg", "top-left")]
|
476 |
-
text_color = (255, 255, 255) if bcolor == "black" else (0, 0, 0) # w|b
|
477 |
-
background_color = COLORS.get(bcolor, (255, 255, 255)) # dynamic white
|
478 |
-
first_image = "pdf_images/0000_00_aaa.png"
|
479 |
-
|
480 |
-
create_image_with_text_and_subimages(
|
481 |
-
text_image,
|
482 |
-
subimages,
|
483 |
-
width,
|
484 |
-
height,
|
485 |
-
text_color,
|
486 |
-
background_color,
|
487 |
-
first_image
|
488 |
-
)
|
489 |
-
|
490 |
-
reader = PdfReader(document)
|
491 |
-
logger.debug(f"Total pages: {reader.get_num_pages()}")
|
492 |
-
|
493 |
-
start_page_idx = max((start_page-1), 0)
|
494 |
-
end_page_inx = min((end_page), (reader.get_num_pages()))
|
495 |
-
document_pages = reader.pages[start_page_idx:end_page_inx]
|
496 |
-
|
497 |
-
logger.info(
|
498 |
-
f"Selected pages from {start_page_idx} to {end_page_inx}: "
|
499 |
-
f"{len(document_pages)}"
|
500 |
-
)
|
501 |
-
|
502 |
-
data_doc = {}
|
503 |
-
for i, page in enumerate(document_pages):
|
504 |
-
|
505 |
-
count = 0
|
506 |
-
images = []
|
507 |
-
for image_file_object in page.images:
|
508 |
-
img_name = f"{images_folder}{i:04d}_{count:02d}_{image_file_object.name}"
|
509 |
-
images.append(img_name)
|
510 |
-
with open(img_name, "wb") as fp:
|
511 |
-
fp.write(image_file_object.data)
|
512 |
-
count += 1
|
513 |
-
img_name = add_border_to_image(img_name, width, height, bcolor)
|
514 |
-
|
515 |
-
data_doc[i] = {
|
516 |
-
"text": remove_hyphens(page.extract_text()),
|
517 |
-
"images": images
|
518 |
-
}
|
519 |
-
|
520 |
-
return data_doc
|
521 |
-
|
522 |
-
|
523 |
-
def page_data_to_segments(result_text=None, chunk_size=None):
|
524 |
-
|
525 |
-
if not chunk_size:
|
526 |
-
chunk_size = 100
|
527 |
-
|
528 |
-
segments_chunks = []
|
529 |
-
time_global = 0
|
530 |
-
for page, result_data in result_text.items():
|
531 |
-
# result_image = result_data["images"]
|
532 |
-
result_text = result_data["text"]
|
533 |
-
text_chunks = split_text_into_chunks(result_text, chunk_size)
|
534 |
-
if not text_chunks:
|
535 |
-
text_chunks = [" "]
|
536 |
-
|
537 |
-
for chunk in text_chunks:
|
538 |
-
chunk_dict = {
|
539 |
-
"text": chunk,
|
540 |
-
"start": (1.0 + time_global),
|
541 |
-
"end": (2.0 + time_global),
|
542 |
-
"speaker": "SPEAKER_00",
|
543 |
-
"page": page,
|
544 |
-
}
|
545 |
-
segments_chunks.append(chunk_dict)
|
546 |
-
time_global += 1
|
547 |
-
|
548 |
-
result_diarize = {"segments": segments_chunks}
|
549 |
-
|
550 |
-
return result_diarize
|
551 |
-
|
552 |
-
|
553 |
-
def update_page_data(result_diarize, doc_data):
|
554 |
-
complete_text = ""
|
555 |
-
current_page = result_diarize["segments"][0]["page"]
|
556 |
-
text_page = ""
|
557 |
-
|
558 |
-
for seg in result_diarize["segments"]:
|
559 |
-
text = seg["text"] + " " # issue
|
560 |
-
complete_text += text
|
561 |
-
|
562 |
-
page = seg["page"]
|
563 |
-
|
564 |
-
if page == current_page:
|
565 |
-
text_page += text
|
566 |
-
else:
|
567 |
-
doc_data[current_page]["text"] = text_page
|
568 |
-
|
569 |
-
# Next
|
570 |
-
text_page = text
|
571 |
-
current_page = page
|
572 |
-
|
573 |
-
if doc_data[current_page]["text"] != text_page:
|
574 |
-
doc_data[current_page]["text"] = text_page
|
575 |
-
|
576 |
-
return doc_data
|
577 |
-
|
578 |
-
|
579 |
-
def fix_timestamps_docs(result_diarize, audio_files):
|
580 |
-
current_start = 0.0
|
581 |
-
|
582 |
-
for seg, audio in zip(result_diarize["segments"], audio_files):
|
583 |
-
duration = round(sf.info(audio).duration, 2)
|
584 |
-
|
585 |
-
seg["start"] = current_start
|
586 |
-
current_start += duration
|
587 |
-
seg["end"] = current_start
|
588 |
-
|
589 |
-
return result_diarize
|
590 |
-
|
591 |
-
|
592 |
-
def create_video_from_images(
|
593 |
-
doc_data,
|
594 |
-
result_diarize
|
595 |
-
):
|
596 |
-
|
597 |
-
# First image path
|
598 |
-
first_image = "pdf_images/0000_00_aaa.png"
|
599 |
-
|
600 |
-
# Time segments and images
|
601 |
-
max_pages_idx = len(doc_data) - 1
|
602 |
-
current_page = result_diarize["segments"][0]["page"]
|
603 |
-
duration_page = 0.0
|
604 |
-
last_image = None
|
605 |
-
|
606 |
-
for seg in result_diarize["segments"]:
|
607 |
-
start = seg["start"]
|
608 |
-
end = seg["end"]
|
609 |
-
duration_seg = end - start
|
610 |
-
|
611 |
-
page = seg["page"]
|
612 |
-
|
613 |
-
if page == current_page:
|
614 |
-
duration_page += duration_seg
|
615 |
-
else:
|
616 |
-
|
617 |
-
images = doc_data[current_page]["images"]
|
618 |
-
|
619 |
-
if first_image:
|
620 |
-
images = [first_image] + images
|
621 |
-
first_image = None
|
622 |
-
if not doc_data[min(max_pages_idx, (current_page+1))]["text"].strip():
|
623 |
-
images = images + doc_data[min(max_pages_idx, (current_page+1))]["images"]
|
624 |
-
if not images and last_image:
|
625 |
-
images = [last_image]
|
626 |
-
|
627 |
-
# Calculate images duration
|
628 |
-
time_duration_per_image = round((duration_page / len(images)), 2)
|
629 |
-
doc_data[current_page]["time_per_image"] = time_duration_per_image
|
630 |
-
|
631 |
-
# Next values
|
632 |
-
doc_data[current_page]["images"] = images
|
633 |
-
last_image = images[-1]
|
634 |
-
duration_page = duration_seg
|
635 |
-
current_page = page
|
636 |
-
|
637 |
-
if "time_per_image" not in doc_data[current_page].keys():
|
638 |
-
images = doc_data[current_page]["images"]
|
639 |
-
if first_image:
|
640 |
-
images = [first_image] + images
|
641 |
-
if not images:
|
642 |
-
images = [last_image]
|
643 |
-
time_duration_per_image = round((duration_page / len(images)), 2)
|
644 |
-
doc_data[current_page]["time_per_image"] = time_duration_per_image
|
645 |
-
|
646 |
-
# Timestamped image video.
|
647 |
-
with open("list.txt", "w") as file:
|
648 |
-
|
649 |
-
for i, page in enumerate(doc_data.values()):
|
650 |
-
|
651 |
-
duration = page["time_per_image"]
|
652 |
-
for img in page["images"]:
|
653 |
-
if i == len(doc_data) - 1 and img == page["images"][-1]: # Check if it's the last item
|
654 |
-
file.write(f"file {img}\n")
|
655 |
-
file.write(f"outpoint {duration}")
|
656 |
-
else:
|
657 |
-
file.write(f"file {img}\n")
|
658 |
-
file.write(f"outpoint {duration}\n")
|
659 |
-
|
660 |
-
out_video = "video_from_images.mp4"
|
661 |
-
remove_files(out_video)
|
662 |
-
|
663 |
-
cm = f"ffmpeg -y -f concat -i list.txt -c:v libx264 -preset veryfast -crf 18 -pix_fmt yuv420p {out_video}"
|
664 |
-
cm_alt = f"ffmpeg -f concat -i list.txt -c:v libx264 -r 30 -pix_fmt yuv420p -y {out_video}"
|
665 |
-
try:
|
666 |
-
run_command(cm)
|
667 |
-
except Exception as error:
|
668 |
-
logger.error(str(error))
|
669 |
-
remove_files(out_video)
|
670 |
-
run_command(cm_alt)
|
671 |
-
|
672 |
-
return out_video
|
673 |
-
|
674 |
-
|
675 |
-
def merge_video_and_audio(video_doc, final_wav_file):
|
676 |
-
|
677 |
-
fixed_audio = "fixed_audio.mp3"
|
678 |
-
remove_files(fixed_audio)
|
679 |
-
cm = f"ffmpeg -i {final_wav_file} -c:a libmp3lame {fixed_audio}"
|
680 |
-
run_command(cm)
|
681 |
-
|
682 |
-
vid_out = "video_book.mp4"
|
683 |
-
remove_files(vid_out)
|
684 |
-
cm = f"ffmpeg -i {video_doc} -i {fixed_audio} -c:v copy -c:a copy -map 0:v -map 1:a -shortest {vid_out}"
|
685 |
-
run_command(cm)
|
686 |
-
|
687 |
-
return vid_out
|
688 |
-
|
689 |
-
|
690 |
-
# subtitles
|
691 |
-
|
692 |
-
|
693 |
-
def get_subtitle(
|
694 |
-
language,
|
695 |
-
segments_data,
|
696 |
-
extension,
|
697 |
-
filename=None,
|
698 |
-
highlight_words=False,
|
699 |
-
):
|
700 |
-
if not filename:
|
701 |
-
filename = "task_subtitle"
|
702 |
-
|
703 |
-
is_ass_extension = False
|
704 |
-
if extension == "ass":
|
705 |
-
is_ass_extension = True
|
706 |
-
extension = "srt"
|
707 |
-
|
708 |
-
sub_file = filename + "." + extension
|
709 |
-
support_name = filename + ".mp3"
|
710 |
-
remove_files(sub_file)
|
711 |
-
|
712 |
-
writer = get_writer(extension, output_dir=".")
|
713 |
-
word_options = {
|
714 |
-
"highlight_words": highlight_words,
|
715 |
-
"max_line_count": None,
|
716 |
-
"max_line_width": None,
|
717 |
-
}
|
718 |
-
|
719 |
-
# Get data subs
|
720 |
-
subtitle_data = copy.deepcopy(segments_data)
|
721 |
-
subtitle_data["language"] = (
|
722 |
-
"ja" if language in ["ja", "zh", "zh-TW"] else language
|
723 |
-
)
|
724 |
-
|
725 |
-
# Clean
|
726 |
-
if not highlight_words:
|
727 |
-
subtitle_data.pop("word_segments", None)
|
728 |
-
for segment in subtitle_data["segments"]:
|
729 |
-
for key in ["speaker", "chars", "words"]:
|
730 |
-
segment.pop(key, None)
|
731 |
-
|
732 |
-
writer(
|
733 |
-
subtitle_data,
|
734 |
-
support_name,
|
735 |
-
word_options,
|
736 |
-
)
|
737 |
-
|
738 |
-
if is_ass_extension:
|
739 |
-
temp_name = filename + ".ass"
|
740 |
-
remove_files(temp_name)
|
741 |
-
convert_sub = f'ffmpeg -i "{sub_file}" "{temp_name}" -y'
|
742 |
-
run_command(convert_sub)
|
743 |
-
sub_file = temp_name
|
744 |
-
|
745 |
-
return sub_file
|
746 |
-
|
747 |
-
|
748 |
-
def process_subtitles(
|
749 |
-
deep_copied_result,
|
750 |
-
align_language,
|
751 |
-
result_diarize,
|
752 |
-
output_format_subtitle,
|
753 |
-
TRANSLATE_AUDIO_TO,
|
754 |
-
):
|
755 |
-
name_ori = "sub_ori."
|
756 |
-
name_tra = "sub_tra."
|
757 |
-
remove_files(
|
758 |
-
[name_ori + output_format_subtitle, name_tra + output_format_subtitle]
|
759 |
-
)
|
760 |
-
|
761 |
-
writer = get_writer(output_format_subtitle, output_dir=".")
|
762 |
-
word_options = {
|
763 |
-
"highlight_words": False,
|
764 |
-
"max_line_count": None,
|
765 |
-
"max_line_width": None,
|
766 |
-
}
|
767 |
-
|
768 |
-
# original lang
|
769 |
-
subs_copy_result = copy.deepcopy(deep_copied_result)
|
770 |
-
subs_copy_result["language"] = (
|
771 |
-
"zh" if align_language == "zh-TW" else align_language
|
772 |
-
)
|
773 |
-
for segment in subs_copy_result["segments"]:
|
774 |
-
segment.pop("speaker", None)
|
775 |
-
|
776 |
-
try:
|
777 |
-
writer(
|
778 |
-
subs_copy_result,
|
779 |
-
name_ori[:-1] + ".mp3",
|
780 |
-
word_options,
|
781 |
-
)
|
782 |
-
except Exception as error:
|
783 |
-
logger.error(str(error))
|
784 |
-
if str(error) == "list indices must be integers or slices, not str":
|
785 |
-
logger.error(
|
786 |
-
"Related to poor word segmentation"
|
787 |
-
" in segments after alignment."
|
788 |
-
)
|
789 |
-
subs_copy_result["segments"][0].pop("words")
|
790 |
-
writer(
|
791 |
-
subs_copy_result,
|
792 |
-
name_ori[:-1] + ".mp3",
|
793 |
-
word_options,
|
794 |
-
)
|
795 |
-
|
796 |
-
# translated lang
|
797 |
-
subs_tra_copy_result = copy.deepcopy(result_diarize)
|
798 |
-
subs_tra_copy_result["language"] = (
|
799 |
-
"ja" if TRANSLATE_AUDIO_TO in ["ja", "zh", "zh-TW"] else align_language
|
800 |
-
)
|
801 |
-
subs_tra_copy_result.pop("word_segments", None)
|
802 |
-
for segment in subs_tra_copy_result["segments"]:
|
803 |
-
for key in ["speaker", "chars", "words"]:
|
804 |
-
segment.pop(key, None)
|
805 |
-
|
806 |
-
writer(
|
807 |
-
subs_tra_copy_result,
|
808 |
-
name_tra[:-1] + ".mp3",
|
809 |
-
word_options,
|
810 |
-
)
|
811 |
-
|
812 |
-
return name_tra + output_format_subtitle
|
813 |
-
|
814 |
-
|
815 |
-
def linguistic_level_segments(
|
816 |
-
result_base,
|
817 |
-
linguistic_unit="word", # word or char
|
818 |
-
):
|
819 |
-
linguistic_unit = linguistic_unit[:4]
|
820 |
-
linguistic_unit_key = linguistic_unit + "s"
|
821 |
-
result = copy.deepcopy(result_base)
|
822 |
-
|
823 |
-
if linguistic_unit_key not in result["segments"][0].keys():
|
824 |
-
raise ValueError("No alignment detected, can't process")
|
825 |
-
|
826 |
-
segments_by_unit = []
|
827 |
-
for segment in result["segments"]:
|
828 |
-
segment_units = segment[linguistic_unit_key]
|
829 |
-
# segment_speaker = segment.get("speaker", "SPEAKER_00")
|
830 |
-
|
831 |
-
for unit in segment_units:
|
832 |
-
|
833 |
-
text = unit[linguistic_unit]
|
834 |
-
|
835 |
-
if "start" in unit.keys():
|
836 |
-
segments_by_unit.append(
|
837 |
-
{
|
838 |
-
"start": unit["start"],
|
839 |
-
"end": unit["end"],
|
840 |
-
"text": text,
|
841 |
-
# "speaker": segment_speaker,
|
842 |
-
}
|
843 |
-
)
|
844 |
-
elif not segments_by_unit:
|
845 |
-
pass
|
846 |
-
else:
|
847 |
-
segments_by_unit[-1]["text"] += text
|
848 |
-
|
849 |
-
return {"segments": segments_by_unit}
|
850 |
-
|
851 |
-
|
852 |
-
def break_aling_segments(
|
853 |
-
result: dict,
|
854 |
-
break_characters: str = "", # ":|,|.|"
|
855 |
-
):
|
856 |
-
result_align = copy.deepcopy(result)
|
857 |
-
|
858 |
-
break_characters_list = break_characters.split("|")
|
859 |
-
break_characters_list = [i for i in break_characters_list if i != '']
|
860 |
-
|
861 |
-
if not break_characters_list:
|
862 |
-
logger.info("No valid break characters were specified.")
|
863 |
-
return result
|
864 |
-
|
865 |
-
logger.info(f"Redivide text segments by: {str(break_characters_list)}")
|
866 |
-
|
867 |
-
# create new with filters
|
868 |
-
normal = []
|
869 |
-
|
870 |
-
def process_chars(chars, letter_new_start, num, text):
|
871 |
-
start_key, end_key = "start", "end"
|
872 |
-
start_value = end_value = None
|
873 |
-
|
874 |
-
for char in chars:
|
875 |
-
if start_key in char:
|
876 |
-
start_value = char[start_key]
|
877 |
-
break
|
878 |
-
|
879 |
-
for char in reversed(chars):
|
880 |
-
if end_key in char:
|
881 |
-
end_value = char[end_key]
|
882 |
-
break
|
883 |
-
|
884 |
-
if not start_value or not end_value:
|
885 |
-
raise Exception(
|
886 |
-
f"Unable to obtain a valid timestamp for chars: {str(chars)}"
|
887 |
-
)
|
888 |
-
|
889 |
-
return {
|
890 |
-
"start": start_value,
|
891 |
-
"end": end_value,
|
892 |
-
"text": text,
|
893 |
-
"words": chars,
|
894 |
-
}
|
895 |
-
|
896 |
-
for i, segment in enumerate(result_align['segments']):
|
897 |
-
|
898 |
-
logger.debug(f"- Process segment: {i}, text: {segment['text']}")
|
899 |
-
# start = segment['start']
|
900 |
-
letter_new_start = 0
|
901 |
-
for num, char in enumerate(segment['chars']):
|
902 |
-
|
903 |
-
if char["char"] is None:
|
904 |
-
continue
|
905 |
-
|
906 |
-
# if "start" in char:
|
907 |
-
# start = char["start"]
|
908 |
-
|
909 |
-
# if "end" in char:
|
910 |
-
# end = char["end"]
|
911 |
-
|
912 |
-
# Break by character
|
913 |
-
if char['char'] in break_characters_list:
|
914 |
-
|
915 |
-
text = segment['text'][letter_new_start:num+1]
|
916 |
-
|
917 |
-
logger.debug(
|
918 |
-
f"Break in: {char['char']}, position: {num}, text: {text}"
|
919 |
-
)
|
920 |
-
|
921 |
-
chars = segment['chars'][letter_new_start:num+1]
|
922 |
-
|
923 |
-
if not text:
|
924 |
-
logger.debug("No text")
|
925 |
-
continue
|
926 |
-
|
927 |
-
if num == 0 and not text.strip():
|
928 |
-
logger.debug("blank space in start")
|
929 |
-
continue
|
930 |
-
|
931 |
-
if len(text) == 1:
|
932 |
-
logger.debug(f"Short char append, num: {num}")
|
933 |
-
normal[-1]["text"] += text
|
934 |
-
normal[-1]["words"].append(chars)
|
935 |
-
continue
|
936 |
-
|
937 |
-
# logger.debug(chars)
|
938 |
-
normal_dict = process_chars(chars, letter_new_start, num, text)
|
939 |
-
|
940 |
-
letter_new_start = num+1
|
941 |
-
|
942 |
-
normal.append(normal_dict)
|
943 |
-
|
944 |
-
# If we reach the end of the segment, add the last part of chars.
|
945 |
-
if num == len(segment["chars"]) - 1:
|
946 |
-
|
947 |
-
text = segment['text'][letter_new_start:num+1]
|
948 |
-
|
949 |
-
# If remain text len is not default len text
|
950 |
-
if num not in [len(text)-1, len(text)] and text:
|
951 |
-
logger.debug(f'Remaining text: {text}')
|
952 |
-
|
953 |
-
if not text:
|
954 |
-
logger.debug("No remaining text.")
|
955 |
-
continue
|
956 |
-
|
957 |
-
if len(text) == 1:
|
958 |
-
logger.debug(f"Short char append, num: {num}")
|
959 |
-
normal[-1]["text"] += text
|
960 |
-
normal[-1]["words"].append(chars)
|
961 |
-
continue
|
962 |
-
|
963 |
-
chars = segment['chars'][letter_new_start:num+1]
|
964 |
-
|
965 |
-
normal_dict = process_chars(chars, letter_new_start, num, text)
|
966 |
-
|
967 |
-
letter_new_start = num+1
|
968 |
-
|
969 |
-
normal.append(normal_dict)
|
970 |
-
|
971 |
-
# Rename char to word
|
972 |
-
for item in normal:
|
973 |
-
words_list = item['words']
|
974 |
-
for word_item in words_list:
|
975 |
-
if 'char' in word_item:
|
976 |
-
word_item['word'] = word_item.pop('char')
|
977 |
-
|
978 |
-
# Convert to dict default
|
979 |
-
break_segments = {"segments": normal}
|
980 |
-
|
981 |
-
msg_count = (
|
982 |
-
f"Segment count before: {len(result['segments'])}, "
|
983 |
-
f"after: {len(break_segments['segments'])}."
|
984 |
-
)
|
985 |
-
logger.info(msg_count)
|
986 |
-
|
987 |
-
return break_segments
|
|
|
1 |
+
from .logging_setup import logger
|
2 |
+
from whisperx.utils import get_writer
|
3 |
+
from .utils import remove_files, run_command, remove_directory_contents
|
4 |
+
from typing import List
|
5 |
+
import srt
|
6 |
+
import re
|
7 |
+
import os
|
8 |
+
import copy
|
9 |
+
import string
|
10 |
+
import soundfile as sf
|
11 |
+
from PIL import Image, ImageOps, ImageDraw, ImageFont
|
12 |
+
|
13 |
+
punctuation_list = list(
|
14 |
+
string.punctuation + "¡¿«»„”“”‚‘’「」『』《》()【】〈〉〔〕〖〗〘〙〚〛⸤⸥⸨⸩"
|
15 |
+
)
|
16 |
+
symbol_list = punctuation_list + ["", "..", "..."]
|
17 |
+
|
18 |
+
|
19 |
+
def extract_from_srt(file_path):
|
20 |
+
with open(file_path, "r", encoding="utf-8") as file:
|
21 |
+
srt_content = file.read()
|
22 |
+
|
23 |
+
subtitle_generator = srt.parse(srt_content)
|
24 |
+
srt_content_list = list(subtitle_generator)
|
25 |
+
|
26 |
+
return srt_content_list
|
27 |
+
|
28 |
+
|
29 |
+
def clean_text(text):
|
30 |
+
|
31 |
+
# Remove content within square brackets
|
32 |
+
text = re.sub(r'\[.*?\]', '', text)
|
33 |
+
# Add pattern to remove content within <comment> tags
|
34 |
+
text = re.sub(r'<comment>.*?</comment>', '', text)
|
35 |
+
# Remove HTML tags
|
36 |
+
text = re.sub(r'<.*?>', '', text)
|
37 |
+
# Remove "♫" and "♪" content
|
38 |
+
text = re.sub(r'♫.*?♫', '', text)
|
39 |
+
text = re.sub(r'♪.*?♪', '', text)
|
40 |
+
# Replace newline characters with an empty string
|
41 |
+
text = text.replace("\n", ". ")
|
42 |
+
# Remove double quotation marks
|
43 |
+
text = text.replace('"', '')
|
44 |
+
# Collapse multiple spaces and replace with a single space
|
45 |
+
text = re.sub(r"\s+", " ", text)
|
46 |
+
# Normalize spaces around periods
|
47 |
+
text = re.sub(r"[\s\.]+(?=\s)", ". ", text)
|
48 |
+
# Check if there are ♫ or ♪ symbols present
|
49 |
+
if '♫' in text or '♪' in text:
|
50 |
+
return ""
|
51 |
+
|
52 |
+
text = text.strip()
|
53 |
+
|
54 |
+
# Valid text
|
55 |
+
return text if text not in symbol_list else ""
|
56 |
+
|
57 |
+
|
58 |
+
def srt_file_to_segments(file_path, speaker=False):
|
59 |
+
try:
|
60 |
+
srt_content_list = extract_from_srt(file_path)
|
61 |
+
except Exception as error:
|
62 |
+
logger.error(str(error))
|
63 |
+
fixed_file = "fixed_sub.srt"
|
64 |
+
remove_files(fixed_file)
|
65 |
+
fix_sub = f'ffmpeg -i "{file_path}" "{fixed_file}" -y'
|
66 |
+
run_command(fix_sub)
|
67 |
+
srt_content_list = extract_from_srt(fixed_file)
|
68 |
+
|
69 |
+
segments = []
|
70 |
+
for segment in srt_content_list:
|
71 |
+
|
72 |
+
text = clean_text(str(segment.content))
|
73 |
+
|
74 |
+
if text:
|
75 |
+
segments.append(
|
76 |
+
{
|
77 |
+
"text": text,
|
78 |
+
"start": float(segment.start.total_seconds()),
|
79 |
+
"end": float(segment.end.total_seconds()),
|
80 |
+
}
|
81 |
+
)
|
82 |
+
|
83 |
+
if not segments:
|
84 |
+
raise Exception("No data found in srt subtitle file")
|
85 |
+
|
86 |
+
if speaker:
|
87 |
+
segments = [{**seg, "speaker": "SPEAKER_00"} for seg in segments]
|
88 |
+
|
89 |
+
return {"segments": segments}
|
90 |
+
|
91 |
+
|
92 |
+
# documents
|
93 |
+
|
94 |
+
|
95 |
+
def dehyphenate(lines: List[str], line_no: int) -> List[str]:
|
96 |
+
next_line = lines[line_no + 1]
|
97 |
+
word_suffix = next_line.split(" ")[0]
|
98 |
+
|
99 |
+
lines[line_no] = lines[line_no][:-1] + word_suffix
|
100 |
+
lines[line_no + 1] = lines[line_no + 1][len(word_suffix):]
|
101 |
+
return lines
|
102 |
+
|
103 |
+
|
104 |
+
def remove_hyphens(text: str) -> str:
|
105 |
+
"""
|
106 |
+
|
107 |
+
This fails for:
|
108 |
+
* Natural dashes: well-known, self-replication, use-cases, non-semantic,
|
109 |
+
Post-processing, Window-wise, viewpoint-dependent
|
110 |
+
* Trailing math operands: 2 - 4
|
111 |
+
* Names: Lopez-Ferreras, VGG-19, CIFAR-100
|
112 |
+
"""
|
113 |
+
lines = [line.rstrip() for line in text.split("\n")]
|
114 |
+
|
115 |
+
# Find dashes
|
116 |
+
line_numbers = []
|
117 |
+
for line_no, line in enumerate(lines[:-1]):
|
118 |
+
if line.endswith("-"):
|
119 |
+
line_numbers.append(line_no)
|
120 |
+
|
121 |
+
# Replace
|
122 |
+
for line_no in line_numbers:
|
123 |
+
lines = dehyphenate(lines, line_no)
|
124 |
+
|
125 |
+
return "\n".join(lines)
|
126 |
+
|
127 |
+
|
128 |
+
def pdf_to_txt(pdf_file, start_page, end_page):
|
129 |
+
from pypdf import PdfReader
|
130 |
+
|
131 |
+
with open(pdf_file, "rb") as file:
|
132 |
+
reader = PdfReader(file)
|
133 |
+
logger.debug(f"Total pages: {reader.get_num_pages()}")
|
134 |
+
text = ""
|
135 |
+
|
136 |
+
start_page_idx = max((start_page-1), 0)
|
137 |
+
end_page_inx = min((end_page), (reader.get_num_pages()))
|
138 |
+
document_pages = reader.pages[start_page_idx:end_page_inx]
|
139 |
+
logger.info(
|
140 |
+
f"Selected pages from {start_page_idx} to {end_page_inx}: "
|
141 |
+
f"{len(document_pages)}"
|
142 |
+
)
|
143 |
+
|
144 |
+
for page in document_pages:
|
145 |
+
text += remove_hyphens(page.extract_text())
|
146 |
+
return text
|
147 |
+
|
148 |
+
|
149 |
+
def docx_to_txt(docx_file):
|
150 |
+
# https://github.com/AlJohri/docx2pdf update
|
151 |
+
from docx import Document
|
152 |
+
|
153 |
+
doc = Document(docx_file)
|
154 |
+
text = ""
|
155 |
+
for paragraph in doc.paragraphs:
|
156 |
+
text += paragraph.text + "\n"
|
157 |
+
return text
|
158 |
+
|
159 |
+
|
160 |
+
def replace_multiple_elements(text, replacements):
|
161 |
+
pattern = re.compile("|".join(map(re.escape, replacements.keys())))
|
162 |
+
replaced_text = pattern.sub(
|
163 |
+
lambda match: replacements[match.group(0)], text
|
164 |
+
)
|
165 |
+
|
166 |
+
# Remove multiple spaces
|
167 |
+
replaced_text = re.sub(r"\s+", " ", replaced_text)
|
168 |
+
|
169 |
+
return replaced_text
|
170 |
+
|
171 |
+
|
172 |
+
def document_preprocessor(file_path, is_string, start_page, end_page):
|
173 |
+
if not is_string:
|
174 |
+
file_ext = os.path.splitext(file_path)[1].lower()
|
175 |
+
|
176 |
+
if is_string:
|
177 |
+
text = file_path
|
178 |
+
elif file_ext == ".pdf":
|
179 |
+
text = pdf_to_txt(file_path, start_page, end_page)
|
180 |
+
elif file_ext == ".docx":
|
181 |
+
text = docx_to_txt(file_path)
|
182 |
+
elif file_ext == ".txt":
|
183 |
+
with open(
|
184 |
+
file_path, "r", encoding='utf-8', errors='replace'
|
185 |
+
) as file:
|
186 |
+
text = file.read()
|
187 |
+
else:
|
188 |
+
raise Exception("Unsupported file format")
|
189 |
+
|
190 |
+
# Add space to break segments more easily later
|
191 |
+
replacements = {
|
192 |
+
"、": "、 ",
|
193 |
+
"。": "。 ",
|
194 |
+
# "\n": " ",
|
195 |
+
}
|
196 |
+
text = replace_multiple_elements(text, replacements)
|
197 |
+
|
198 |
+
# Save text to a .txt file
|
199 |
+
# file_name = os.path.splitext(os.path.basename(file_path))[0]
|
200 |
+
txt_file_path = "./text_preprocessor.txt"
|
201 |
+
|
202 |
+
with open(
|
203 |
+
txt_file_path, "w", encoding='utf-8', errors='replace'
|
204 |
+
) as txt_file:
|
205 |
+
txt_file.write(text)
|
206 |
+
|
207 |
+
return txt_file_path, text
|
208 |
+
|
209 |
+
|
210 |
+
def split_text_into_chunks(text, chunk_size):
|
211 |
+
words = re.findall(r"\b\w+\b", text)
|
212 |
+
chunks = []
|
213 |
+
current_chunk = ""
|
214 |
+
for word in words:
|
215 |
+
if (
|
216 |
+
len(current_chunk) + len(word) + 1 <= chunk_size
|
217 |
+
): # Adding 1 for the space between words
|
218 |
+
if current_chunk:
|
219 |
+
current_chunk += " "
|
220 |
+
current_chunk += word
|
221 |
+
else:
|
222 |
+
chunks.append(current_chunk)
|
223 |
+
current_chunk = word
|
224 |
+
if current_chunk:
|
225 |
+
chunks.append(current_chunk)
|
226 |
+
return chunks
|
227 |
+
|
228 |
+
|
229 |
+
def determine_chunk_size(file_name):
|
230 |
+
patterns = {
|
231 |
+
re.compile(r".*-(Male|Female)$"): 1024, # by character
|
232 |
+
re.compile(r".* BARK$"): 100, # t 64 256
|
233 |
+
re.compile(r".* VITS$"): 500,
|
234 |
+
re.compile(
|
235 |
+
r".+\.(wav|mp3|ogg|m4a)$"
|
236 |
+
): 150, # t 250 400 api automatic split
|
237 |
+
re.compile(r".* VITS-onnx$"): 250, # automatic sentence split
|
238 |
+
re.compile(r".* OpenAI-TTS$"): 1024 # max charaters 4096
|
239 |
+
}
|
240 |
+
|
241 |
+
for pattern, chunk_size in patterns.items():
|
242 |
+
if pattern.match(file_name):
|
243 |
+
return chunk_size
|
244 |
+
|
245 |
+
# Default chunk size if the file doesn't match any pattern; max 1800
|
246 |
+
return 100
|
247 |
+
|
248 |
+
|
249 |
+
def plain_text_to_segments(result_text=None, chunk_size=None):
|
250 |
+
if not chunk_size:
|
251 |
+
chunk_size = 100
|
252 |
+
text_chunks = split_text_into_chunks(result_text, chunk_size)
|
253 |
+
|
254 |
+
segments_chunks = []
|
255 |
+
for num, chunk in enumerate(text_chunks):
|
256 |
+
chunk_dict = {
|
257 |
+
"text": chunk,
|
258 |
+
"start": (1.0 + num),
|
259 |
+
"end": (2.0 + num),
|
260 |
+
"speaker": "SPEAKER_00",
|
261 |
+
}
|
262 |
+
segments_chunks.append(chunk_dict)
|
263 |
+
|
264 |
+
result_diarize = {"segments": segments_chunks}
|
265 |
+
|
266 |
+
return result_diarize
|
267 |
+
|
268 |
+
|
269 |
+
def segments_to_plain_text(result_diarize):
|
270 |
+
complete_text = ""
|
271 |
+
for seg in result_diarize["segments"]:
|
272 |
+
complete_text += seg["text"] + " " # issue
|
273 |
+
|
274 |
+
# Save text to a .txt file
|
275 |
+
# file_name = os.path.splitext(os.path.basename(file_path))[0]
|
276 |
+
txt_file_path = "./text_translation.txt"
|
277 |
+
|
278 |
+
with open(
|
279 |
+
txt_file_path, "w", encoding='utf-8', errors='replace'
|
280 |
+
) as txt_file:
|
281 |
+
txt_file.write(complete_text)
|
282 |
+
|
283 |
+
return txt_file_path, complete_text
|
284 |
+
|
285 |
+
|
286 |
+
# doc to video
|
287 |
+
|
288 |
+
COLORS = {
|
289 |
+
"black": (0, 0, 0),
|
290 |
+
"white": (255, 255, 255),
|
291 |
+
"red": (255, 0, 0),
|
292 |
+
"green": (0, 255, 0),
|
293 |
+
"blue": (0, 0, 255),
|
294 |
+
"yellow": (255, 255, 0),
|
295 |
+
"light_gray": (200, 200, 200),
|
296 |
+
"light_blue": (173, 216, 230),
|
297 |
+
"light_green": (144, 238, 144),
|
298 |
+
"light_yellow": (255, 255, 224),
|
299 |
+
"light_pink": (255, 182, 193),
|
300 |
+
"lavender": (230, 230, 250),
|
301 |
+
"peach": (255, 218, 185),
|
302 |
+
"light_cyan": (224, 255, 255),
|
303 |
+
"light_salmon": (255, 160, 122),
|
304 |
+
"light_green_yellow": (173, 255, 47),
|
305 |
+
}
|
306 |
+
|
307 |
+
BORDER_COLORS = ["dynamic"] + list(COLORS.keys())
|
308 |
+
|
309 |
+
|
310 |
+
def calculate_average_color(img):
|
311 |
+
# Resize the image to a small size for faster processing
|
312 |
+
img_small = img.resize((50, 50))
|
313 |
+
# Calculate the average color
|
314 |
+
average_color = img_small.convert("RGB").resize((1, 1)).getpixel((0, 0))
|
315 |
+
return average_color
|
316 |
+
|
317 |
+
|
318 |
+
def add_border_to_image(
|
319 |
+
image_path,
|
320 |
+
target_width,
|
321 |
+
target_height,
|
322 |
+
border_color=None
|
323 |
+
):
|
324 |
+
|
325 |
+
img = Image.open(image_path)
|
326 |
+
|
327 |
+
# Calculate the width and height for the new image with borders
|
328 |
+
original_width, original_height = img.size
|
329 |
+
original_aspect_ratio = original_width / original_height
|
330 |
+
target_aspect_ratio = target_width / target_height
|
331 |
+
|
332 |
+
# Resize the image to fit the target resolution retaining aspect ratio
|
333 |
+
if original_aspect_ratio > target_aspect_ratio:
|
334 |
+
# Image is wider, calculate new height
|
335 |
+
new_height = int(target_width / original_aspect_ratio)
|
336 |
+
resized_img = img.resize((target_width, new_height))
|
337 |
+
else:
|
338 |
+
# Image is taller, calculate new width
|
339 |
+
new_width = int(target_height * original_aspect_ratio)
|
340 |
+
resized_img = img.resize((new_width, target_height))
|
341 |
+
|
342 |
+
# Calculate padding for borders
|
343 |
+
padding = (0, 0, 0, 0)
|
344 |
+
if resized_img.size[0] != target_width or resized_img.size[1] != target_height:
|
345 |
+
if original_aspect_ratio > target_aspect_ratio:
|
346 |
+
# Add borders vertically
|
347 |
+
padding = (0, (target_height - resized_img.size[1]) // 2, 0, (target_height - resized_img.size[1]) // 2)
|
348 |
+
else:
|
349 |
+
# Add borders horizontally
|
350 |
+
padding = ((target_width - resized_img.size[0]) // 2, 0, (target_width - resized_img.size[0]) // 2, 0)
|
351 |
+
|
352 |
+
# Add borders with specified color
|
353 |
+
if not border_color or border_color == "dynamic":
|
354 |
+
border_color = calculate_average_color(resized_img)
|
355 |
+
else:
|
356 |
+
border_color = COLORS.get(border_color, (0, 0, 0))
|
357 |
+
|
358 |
+
bordered_img = ImageOps.expand(resized_img, padding, fill=border_color)
|
359 |
+
|
360 |
+
bordered_img.save(image_path)
|
361 |
+
|
362 |
+
return image_path
|
363 |
+
|
364 |
+
|
365 |
+
def resize_and_position_subimage(
|
366 |
+
subimage,
|
367 |
+
max_width,
|
368 |
+
max_height,
|
369 |
+
subimage_position,
|
370 |
+
main_width,
|
371 |
+
main_height
|
372 |
+
):
|
373 |
+
subimage_width, subimage_height = subimage.size
|
374 |
+
|
375 |
+
# Resize subimage if it exceeds maximum dimensions
|
376 |
+
if subimage_width > max_width or subimage_height > max_height:
|
377 |
+
# Calculate scaling factor
|
378 |
+
width_scale = max_width / subimage_width
|
379 |
+
height_scale = max_height / subimage_height
|
380 |
+
scale = min(width_scale, height_scale)
|
381 |
+
|
382 |
+
# Resize subimage
|
383 |
+
subimage = subimage.resize(
|
384 |
+
(int(subimage_width * scale), int(subimage_height * scale))
|
385 |
+
)
|
386 |
+
|
387 |
+
# Calculate position to place the subimage
|
388 |
+
if subimage_position == "top-left":
|
389 |
+
subimage_x = 0
|
390 |
+
subimage_y = 0
|
391 |
+
elif subimage_position == "top-right":
|
392 |
+
subimage_x = main_width - subimage.width
|
393 |
+
subimage_y = 0
|
394 |
+
elif subimage_position == "bottom-left":
|
395 |
+
subimage_x = 0
|
396 |
+
subimage_y = main_height - subimage.height
|
397 |
+
elif subimage_position == "bottom-right":
|
398 |
+
subimage_x = main_width - subimage.width
|
399 |
+
subimage_y = main_height - subimage.height
|
400 |
+
else:
|
401 |
+
raise ValueError(
|
402 |
+
"Invalid subimage_position. Choose from 'top-left', 'top-right',"
|
403 |
+
" 'bottom-left', or 'bottom-right'."
|
404 |
+
)
|
405 |
+
|
406 |
+
return subimage, subimage_x, subimage_y
|
407 |
+
|
408 |
+
|
409 |
+
def create_image_with_text_and_subimages(
|
410 |
+
text,
|
411 |
+
subimages,
|
412 |
+
width,
|
413 |
+
height,
|
414 |
+
text_color,
|
415 |
+
background_color,
|
416 |
+
output_file
|
417 |
+
):
|
418 |
+
# Create an image with the specified resolution and background color
|
419 |
+
image = Image.new('RGB', (width, height), color=background_color)
|
420 |
+
|
421 |
+
# Initialize ImageDraw object
|
422 |
+
draw = ImageDraw.Draw(image)
|
423 |
+
|
424 |
+
# Load a font
|
425 |
+
font = ImageFont.load_default() # You can specify your font file here
|
426 |
+
|
427 |
+
# Calculate text size and position
|
428 |
+
text_bbox = draw.textbbox((0, 0), text, font=font)
|
429 |
+
text_width = text_bbox[2] - text_bbox[0]
|
430 |
+
text_height = text_bbox[3] - text_bbox[1]
|
431 |
+
text_x = (width - text_width) / 2
|
432 |
+
text_y = (height - text_height) / 2
|
433 |
+
|
434 |
+
# Draw text on the image
|
435 |
+
draw.text((text_x, text_y), text, fill=text_color, font=font)
|
436 |
+
|
437 |
+
# Paste subimages onto the main image
|
438 |
+
for subimage_path, subimage_position in subimages:
|
439 |
+
# Open the subimage
|
440 |
+
subimage = Image.open(subimage_path)
|
441 |
+
|
442 |
+
# Convert subimage to RGBA mode if it doesn't have an alpha channel
|
443 |
+
if subimage.mode != 'RGBA':
|
444 |
+
subimage = subimage.convert('RGBA')
|
445 |
+
|
446 |
+
# Resize and position the subimage
|
447 |
+
subimage, subimage_x, subimage_y = resize_and_position_subimage(
|
448 |
+
subimage, width / 4, height / 4, subimage_position, width, height
|
449 |
+
)
|
450 |
+
|
451 |
+
# Paste the subimage onto the main image
|
452 |
+
image.paste(subimage, (int(subimage_x), int(subimage_y)), subimage)
|
453 |
+
|
454 |
+
image.save(output_file)
|
455 |
+
|
456 |
+
return output_file
|
457 |
+
|
458 |
+
|
459 |
+
def doc_to_txtximg_pages(
|
460 |
+
document,
|
461 |
+
width,
|
462 |
+
height,
|
463 |
+
start_page,
|
464 |
+
end_page,
|
465 |
+
bcolor
|
466 |
+
):
|
467 |
+
from pypdf import PdfReader
|
468 |
+
|
469 |
+
images_folder = "pdf_images/"
|
470 |
+
os.makedirs(images_folder, exist_ok=True)
|
471 |
+
remove_directory_contents(images_folder)
|
472 |
+
|
473 |
+
# First image
|
474 |
+
text_image = os.path.basename(document)[:-4]
|
475 |
+
subimages = [("./assets/logo.jpeg", "top-left")]
|
476 |
+
text_color = (255, 255, 255) if bcolor == "black" else (0, 0, 0) # w|b
|
477 |
+
background_color = COLORS.get(bcolor, (255, 255, 255)) # dynamic white
|
478 |
+
first_image = "pdf_images/0000_00_aaa.png"
|
479 |
+
|
480 |
+
create_image_with_text_and_subimages(
|
481 |
+
text_image,
|
482 |
+
subimages,
|
483 |
+
width,
|
484 |
+
height,
|
485 |
+
text_color,
|
486 |
+
background_color,
|
487 |
+
first_image
|
488 |
+
)
|
489 |
+
|
490 |
+
reader = PdfReader(document)
|
491 |
+
logger.debug(f"Total pages: {reader.get_num_pages()}")
|
492 |
+
|
493 |
+
start_page_idx = max((start_page-1), 0)
|
494 |
+
end_page_inx = min((end_page), (reader.get_num_pages()))
|
495 |
+
document_pages = reader.pages[start_page_idx:end_page_inx]
|
496 |
+
|
497 |
+
logger.info(
|
498 |
+
f"Selected pages from {start_page_idx} to {end_page_inx}: "
|
499 |
+
f"{len(document_pages)}"
|
500 |
+
)
|
501 |
+
|
502 |
+
data_doc = {}
|
503 |
+
for i, page in enumerate(document_pages):
|
504 |
+
|
505 |
+
count = 0
|
506 |
+
images = []
|
507 |
+
for image_file_object in page.images:
|
508 |
+
img_name = f"{images_folder}{i:04d}_{count:02d}_{image_file_object.name}"
|
509 |
+
images.append(img_name)
|
510 |
+
with open(img_name, "wb") as fp:
|
511 |
+
fp.write(image_file_object.data)
|
512 |
+
count += 1
|
513 |
+
img_name = add_border_to_image(img_name, width, height, bcolor)
|
514 |
+
|
515 |
+
data_doc[i] = {
|
516 |
+
"text": remove_hyphens(page.extract_text()),
|
517 |
+
"images": images
|
518 |
+
}
|
519 |
+
|
520 |
+
return data_doc
|
521 |
+
|
522 |
+
|
523 |
+
def page_data_to_segments(result_text=None, chunk_size=None):
|
524 |
+
|
525 |
+
if not chunk_size:
|
526 |
+
chunk_size = 100
|
527 |
+
|
528 |
+
segments_chunks = []
|
529 |
+
time_global = 0
|
530 |
+
for page, result_data in result_text.items():
|
531 |
+
# result_image = result_data["images"]
|
532 |
+
result_text = result_data["text"]
|
533 |
+
text_chunks = split_text_into_chunks(result_text, chunk_size)
|
534 |
+
if not text_chunks:
|
535 |
+
text_chunks = [" "]
|
536 |
+
|
537 |
+
for chunk in text_chunks:
|
538 |
+
chunk_dict = {
|
539 |
+
"text": chunk,
|
540 |
+
"start": (1.0 + time_global),
|
541 |
+
"end": (2.0 + time_global),
|
542 |
+
"speaker": "SPEAKER_00",
|
543 |
+
"page": page,
|
544 |
+
}
|
545 |
+
segments_chunks.append(chunk_dict)
|
546 |
+
time_global += 1
|
547 |
+
|
548 |
+
result_diarize = {"segments": segments_chunks}
|
549 |
+
|
550 |
+
return result_diarize
|
551 |
+
|
552 |
+
|
553 |
+
def update_page_data(result_diarize, doc_data):
|
554 |
+
complete_text = ""
|
555 |
+
current_page = result_diarize["segments"][0]["page"]
|
556 |
+
text_page = ""
|
557 |
+
|
558 |
+
for seg in result_diarize["segments"]:
|
559 |
+
text = seg["text"] + " " # issue
|
560 |
+
complete_text += text
|
561 |
+
|
562 |
+
page = seg["page"]
|
563 |
+
|
564 |
+
if page == current_page:
|
565 |
+
text_page += text
|
566 |
+
else:
|
567 |
+
doc_data[current_page]["text"] = text_page
|
568 |
+
|
569 |
+
# Next
|
570 |
+
text_page = text
|
571 |
+
current_page = page
|
572 |
+
|
573 |
+
if doc_data[current_page]["text"] != text_page:
|
574 |
+
doc_data[current_page]["text"] = text_page
|
575 |
+
|
576 |
+
return doc_data
|
577 |
+
|
578 |
+
|
579 |
+
def fix_timestamps_docs(result_diarize, audio_files):
|
580 |
+
current_start = 0.0
|
581 |
+
|
582 |
+
for seg, audio in zip(result_diarize["segments"], audio_files):
|
583 |
+
duration = round(sf.info(audio).duration, 2)
|
584 |
+
|
585 |
+
seg["start"] = current_start
|
586 |
+
current_start += duration
|
587 |
+
seg["end"] = current_start
|
588 |
+
|
589 |
+
return result_diarize
|
590 |
+
|
591 |
+
|
592 |
+
def create_video_from_images(
|
593 |
+
doc_data,
|
594 |
+
result_diarize
|
595 |
+
):
|
596 |
+
|
597 |
+
# First image path
|
598 |
+
first_image = "pdf_images/0000_00_aaa.png"
|
599 |
+
|
600 |
+
# Time segments and images
|
601 |
+
max_pages_idx = len(doc_data) - 1
|
602 |
+
current_page = result_diarize["segments"][0]["page"]
|
603 |
+
duration_page = 0.0
|
604 |
+
last_image = None
|
605 |
+
|
606 |
+
for seg in result_diarize["segments"]:
|
607 |
+
start = seg["start"]
|
608 |
+
end = seg["end"]
|
609 |
+
duration_seg = end - start
|
610 |
+
|
611 |
+
page = seg["page"]
|
612 |
+
|
613 |
+
if page == current_page:
|
614 |
+
duration_page += duration_seg
|
615 |
+
else:
|
616 |
+
|
617 |
+
images = doc_data[current_page]["images"]
|
618 |
+
|
619 |
+
if first_image:
|
620 |
+
images = [first_image] + images
|
621 |
+
first_image = None
|
622 |
+
if not doc_data[min(max_pages_idx, (current_page+1))]["text"].strip():
|
623 |
+
images = images + doc_data[min(max_pages_idx, (current_page+1))]["images"]
|
624 |
+
if not images and last_image:
|
625 |
+
images = [last_image]
|
626 |
+
|
627 |
+
# Calculate images duration
|
628 |
+
time_duration_per_image = round((duration_page / len(images)), 2)
|
629 |
+
doc_data[current_page]["time_per_image"] = time_duration_per_image
|
630 |
+
|
631 |
+
# Next values
|
632 |
+
doc_data[current_page]["images"] = images
|
633 |
+
last_image = images[-1]
|
634 |
+
duration_page = duration_seg
|
635 |
+
current_page = page
|
636 |
+
|
637 |
+
if "time_per_image" not in doc_data[current_page].keys():
|
638 |
+
images = doc_data[current_page]["images"]
|
639 |
+
if first_image:
|
640 |
+
images = [first_image] + images
|
641 |
+
if not images:
|
642 |
+
images = [last_image]
|
643 |
+
time_duration_per_image = round((duration_page / len(images)), 2)
|
644 |
+
doc_data[current_page]["time_per_image"] = time_duration_per_image
|
645 |
+
|
646 |
+
# Timestamped image video.
|
647 |
+
with open("list.txt", "w") as file:
|
648 |
+
|
649 |
+
for i, page in enumerate(doc_data.values()):
|
650 |
+
|
651 |
+
duration = page["time_per_image"]
|
652 |
+
for img in page["images"]:
|
653 |
+
if i == len(doc_data) - 1 and img == page["images"][-1]: # Check if it's the last item
|
654 |
+
file.write(f"file {img}\n")
|
655 |
+
file.write(f"outpoint {duration}")
|
656 |
+
else:
|
657 |
+
file.write(f"file {img}\n")
|
658 |
+
file.write(f"outpoint {duration}\n")
|
659 |
+
|
660 |
+
out_video = "video_from_images.mp4"
|
661 |
+
remove_files(out_video)
|
662 |
+
|
663 |
+
cm = f"ffmpeg -y -f concat -i list.txt -c:v libx264 -preset veryfast -crf 18 -pix_fmt yuv420p {out_video}"
|
664 |
+
cm_alt = f"ffmpeg -f concat -i list.txt -c:v libx264 -r 30 -pix_fmt yuv420p -y {out_video}"
|
665 |
+
try:
|
666 |
+
run_command(cm)
|
667 |
+
except Exception as error:
|
668 |
+
logger.error(str(error))
|
669 |
+
remove_files(out_video)
|
670 |
+
run_command(cm_alt)
|
671 |
+
|
672 |
+
return out_video
|
673 |
+
|
674 |
+
|
675 |
+
def merge_video_and_audio(video_doc, final_wav_file):
|
676 |
+
|
677 |
+
fixed_audio = "fixed_audio.mp3"
|
678 |
+
remove_files(fixed_audio)
|
679 |
+
cm = f"ffmpeg -i {final_wav_file} -c:a libmp3lame {fixed_audio}"
|
680 |
+
run_command(cm)
|
681 |
+
|
682 |
+
vid_out = "video_book.mp4"
|
683 |
+
remove_files(vid_out)
|
684 |
+
cm = f"ffmpeg -i {video_doc} -i {fixed_audio} -c:v copy -c:a copy -map 0:v -map 1:a -shortest {vid_out}"
|
685 |
+
run_command(cm)
|
686 |
+
|
687 |
+
return vid_out
|
688 |
+
|
689 |
+
|
690 |
+
# subtitles
|
691 |
+
|
692 |
+
|
693 |
+
def get_subtitle(
|
694 |
+
language,
|
695 |
+
segments_data,
|
696 |
+
extension,
|
697 |
+
filename=None,
|
698 |
+
highlight_words=False,
|
699 |
+
):
|
700 |
+
if not filename:
|
701 |
+
filename = "task_subtitle"
|
702 |
+
|
703 |
+
is_ass_extension = False
|
704 |
+
if extension == "ass":
|
705 |
+
is_ass_extension = True
|
706 |
+
extension = "srt"
|
707 |
+
|
708 |
+
sub_file = filename + "." + extension
|
709 |
+
support_name = filename + ".mp3"
|
710 |
+
remove_files(sub_file)
|
711 |
+
|
712 |
+
writer = get_writer(extension, output_dir=".")
|
713 |
+
word_options = {
|
714 |
+
"highlight_words": highlight_words,
|
715 |
+
"max_line_count": None,
|
716 |
+
"max_line_width": None,
|
717 |
+
}
|
718 |
+
|
719 |
+
# Get data subs
|
720 |
+
subtitle_data = copy.deepcopy(segments_data)
|
721 |
+
subtitle_data["language"] = (
|
722 |
+
"ja" if language in ["ja", "zh", "zh-TW"] else language
|
723 |
+
)
|
724 |
+
|
725 |
+
# Clean
|
726 |
+
if not highlight_words:
|
727 |
+
subtitle_data.pop("word_segments", None)
|
728 |
+
for segment in subtitle_data["segments"]:
|
729 |
+
for key in ["speaker", "chars", "words"]:
|
730 |
+
segment.pop(key, None)
|
731 |
+
|
732 |
+
writer(
|
733 |
+
subtitle_data,
|
734 |
+
support_name,
|
735 |
+
word_options,
|
736 |
+
)
|
737 |
+
|
738 |
+
if is_ass_extension:
|
739 |
+
temp_name = filename + ".ass"
|
740 |
+
remove_files(temp_name)
|
741 |
+
convert_sub = f'ffmpeg -i "{sub_file}" "{temp_name}" -y'
|
742 |
+
run_command(convert_sub)
|
743 |
+
sub_file = temp_name
|
744 |
+
|
745 |
+
return sub_file
|
746 |
+
|
747 |
+
|
748 |
+
def process_subtitles(
|
749 |
+
deep_copied_result,
|
750 |
+
align_language,
|
751 |
+
result_diarize,
|
752 |
+
output_format_subtitle,
|
753 |
+
TRANSLATE_AUDIO_TO,
|
754 |
+
):
|
755 |
+
name_ori = "sub_ori."
|
756 |
+
name_tra = "sub_tra."
|
757 |
+
remove_files(
|
758 |
+
[name_ori + output_format_subtitle, name_tra + output_format_subtitle]
|
759 |
+
)
|
760 |
+
|
761 |
+
writer = get_writer(output_format_subtitle, output_dir=".")
|
762 |
+
word_options = {
|
763 |
+
"highlight_words": False,
|
764 |
+
"max_line_count": None,
|
765 |
+
"max_line_width": None,
|
766 |
+
}
|
767 |
+
|
768 |
+
# original lang
|
769 |
+
subs_copy_result = copy.deepcopy(deep_copied_result)
|
770 |
+
subs_copy_result["language"] = (
|
771 |
+
"zh" if align_language == "zh-TW" else align_language
|
772 |
+
)
|
773 |
+
for segment in subs_copy_result["segments"]:
|
774 |
+
segment.pop("speaker", None)
|
775 |
+
|
776 |
+
try:
|
777 |
+
writer(
|
778 |
+
subs_copy_result,
|
779 |
+
name_ori[:-1] + ".mp3",
|
780 |
+
word_options,
|
781 |
+
)
|
782 |
+
except Exception as error:
|
783 |
+
logger.error(str(error))
|
784 |
+
if str(error) == "list indices must be integers or slices, not str":
|
785 |
+
logger.error(
|
786 |
+
"Related to poor word segmentation"
|
787 |
+
" in segments after alignment."
|
788 |
+
)
|
789 |
+
subs_copy_result["segments"][0].pop("words")
|
790 |
+
writer(
|
791 |
+
subs_copy_result,
|
792 |
+
name_ori[:-1] + ".mp3",
|
793 |
+
word_options,
|
794 |
+
)
|
795 |
+
|
796 |
+
# translated lang
|
797 |
+
subs_tra_copy_result = copy.deepcopy(result_diarize)
|
798 |
+
subs_tra_copy_result["language"] = (
|
799 |
+
"ja" if TRANSLATE_AUDIO_TO in ["ja", "zh", "zh-TW"] else align_language
|
800 |
+
)
|
801 |
+
subs_tra_copy_result.pop("word_segments", None)
|
802 |
+
for segment in subs_tra_copy_result["segments"]:
|
803 |
+
for key in ["speaker", "chars", "words"]:
|
804 |
+
segment.pop(key, None)
|
805 |
+
|
806 |
+
writer(
|
807 |
+
subs_tra_copy_result,
|
808 |
+
name_tra[:-1] + ".mp3",
|
809 |
+
word_options,
|
810 |
+
)
|
811 |
+
|
812 |
+
return name_tra + output_format_subtitle
|
813 |
+
|
814 |
+
|
815 |
+
def linguistic_level_segments(
|
816 |
+
result_base,
|
817 |
+
linguistic_unit="word", # word or char
|
818 |
+
):
|
819 |
+
linguistic_unit = linguistic_unit[:4]
|
820 |
+
linguistic_unit_key = linguistic_unit + "s"
|
821 |
+
result = copy.deepcopy(result_base)
|
822 |
+
|
823 |
+
if linguistic_unit_key not in result["segments"][0].keys():
|
824 |
+
raise ValueError("No alignment detected, can't process")
|
825 |
+
|
826 |
+
segments_by_unit = []
|
827 |
+
for segment in result["segments"]:
|
828 |
+
segment_units = segment[linguistic_unit_key]
|
829 |
+
# segment_speaker = segment.get("speaker", "SPEAKER_00")
|
830 |
+
|
831 |
+
for unit in segment_units:
|
832 |
+
|
833 |
+
text = unit[linguistic_unit]
|
834 |
+
|
835 |
+
if "start" in unit.keys():
|
836 |
+
segments_by_unit.append(
|
837 |
+
{
|
838 |
+
"start": unit["start"],
|
839 |
+
"end": unit["end"],
|
840 |
+
"text": text,
|
841 |
+
# "speaker": segment_speaker,
|
842 |
+
}
|
843 |
+
)
|
844 |
+
elif not segments_by_unit:
|
845 |
+
pass
|
846 |
+
else:
|
847 |
+
segments_by_unit[-1]["text"] += text
|
848 |
+
|
849 |
+
return {"segments": segments_by_unit}
|
850 |
+
|
851 |
+
|
852 |
+
def break_aling_segments(
|
853 |
+
result: dict,
|
854 |
+
break_characters: str = "", # ":|,|.|"
|
855 |
+
):
|
856 |
+
result_align = copy.deepcopy(result)
|
857 |
+
|
858 |
+
break_characters_list = break_characters.split("|")
|
859 |
+
break_characters_list = [i for i in break_characters_list if i != '']
|
860 |
+
|
861 |
+
if not break_characters_list:
|
862 |
+
logger.info("No valid break characters were specified.")
|
863 |
+
return result
|
864 |
+
|
865 |
+
logger.info(f"Redivide text segments by: {str(break_characters_list)}")
|
866 |
+
|
867 |
+
# create new with filters
|
868 |
+
normal = []
|
869 |
+
|
870 |
+
def process_chars(chars, letter_new_start, num, text):
|
871 |
+
start_key, end_key = "start", "end"
|
872 |
+
start_value = end_value = None
|
873 |
+
|
874 |
+
for char in chars:
|
875 |
+
if start_key in char:
|
876 |
+
start_value = char[start_key]
|
877 |
+
break
|
878 |
+
|
879 |
+
for char in reversed(chars):
|
880 |
+
if end_key in char:
|
881 |
+
end_value = char[end_key]
|
882 |
+
break
|
883 |
+
|
884 |
+
if not start_value or not end_value:
|
885 |
+
raise Exception(
|
886 |
+
f"Unable to obtain a valid timestamp for chars: {str(chars)}"
|
887 |
+
)
|
888 |
+
|
889 |
+
return {
|
890 |
+
"start": start_value,
|
891 |
+
"end": end_value,
|
892 |
+
"text": text,
|
893 |
+
"words": chars,
|
894 |
+
}
|
895 |
+
|
896 |
+
for i, segment in enumerate(result_align['segments']):
|
897 |
+
|
898 |
+
logger.debug(f"- Process segment: {i}, text: {segment['text']}")
|
899 |
+
# start = segment['start']
|
900 |
+
letter_new_start = 0
|
901 |
+
for num, char in enumerate(segment['chars']):
|
902 |
+
|
903 |
+
if char["char"] is None:
|
904 |
+
continue
|
905 |
+
|
906 |
+
# if "start" in char:
|
907 |
+
# start = char["start"]
|
908 |
+
|
909 |
+
# if "end" in char:
|
910 |
+
# end = char["end"]
|
911 |
+
|
912 |
+
# Break by character
|
913 |
+
if char['char'] in break_characters_list:
|
914 |
+
|
915 |
+
text = segment['text'][letter_new_start:num+1]
|
916 |
+
|
917 |
+
logger.debug(
|
918 |
+
f"Break in: {char['char']}, position: {num}, text: {text}"
|
919 |
+
)
|
920 |
+
|
921 |
+
chars = segment['chars'][letter_new_start:num+1]
|
922 |
+
|
923 |
+
if not text:
|
924 |
+
logger.debug("No text")
|
925 |
+
continue
|
926 |
+
|
927 |
+
if num == 0 and not text.strip():
|
928 |
+
logger.debug("blank space in start")
|
929 |
+
continue
|
930 |
+
|
931 |
+
if len(text) == 1:
|
932 |
+
logger.debug(f"Short char append, num: {num}")
|
933 |
+
normal[-1]["text"] += text
|
934 |
+
normal[-1]["words"].append(chars)
|
935 |
+
continue
|
936 |
+
|
937 |
+
# logger.debug(chars)
|
938 |
+
normal_dict = process_chars(chars, letter_new_start, num, text)
|
939 |
+
|
940 |
+
letter_new_start = num+1
|
941 |
+
|
942 |
+
normal.append(normal_dict)
|
943 |
+
|
944 |
+
# If we reach the end of the segment, add the last part of chars.
|
945 |
+
if num == len(segment["chars"]) - 1:
|
946 |
+
|
947 |
+
text = segment['text'][letter_new_start:num+1]
|
948 |
+
|
949 |
+
# If remain text len is not default len text
|
950 |
+
if num not in [len(text)-1, len(text)] and text:
|
951 |
+
logger.debug(f'Remaining text: {text}')
|
952 |
+
|
953 |
+
if not text:
|
954 |
+
logger.debug("No remaining text.")
|
955 |
+
continue
|
956 |
+
|
957 |
+
if len(text) == 1:
|
958 |
+
logger.debug(f"Short char append, num: {num}")
|
959 |
+
normal[-1]["text"] += text
|
960 |
+
normal[-1]["words"].append(chars)
|
961 |
+
continue
|
962 |
+
|
963 |
+
chars = segment['chars'][letter_new_start:num+1]
|
964 |
+
|
965 |
+
normal_dict = process_chars(chars, letter_new_start, num, text)
|
966 |
+
|
967 |
+
letter_new_start = num+1
|
968 |
+
|
969 |
+
normal.append(normal_dict)
|
970 |
+
|
971 |
+
# Rename char to word
|
972 |
+
for item in normal:
|
973 |
+
words_list = item['words']
|
974 |
+
for word_item in words_list:
|
975 |
+
if 'char' in word_item:
|
976 |
+
word_item['word'] = word_item.pop('char')
|
977 |
+
|
978 |
+
# Convert to dict default
|
979 |
+
break_segments = {"segments": normal}
|
980 |
+
|
981 |
+
msg_count = (
|
982 |
+
f"Segment count before: {len(result['segments'])}, "
|
983 |
+
f"after: {len(break_segments['segments'])}."
|
984 |
+
)
|
985 |
+
logger.info(msg_count)
|
986 |
+
|
987 |
+
return break_segments
|
soni_translate/text_to_speech.py
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
soni_translate/translate_segments.py
CHANGED
@@ -1,457 +1,457 @@
|
|
1 |
-
from tqdm import tqdm
|
2 |
-
from deep_translator import GoogleTranslator
|
3 |
-
from itertools import chain
|
4 |
-
import copy
|
5 |
-
from .language_configuration import fix_code_language, INVERTED_LANGUAGES
|
6 |
-
from .logging_setup import logger
|
7 |
-
import re
|
8 |
-
import json
|
9 |
-
import time
|
10 |
-
|
11 |
-
TRANSLATION_PROCESS_OPTIONS = [
|
12 |
-
"google_translator_batch",
|
13 |
-
"google_translator",
|
14 |
-
"gpt-3.5-turbo-0125_batch",
|
15 |
-
"gpt-3.5-turbo-0125",
|
16 |
-
"gpt-4-turbo-preview_batch",
|
17 |
-
"gpt-4-turbo-preview",
|
18 |
-
"disable_translation",
|
19 |
-
]
|
20 |
-
DOCS_TRANSLATION_PROCESS_OPTIONS = [
|
21 |
-
"google_translator",
|
22 |
-
"gpt-3.5-turbo-0125",
|
23 |
-
"gpt-4-turbo-preview",
|
24 |
-
"disable_translation",
|
25 |
-
]
|
26 |
-
|
27 |
-
|
28 |
-
def translate_iterative(segments, target, source=None):
|
29 |
-
"""
|
30 |
-
Translate text segments individually to the specified language.
|
31 |
-
|
32 |
-
Parameters:
|
33 |
-
- segments (list): A list of dictionaries with 'text' as a key for
|
34 |
-
segment text.
|
35 |
-
- target (str): Target language code.
|
36 |
-
- source (str, optional): Source language code. Defaults to None.
|
37 |
-
|
38 |
-
Returns:
|
39 |
-
- list: Translated text segments in the target language.
|
40 |
-
|
41 |
-
Notes:
|
42 |
-
- Translates each segment using Google Translate.
|
43 |
-
|
44 |
-
Example:
|
45 |
-
segments = [{'text': 'first segment.'}, {'text': 'second segment.'}]
|
46 |
-
translated_segments = translate_iterative(segments, 'es')
|
47 |
-
"""
|
48 |
-
|
49 |
-
segments_ = copy.deepcopy(segments)
|
50 |
-
|
51 |
-
if (
|
52 |
-
not source
|
53 |
-
):
|
54 |
-
logger.debug("No source language")
|
55 |
-
source = "auto"
|
56 |
-
|
57 |
-
translator = GoogleTranslator(source=source, target=target)
|
58 |
-
|
59 |
-
for line in tqdm(range(len(segments_))):
|
60 |
-
text = segments_[line]["text"]
|
61 |
-
translated_line = translator.translate(text.strip())
|
62 |
-
segments_[line]["text"] = translated_line
|
63 |
-
|
64 |
-
return segments_
|
65 |
-
|
66 |
-
|
67 |
-
def verify_translate(
|
68 |
-
segments,
|
69 |
-
segments_copy,
|
70 |
-
translated_lines,
|
71 |
-
target,
|
72 |
-
source
|
73 |
-
):
|
74 |
-
"""
|
75 |
-
Verify integrity and translate segments if lengths match, otherwise
|
76 |
-
switch to iterative translation.
|
77 |
-
"""
|
78 |
-
if len(segments) == len(translated_lines):
|
79 |
-
for line in range(len(segments_copy)):
|
80 |
-
logger.debug(
|
81 |
-
f"{segments_copy[line]['text']} >> "
|
82 |
-
f"{translated_lines[line].strip()}"
|
83 |
-
)
|
84 |
-
segments_copy[line]["text"] = translated_lines[
|
85 |
-
line].replace("\t", "").replace("\n", "").strip()
|
86 |
-
return segments_copy
|
87 |
-
else:
|
88 |
-
logger.error(
|
89 |
-
"The translation failed, switching to google_translate iterative. "
|
90 |
-
f"{len(segments), len(translated_lines)}"
|
91 |
-
)
|
92 |
-
return translate_iterative(segments, target, source)
|
93 |
-
|
94 |
-
|
95 |
-
def translate_batch(segments, target, chunk_size=2000, source=None):
|
96 |
-
"""
|
97 |
-
Translate a batch of text segments into the specified language in chunks,
|
98 |
-
respecting the character limit.
|
99 |
-
|
100 |
-
Parameters:
|
101 |
-
- segments (list): List of dictionaries with 'text' as a key for segment
|
102 |
-
text.
|
103 |
-
- target (str): Target language code.
|
104 |
-
- chunk_size (int, optional): Maximum character limit for each translation
|
105 |
-
chunk (default is 2000; max 5000).
|
106 |
-
- source (str, optional): Source language code. Defaults to None.
|
107 |
-
|
108 |
-
Returns:
|
109 |
-
- list: Translated text segments in the target language.
|
110 |
-
|
111 |
-
Notes:
|
112 |
-
- Splits input segments into chunks respecting the character limit for
|
113 |
-
translation.
|
114 |
-
- Translates the chunks using Google Translate.
|
115 |
-
- If chunked translation fails, switches to iterative translation using
|
116 |
-
`translate_iterative()`.
|
117 |
-
|
118 |
-
Example:
|
119 |
-
segments = [{'text': 'first segment.'}, {'text': 'second segment.'}]
|
120 |
-
translated = translate_batch(segments, 'es', chunk_size=4000, source='en')
|
121 |
-
"""
|
122 |
-
|
123 |
-
segments_copy = copy.deepcopy(segments)
|
124 |
-
|
125 |
-
if (
|
126 |
-
not source
|
127 |
-
):
|
128 |
-
logger.debug("No source language")
|
129 |
-
source = "auto"
|
130 |
-
|
131 |
-
# Get text
|
132 |
-
text_lines = []
|
133 |
-
for line in range(len(segments_copy)):
|
134 |
-
text = segments_copy[line]["text"].strip()
|
135 |
-
text_lines.append(text)
|
136 |
-
|
137 |
-
# chunk limit
|
138 |
-
text_merge = []
|
139 |
-
actual_chunk = ""
|
140 |
-
global_text_list = []
|
141 |
-
actual_text_list = []
|
142 |
-
for one_line in text_lines:
|
143 |
-
one_line = " " if not one_line else one_line
|
144 |
-
if (len(actual_chunk) + len(one_line)) <= chunk_size:
|
145 |
-
if actual_chunk:
|
146 |
-
actual_chunk += " ||||| "
|
147 |
-
actual_chunk += one_line
|
148 |
-
actual_text_list.append(one_line)
|
149 |
-
else:
|
150 |
-
text_merge.append(actual_chunk)
|
151 |
-
actual_chunk = one_line
|
152 |
-
global_text_list.append(actual_text_list)
|
153 |
-
actual_text_list = [one_line]
|
154 |
-
if actual_chunk:
|
155 |
-
text_merge.append(actual_chunk)
|
156 |
-
global_text_list.append(actual_text_list)
|
157 |
-
|
158 |
-
# translate chunks
|
159 |
-
progress_bar = tqdm(total=len(segments), desc="Translating")
|
160 |
-
translator = GoogleTranslator(source=source, target=target)
|
161 |
-
split_list = []
|
162 |
-
try:
|
163 |
-
for text, text_iterable in zip(text_merge, global_text_list):
|
164 |
-
translated_line = translator.translate(text.strip())
|
165 |
-
split_text = translated_line.split("|||||")
|
166 |
-
if len(split_text) == len(text_iterable):
|
167 |
-
progress_bar.update(len(split_text))
|
168 |
-
else:
|
169 |
-
logger.debug(
|
170 |
-
"Chunk fixing iteratively. Len chunk: "
|
171 |
-
f"{len(split_text)}, expected: {len(text_iterable)}"
|
172 |
-
)
|
173 |
-
split_text = []
|
174 |
-
for txt_iter in text_iterable:
|
175 |
-
translated_txt = translator.translate(txt_iter.strip())
|
176 |
-
split_text.append(translated_txt)
|
177 |
-
progress_bar.update(1)
|
178 |
-
split_list.append(split_text)
|
179 |
-
progress_bar.close()
|
180 |
-
except Exception as error:
|
181 |
-
progress_bar.close()
|
182 |
-
logger.error(str(error))
|
183 |
-
logger.warning(
|
184 |
-
"The translation in chunks failed, switching to iterative."
|
185 |
-
" Related: too many request"
|
186 |
-
) # use proxy or less chunk size
|
187 |
-
return translate_iterative(segments, target, source)
|
188 |
-
|
189 |
-
# un chunk
|
190 |
-
translated_lines = list(chain.from_iterable(split_list))
|
191 |
-
|
192 |
-
return verify_translate(
|
193 |
-
segments, segments_copy, translated_lines, target, source
|
194 |
-
)
|
195 |
-
|
196 |
-
|
197 |
-
def call_gpt_translate(
|
198 |
-
client,
|
199 |
-
model,
|
200 |
-
system_prompt,
|
201 |
-
user_prompt,
|
202 |
-
original_text=None,
|
203 |
-
batch_lines=None,
|
204 |
-
):
|
205 |
-
|
206 |
-
# https://platform.openai.com/docs/guides/text-generation/json-mode
|
207 |
-
response = client.chat.completions.create(
|
208 |
-
model=model,
|
209 |
-
response_format={"type": "json_object"},
|
210 |
-
messages=[
|
211 |
-
{"role": "system", "content": system_prompt},
|
212 |
-
{"role": "user", "content": user_prompt}
|
213 |
-
]
|
214 |
-
)
|
215 |
-
result = response.choices[0].message.content
|
216 |
-
logger.debug(f"Result: {str(result)}")
|
217 |
-
|
218 |
-
try:
|
219 |
-
translation = json.loads(result)
|
220 |
-
except Exception as error:
|
221 |
-
match_result = re.search(r'\{.*?\}', result)
|
222 |
-
if match_result:
|
223 |
-
logger.error(str(error))
|
224 |
-
json_str = match_result.group(0)
|
225 |
-
translation = json.loads(json_str)
|
226 |
-
else:
|
227 |
-
raise error
|
228 |
-
|
229 |
-
# Get valid data
|
230 |
-
if batch_lines:
|
231 |
-
for conversation in translation.values():
|
232 |
-
if isinstance(conversation, dict):
|
233 |
-
conversation = list(conversation.values())[0]
|
234 |
-
if (
|
235 |
-
list(
|
236 |
-
original_text["conversation"][0].values()
|
237 |
-
)[0].strip() ==
|
238 |
-
list(conversation[0].values())[0].strip()
|
239 |
-
):
|
240 |
-
continue
|
241 |
-
if len(conversation) == batch_lines:
|
242 |
-
break
|
243 |
-
|
244 |
-
fix_conversation_length = []
|
245 |
-
for line in conversation:
|
246 |
-
for speaker_code, text_tr in line.items():
|
247 |
-
fix_conversation_length.append({speaker_code: text_tr})
|
248 |
-
|
249 |
-
logger.debug(f"Data batch: {str(fix_conversation_length)}")
|
250 |
-
logger.debug(
|
251 |
-
f"Lines Received: {len(fix_conversation_length)},"
|
252 |
-
f" expected: {batch_lines}"
|
253 |
-
)
|
254 |
-
|
255 |
-
return fix_conversation_length
|
256 |
-
|
257 |
-
else:
|
258 |
-
if isinstance(translation, dict):
|
259 |
-
translation = list(translation.values())[0]
|
260 |
-
if isinstance(translation, list):
|
261 |
-
translation = translation[0]
|
262 |
-
if isinstance(translation, set):
|
263 |
-
translation = list(translation)[0]
|
264 |
-
if not isinstance(translation, str):
|
265 |
-
raise ValueError(f"No valid response received: {str(translation)}")
|
266 |
-
|
267 |
-
return translation
|
268 |
-
|
269 |
-
|
270 |
-
def gpt_sequential(segments, model, target, source=None):
|
271 |
-
from openai import OpenAI
|
272 |
-
|
273 |
-
translated_segments = copy.deepcopy(segments)
|
274 |
-
|
275 |
-
client = OpenAI()
|
276 |
-
progress_bar = tqdm(total=len(segments), desc="Translating")
|
277 |
-
|
278 |
-
lang_tg = re.sub(r'\([^)]*\)', '', INVERTED_LANGUAGES[target]).strip()
|
279 |
-
lang_sc = ""
|
280 |
-
if source:
|
281 |
-
lang_sc = re.sub(r'\([^)]*\)', '', INVERTED_LANGUAGES[source]).strip()
|
282 |
-
|
283 |
-
fixed_target = fix_code_language(target)
|
284 |
-
fixed_source = fix_code_language(source) if source else "auto"
|
285 |
-
|
286 |
-
system_prompt = "Machine translation designed to output the translated_text JSON."
|
287 |
-
|
288 |
-
for i, line in enumerate(translated_segments):
|
289 |
-
text = line["text"].strip()
|
290 |
-
start = line["start"]
|
291 |
-
user_prompt = f"Translate the following {lang_sc} text into {lang_tg}, write the fully translated text and nothing more:\n{text}"
|
292 |
-
|
293 |
-
time.sleep(0.5)
|
294 |
-
|
295 |
-
try:
|
296 |
-
translated_text = call_gpt_translate(
|
297 |
-
client,
|
298 |
-
model,
|
299 |
-
system_prompt,
|
300 |
-
user_prompt,
|
301 |
-
)
|
302 |
-
|
303 |
-
except Exception as error:
|
304 |
-
logger.error(
|
305 |
-
f"{str(error)} >> The text of segment {start} "
|
306 |
-
"is being corrected with Google Translate"
|
307 |
-
)
|
308 |
-
translator = GoogleTranslator(
|
309 |
-
source=fixed_source, target=fixed_target
|
310 |
-
)
|
311 |
-
translated_text = translator.translate(text.strip())
|
312 |
-
|
313 |
-
translated_segments[i]["text"] = translated_text.strip()
|
314 |
-
progress_bar.update(1)
|
315 |
-
|
316 |
-
progress_bar.close()
|
317 |
-
|
318 |
-
return translated_segments
|
319 |
-
|
320 |
-
|
321 |
-
def gpt_batch(segments, model, target, token_batch_limit=900, source=None):
|
322 |
-
from openai import OpenAI
|
323 |
-
import tiktoken
|
324 |
-
|
325 |
-
token_batch_limit = max(100, (token_batch_limit - 40) // 2)
|
326 |
-
progress_bar = tqdm(total=len(segments), desc="Translating")
|
327 |
-
segments_copy = copy.deepcopy(segments)
|
328 |
-
encoding = tiktoken.get_encoding("cl100k_base")
|
329 |
-
client = OpenAI()
|
330 |
-
|
331 |
-
lang_tg = re.sub(r'\([^)]*\)', '', INVERTED_LANGUAGES[target]).strip()
|
332 |
-
lang_sc = ""
|
333 |
-
if source:
|
334 |
-
lang_sc = re.sub(r'\([^)]*\)', '', INVERTED_LANGUAGES[source]).strip()
|
335 |
-
|
336 |
-
fixed_target = fix_code_language(target)
|
337 |
-
fixed_source = fix_code_language(source) if source else "auto"
|
338 |
-
|
339 |
-
name_speaker = "ABCDEFGHIJKL"
|
340 |
-
|
341 |
-
translated_lines = []
|
342 |
-
text_data_dict = []
|
343 |
-
num_tokens = 0
|
344 |
-
count_sk = {char: 0 for char in "ABCDEFGHIJKL"}
|
345 |
-
|
346 |
-
for i, line in enumerate(segments_copy):
|
347 |
-
text = line["text"]
|
348 |
-
speaker = line["speaker"]
|
349 |
-
last_start = line["start"]
|
350 |
-
# text_data_dict.append({str(int(speaker[-1])+1): text})
|
351 |
-
index_sk = int(speaker[-2:])
|
352 |
-
character_sk = name_speaker[index_sk]
|
353 |
-
count_sk[character_sk] += 1
|
354 |
-
code_sk = character_sk+str(count_sk[character_sk])
|
355 |
-
text_data_dict.append({code_sk: text})
|
356 |
-
num_tokens += len(encoding.encode(text)) + 7
|
357 |
-
if num_tokens >= token_batch_limit or i == len(segments_copy)-1:
|
358 |
-
try:
|
359 |
-
batch_lines = len(text_data_dict)
|
360 |
-
batch_conversation = {"conversation": copy.deepcopy(text_data_dict)}
|
361 |
-
# Reset vars
|
362 |
-
num_tokens = 0
|
363 |
-
text_data_dict = []
|
364 |
-
count_sk = {char: 0 for char in "ABCDEFGHIJKL"}
|
365 |
-
# Process translation
|
366 |
-
# https://arxiv.org/pdf/2309.03409.pdf
|
367 |
-
system_prompt = f"Machine translation designed to output the translated_conversation key JSON containing a list of {batch_lines} items."
|
368 |
-
user_prompt = f"Translate each of the following text values in conversation{' from' if lang_sc else ''} {lang_sc} to {lang_tg}:\n{batch_conversation}"
|
369 |
-
logger.debug(f"Prompt: {str(user_prompt)}")
|
370 |
-
|
371 |
-
conversation = call_gpt_translate(
|
372 |
-
client,
|
373 |
-
model,
|
374 |
-
system_prompt,
|
375 |
-
user_prompt,
|
376 |
-
original_text=batch_conversation,
|
377 |
-
batch_lines=batch_lines,
|
378 |
-
)
|
379 |
-
|
380 |
-
if len(conversation) < batch_lines:
|
381 |
-
raise ValueError(
|
382 |
-
"Incomplete result received. Batch lines: "
|
383 |
-
f"{len(conversation)}, expected: {batch_lines}"
|
384 |
-
)
|
385 |
-
|
386 |
-
for i, translated_text in enumerate(conversation):
|
387 |
-
if i+1 > batch_lines:
|
388 |
-
break
|
389 |
-
translated_lines.append(list(translated_text.values())[0])
|
390 |
-
|
391 |
-
progress_bar.update(batch_lines)
|
392 |
-
|
393 |
-
except Exception as error:
|
394 |
-
logger.error(str(error))
|
395 |
-
|
396 |
-
first_start = segments_copy[max(0, i-(batch_lines-1))]["start"]
|
397 |
-
logger.warning(
|
398 |
-
f"The batch from {first_start} to {last_start} "
|
399 |
-
"failed, is being corrected with Google Translate"
|
400 |
-
)
|
401 |
-
|
402 |
-
translator = GoogleTranslator(
|
403 |
-
source=fixed_source,
|
404 |
-
target=fixed_target
|
405 |
-
)
|
406 |
-
|
407 |
-
for txt_source in batch_conversation["conversation"]:
|
408 |
-
translated_txt = translator.translate(
|
409 |
-
list(txt_source.values())[0].strip()
|
410 |
-
)
|
411 |
-
translated_lines.append(translated_txt.strip())
|
412 |
-
progress_bar.update(1)
|
413 |
-
|
414 |
-
progress_bar.close()
|
415 |
-
|
416 |
-
return verify_translate(
|
417 |
-
segments, segments_copy, translated_lines, fixed_target, fixed_source
|
418 |
-
)
|
419 |
-
|
420 |
-
|
421 |
-
def translate_text(
|
422 |
-
segments,
|
423 |
-
target,
|
424 |
-
translation_process="google_translator_batch",
|
425 |
-
chunk_size=4500,
|
426 |
-
source=None,
|
427 |
-
token_batch_limit=1000,
|
428 |
-
):
|
429 |
-
"""Translates text segments using a specified process."""
|
430 |
-
match translation_process:
|
431 |
-
case "google_translator_batch":
|
432 |
-
return translate_batch(
|
433 |
-
segments,
|
434 |
-
fix_code_language(target),
|
435 |
-
chunk_size,
|
436 |
-
fix_code_language(source)
|
437 |
-
)
|
438 |
-
case "google_translator":
|
439 |
-
return translate_iterative(
|
440 |
-
segments,
|
441 |
-
fix_code_language(target),
|
442 |
-
fix_code_language(source)
|
443 |
-
)
|
444 |
-
case model if model in ["gpt-3.5-turbo-0125", "gpt-4-turbo-preview"]:
|
445 |
-
return gpt_sequential(segments, model, target, source)
|
446 |
-
case model if model in ["gpt-3.5-turbo-0125_batch", "gpt-4-turbo-preview_batch",]:
|
447 |
-
return gpt_batch(
|
448 |
-
segments,
|
449 |
-
translation_process.replace("_batch", ""),
|
450 |
-
target,
|
451 |
-
token_batch_limit,
|
452 |
-
source
|
453 |
-
)
|
454 |
-
case "disable_translation":
|
455 |
-
return segments
|
456 |
-
case _:
|
457 |
-
raise ValueError("No valid translation process")
|
|
|
1 |
+
from tqdm import tqdm
|
2 |
+
from deep_translator import GoogleTranslator
|
3 |
+
from itertools import chain
|
4 |
+
import copy
|
5 |
+
from .language_configuration import fix_code_language, INVERTED_LANGUAGES
|
6 |
+
from .logging_setup import logger
|
7 |
+
import re
|
8 |
+
import json
|
9 |
+
import time
|
10 |
+
|
11 |
+
TRANSLATION_PROCESS_OPTIONS = [
|
12 |
+
"google_translator_batch",
|
13 |
+
"google_translator",
|
14 |
+
"gpt-3.5-turbo-0125_batch",
|
15 |
+
"gpt-3.5-turbo-0125",
|
16 |
+
"gpt-4-turbo-preview_batch",
|
17 |
+
"gpt-4-turbo-preview",
|
18 |
+
"disable_translation",
|
19 |
+
]
|
20 |
+
DOCS_TRANSLATION_PROCESS_OPTIONS = [
|
21 |
+
"google_translator",
|
22 |
+
"gpt-3.5-turbo-0125",
|
23 |
+
"gpt-4-turbo-preview",
|
24 |
+
"disable_translation",
|
25 |
+
]
|
26 |
+
|
27 |
+
|
28 |
+
def translate_iterative(segments, target, source=None):
|
29 |
+
"""
|
30 |
+
Translate text segments individually to the specified language.
|
31 |
+
|
32 |
+
Parameters:
|
33 |
+
- segments (list): A list of dictionaries with 'text' as a key for
|
34 |
+
segment text.
|
35 |
+
- target (str): Target language code.
|
36 |
+
- source (str, optional): Source language code. Defaults to None.
|
37 |
+
|
38 |
+
Returns:
|
39 |
+
- list: Translated text segments in the target language.
|
40 |
+
|
41 |
+
Notes:
|
42 |
+
- Translates each segment using Google Translate.
|
43 |
+
|
44 |
+
Example:
|
45 |
+
segments = [{'text': 'first segment.'}, {'text': 'second segment.'}]
|
46 |
+
translated_segments = translate_iterative(segments, 'es')
|
47 |
+
"""
|
48 |
+
|
49 |
+
segments_ = copy.deepcopy(segments)
|
50 |
+
|
51 |
+
if (
|
52 |
+
not source
|
53 |
+
):
|
54 |
+
logger.debug("No source language")
|
55 |
+
source = "auto"
|
56 |
+
|
57 |
+
translator = GoogleTranslator(source=source, target=target)
|
58 |
+
|
59 |
+
for line in tqdm(range(len(segments_))):
|
60 |
+
text = segments_[line]["text"]
|
61 |
+
translated_line = translator.translate(text.strip())
|
62 |
+
segments_[line]["text"] = translated_line
|
63 |
+
|
64 |
+
return segments_
|
65 |
+
|
66 |
+
|
67 |
+
def verify_translate(
|
68 |
+
segments,
|
69 |
+
segments_copy,
|
70 |
+
translated_lines,
|
71 |
+
target,
|
72 |
+
source
|
73 |
+
):
|
74 |
+
"""
|
75 |
+
Verify integrity and translate segments if lengths match, otherwise
|
76 |
+
switch to iterative translation.
|
77 |
+
"""
|
78 |
+
if len(segments) == len(translated_lines):
|
79 |
+
for line in range(len(segments_copy)):
|
80 |
+
logger.debug(
|
81 |
+
f"{segments_copy[line]['text']} >> "
|
82 |
+
f"{translated_lines[line].strip()}"
|
83 |
+
)
|
84 |
+
segments_copy[line]["text"] = translated_lines[
|
85 |
+
line].replace("\t", "").replace("\n", "").strip()
|
86 |
+
return segments_copy
|
87 |
+
else:
|
88 |
+
logger.error(
|
89 |
+
"The translation failed, switching to google_translate iterative. "
|
90 |
+
f"{len(segments), len(translated_lines)}"
|
91 |
+
)
|
92 |
+
return translate_iterative(segments, target, source)
|
93 |
+
|
94 |
+
|
95 |
+
def translate_batch(segments, target, chunk_size=2000, source=None):
|
96 |
+
"""
|
97 |
+
Translate a batch of text segments into the specified language in chunks,
|
98 |
+
respecting the character limit.
|
99 |
+
|
100 |
+
Parameters:
|
101 |
+
- segments (list): List of dictionaries with 'text' as a key for segment
|
102 |
+
text.
|
103 |
+
- target (str): Target language code.
|
104 |
+
- chunk_size (int, optional): Maximum character limit for each translation
|
105 |
+
chunk (default is 2000; max 5000).
|
106 |
+
- source (str, optional): Source language code. Defaults to None.
|
107 |
+
|
108 |
+
Returns:
|
109 |
+
- list: Translated text segments in the target language.
|
110 |
+
|
111 |
+
Notes:
|
112 |
+
- Splits input segments into chunks respecting the character limit for
|
113 |
+
translation.
|
114 |
+
- Translates the chunks using Google Translate.
|
115 |
+
- If chunked translation fails, switches to iterative translation using
|
116 |
+
`translate_iterative()`.
|
117 |
+
|
118 |
+
Example:
|
119 |
+
segments = [{'text': 'first segment.'}, {'text': 'second segment.'}]
|
120 |
+
translated = translate_batch(segments, 'es', chunk_size=4000, source='en')
|
121 |
+
"""
|
122 |
+
|
123 |
+
segments_copy = copy.deepcopy(segments)
|
124 |
+
|
125 |
+
if (
|
126 |
+
not source
|
127 |
+
):
|
128 |
+
logger.debug("No source language")
|
129 |
+
source = "auto"
|
130 |
+
|
131 |
+
# Get text
|
132 |
+
text_lines = []
|
133 |
+
for line in range(len(segments_copy)):
|
134 |
+
text = segments_copy[line]["text"].strip()
|
135 |
+
text_lines.append(text)
|
136 |
+
|
137 |
+
# chunk limit
|
138 |
+
text_merge = []
|
139 |
+
actual_chunk = ""
|
140 |
+
global_text_list = []
|
141 |
+
actual_text_list = []
|
142 |
+
for one_line in text_lines:
|
143 |
+
one_line = " " if not one_line else one_line
|
144 |
+
if (len(actual_chunk) + len(one_line)) <= chunk_size:
|
145 |
+
if actual_chunk:
|
146 |
+
actual_chunk += " ||||| "
|
147 |
+
actual_chunk += one_line
|
148 |
+
actual_text_list.append(one_line)
|
149 |
+
else:
|
150 |
+
text_merge.append(actual_chunk)
|
151 |
+
actual_chunk = one_line
|
152 |
+
global_text_list.append(actual_text_list)
|
153 |
+
actual_text_list = [one_line]
|
154 |
+
if actual_chunk:
|
155 |
+
text_merge.append(actual_chunk)
|
156 |
+
global_text_list.append(actual_text_list)
|
157 |
+
|
158 |
+
# translate chunks
|
159 |
+
progress_bar = tqdm(total=len(segments), desc="Translating")
|
160 |
+
translator = GoogleTranslator(source=source, target=target)
|
161 |
+
split_list = []
|
162 |
+
try:
|
163 |
+
for text, text_iterable in zip(text_merge, global_text_list):
|
164 |
+
translated_line = translator.translate(text.strip())
|
165 |
+
split_text = translated_line.split("|||||")
|
166 |
+
if len(split_text) == len(text_iterable):
|
167 |
+
progress_bar.update(len(split_text))
|
168 |
+
else:
|
169 |
+
logger.debug(
|
170 |
+
"Chunk fixing iteratively. Len chunk: "
|
171 |
+
f"{len(split_text)}, expected: {len(text_iterable)}"
|
172 |
+
)
|
173 |
+
split_text = []
|
174 |
+
for txt_iter in text_iterable:
|
175 |
+
translated_txt = translator.translate(txt_iter.strip())
|
176 |
+
split_text.append(translated_txt)
|
177 |
+
progress_bar.update(1)
|
178 |
+
split_list.append(split_text)
|
179 |
+
progress_bar.close()
|
180 |
+
except Exception as error:
|
181 |
+
progress_bar.close()
|
182 |
+
logger.error(str(error))
|
183 |
+
logger.warning(
|
184 |
+
"The translation in chunks failed, switching to iterative."
|
185 |
+
" Related: too many request"
|
186 |
+
) # use proxy or less chunk size
|
187 |
+
return translate_iterative(segments, target, source)
|
188 |
+
|
189 |
+
# un chunk
|
190 |
+
translated_lines = list(chain.from_iterable(split_list))
|
191 |
+
|
192 |
+
return verify_translate(
|
193 |
+
segments, segments_copy, translated_lines, target, source
|
194 |
+
)
|
195 |
+
|
196 |
+
|
197 |
+
def call_gpt_translate(
|
198 |
+
client,
|
199 |
+
model,
|
200 |
+
system_prompt,
|
201 |
+
user_prompt,
|
202 |
+
original_text=None,
|
203 |
+
batch_lines=None,
|
204 |
+
):
|
205 |
+
|
206 |
+
# https://platform.openai.com/docs/guides/text-generation/json-mode
|
207 |
+
response = client.chat.completions.create(
|
208 |
+
model=model,
|
209 |
+
response_format={"type": "json_object"},
|
210 |
+
messages=[
|
211 |
+
{"role": "system", "content": system_prompt},
|
212 |
+
{"role": "user", "content": user_prompt}
|
213 |
+
]
|
214 |
+
)
|
215 |
+
result = response.choices[0].message.content
|
216 |
+
logger.debug(f"Result: {str(result)}")
|
217 |
+
|
218 |
+
try:
|
219 |
+
translation = json.loads(result)
|
220 |
+
except Exception as error:
|
221 |
+
match_result = re.search(r'\{.*?\}', result)
|
222 |
+
if match_result:
|
223 |
+
logger.error(str(error))
|
224 |
+
json_str = match_result.group(0)
|
225 |
+
translation = json.loads(json_str)
|
226 |
+
else:
|
227 |
+
raise error
|
228 |
+
|
229 |
+
# Get valid data
|
230 |
+
if batch_lines:
|
231 |
+
for conversation in translation.values():
|
232 |
+
if isinstance(conversation, dict):
|
233 |
+
conversation = list(conversation.values())[0]
|
234 |
+
if (
|
235 |
+
list(
|
236 |
+
original_text["conversation"][0].values()
|
237 |
+
)[0].strip() ==
|
238 |
+
list(conversation[0].values())[0].strip()
|
239 |
+
):
|
240 |
+
continue
|
241 |
+
if len(conversation) == batch_lines:
|
242 |
+
break
|
243 |
+
|
244 |
+
fix_conversation_length = []
|
245 |
+
for line in conversation:
|
246 |
+
for speaker_code, text_tr in line.items():
|
247 |
+
fix_conversation_length.append({speaker_code: text_tr})
|
248 |
+
|
249 |
+
logger.debug(f"Data batch: {str(fix_conversation_length)}")
|
250 |
+
logger.debug(
|
251 |
+
f"Lines Received: {len(fix_conversation_length)},"
|
252 |
+
f" expected: {batch_lines}"
|
253 |
+
)
|
254 |
+
|
255 |
+
return fix_conversation_length
|
256 |
+
|
257 |
+
else:
|
258 |
+
if isinstance(translation, dict):
|
259 |
+
translation = list(translation.values())[0]
|
260 |
+
if isinstance(translation, list):
|
261 |
+
translation = translation[0]
|
262 |
+
if isinstance(translation, set):
|
263 |
+
translation = list(translation)[0]
|
264 |
+
if not isinstance(translation, str):
|
265 |
+
raise ValueError(f"No valid response received: {str(translation)}")
|
266 |
+
|
267 |
+
return translation
|
268 |
+
|
269 |
+
|
270 |
+
def gpt_sequential(segments, model, target, source=None):
|
271 |
+
from openai import OpenAI
|
272 |
+
|
273 |
+
translated_segments = copy.deepcopy(segments)
|
274 |
+
|
275 |
+
client = OpenAI()
|
276 |
+
progress_bar = tqdm(total=len(segments), desc="Translating")
|
277 |
+
|
278 |
+
lang_tg = re.sub(r'\([^)]*\)', '', INVERTED_LANGUAGES[target]).strip()
|
279 |
+
lang_sc = ""
|
280 |
+
if source:
|
281 |
+
lang_sc = re.sub(r'\([^)]*\)', '', INVERTED_LANGUAGES[source]).strip()
|
282 |
+
|
283 |
+
fixed_target = fix_code_language(target)
|
284 |
+
fixed_source = fix_code_language(source) if source else "auto"
|
285 |
+
|
286 |
+
system_prompt = "Machine translation designed to output the translated_text JSON."
|
287 |
+
|
288 |
+
for i, line in enumerate(translated_segments):
|
289 |
+
text = line["text"].strip()
|
290 |
+
start = line["start"]
|
291 |
+
user_prompt = f"Translate the following {lang_sc} text into {lang_tg}, write the fully translated text and nothing more:\n{text}"
|
292 |
+
|
293 |
+
time.sleep(0.5)
|
294 |
+
|
295 |
+
try:
|
296 |
+
translated_text = call_gpt_translate(
|
297 |
+
client,
|
298 |
+
model,
|
299 |
+
system_prompt,
|
300 |
+
user_prompt,
|
301 |
+
)
|
302 |
+
|
303 |
+
except Exception as error:
|
304 |
+
logger.error(
|
305 |
+
f"{str(error)} >> The text of segment {start} "
|
306 |
+
"is being corrected with Google Translate"
|
307 |
+
)
|
308 |
+
translator = GoogleTranslator(
|
309 |
+
source=fixed_source, target=fixed_target
|
310 |
+
)
|
311 |
+
translated_text = translator.translate(text.strip())
|
312 |
+
|
313 |
+
translated_segments[i]["text"] = translated_text.strip()
|
314 |
+
progress_bar.update(1)
|
315 |
+
|
316 |
+
progress_bar.close()
|
317 |
+
|
318 |
+
return translated_segments
|
319 |
+
|
320 |
+
|
321 |
+
def gpt_batch(segments, model, target, token_batch_limit=900, source=None):
|
322 |
+
from openai import OpenAI
|
323 |
+
import tiktoken
|
324 |
+
|
325 |
+
token_batch_limit = max(100, (token_batch_limit - 40) // 2)
|
326 |
+
progress_bar = tqdm(total=len(segments), desc="Translating")
|
327 |
+
segments_copy = copy.deepcopy(segments)
|
328 |
+
encoding = tiktoken.get_encoding("cl100k_base")
|
329 |
+
client = OpenAI()
|
330 |
+
|
331 |
+
lang_tg = re.sub(r'\([^)]*\)', '', INVERTED_LANGUAGES[target]).strip()
|
332 |
+
lang_sc = ""
|
333 |
+
if source:
|
334 |
+
lang_sc = re.sub(r'\([^)]*\)', '', INVERTED_LANGUAGES[source]).strip()
|
335 |
+
|
336 |
+
fixed_target = fix_code_language(target)
|
337 |
+
fixed_source = fix_code_language(source) if source else "auto"
|
338 |
+
|
339 |
+
name_speaker = "ABCDEFGHIJKL"
|
340 |
+
|
341 |
+
translated_lines = []
|
342 |
+
text_data_dict = []
|
343 |
+
num_tokens = 0
|
344 |
+
count_sk = {char: 0 for char in "ABCDEFGHIJKL"}
|
345 |
+
|
346 |
+
for i, line in enumerate(segments_copy):
|
347 |
+
text = line["text"]
|
348 |
+
speaker = line["speaker"]
|
349 |
+
last_start = line["start"]
|
350 |
+
# text_data_dict.append({str(int(speaker[-1])+1): text})
|
351 |
+
index_sk = int(speaker[-2:])
|
352 |
+
character_sk = name_speaker[index_sk]
|
353 |
+
count_sk[character_sk] += 1
|
354 |
+
code_sk = character_sk+str(count_sk[character_sk])
|
355 |
+
text_data_dict.append({code_sk: text})
|
356 |
+
num_tokens += len(encoding.encode(text)) + 7
|
357 |
+
if num_tokens >= token_batch_limit or i == len(segments_copy)-1:
|
358 |
+
try:
|
359 |
+
batch_lines = len(text_data_dict)
|
360 |
+
batch_conversation = {"conversation": copy.deepcopy(text_data_dict)}
|
361 |
+
# Reset vars
|
362 |
+
num_tokens = 0
|
363 |
+
text_data_dict = []
|
364 |
+
count_sk = {char: 0 for char in "ABCDEFGHIJKL"}
|
365 |
+
# Process translation
|
366 |
+
# https://arxiv.org/pdf/2309.03409.pdf
|
367 |
+
system_prompt = f"Machine translation designed to output the translated_conversation key JSON containing a list of {batch_lines} items."
|
368 |
+
user_prompt = f"Translate each of the following text values in conversation{' from' if lang_sc else ''} {lang_sc} to {lang_tg}:\n{batch_conversation}"
|
369 |
+
logger.debug(f"Prompt: {str(user_prompt)}")
|
370 |
+
|
371 |
+
conversation = call_gpt_translate(
|
372 |
+
client,
|
373 |
+
model,
|
374 |
+
system_prompt,
|
375 |
+
user_prompt,
|
376 |
+
original_text=batch_conversation,
|
377 |
+
batch_lines=batch_lines,
|
378 |
+
)
|
379 |
+
|
380 |
+
if len(conversation) < batch_lines:
|
381 |
+
raise ValueError(
|
382 |
+
"Incomplete result received. Batch lines: "
|
383 |
+
f"{len(conversation)}, expected: {batch_lines}"
|
384 |
+
)
|
385 |
+
|
386 |
+
for i, translated_text in enumerate(conversation):
|
387 |
+
if i+1 > batch_lines:
|
388 |
+
break
|
389 |
+
translated_lines.append(list(translated_text.values())[0])
|
390 |
+
|
391 |
+
progress_bar.update(batch_lines)
|
392 |
+
|
393 |
+
except Exception as error:
|
394 |
+
logger.error(str(error))
|
395 |
+
|
396 |
+
first_start = segments_copy[max(0, i-(batch_lines-1))]["start"]
|
397 |
+
logger.warning(
|
398 |
+
f"The batch from {first_start} to {last_start} "
|
399 |
+
"failed, is being corrected with Google Translate"
|
400 |
+
)
|
401 |
+
|
402 |
+
translator = GoogleTranslator(
|
403 |
+
source=fixed_source,
|
404 |
+
target=fixed_target
|
405 |
+
)
|
406 |
+
|
407 |
+
for txt_source in batch_conversation["conversation"]:
|
408 |
+
translated_txt = translator.translate(
|
409 |
+
list(txt_source.values())[0].strip()
|
410 |
+
)
|
411 |
+
translated_lines.append(translated_txt.strip())
|
412 |
+
progress_bar.update(1)
|
413 |
+
|
414 |
+
progress_bar.close()
|
415 |
+
|
416 |
+
return verify_translate(
|
417 |
+
segments, segments_copy, translated_lines, fixed_target, fixed_source
|
418 |
+
)
|
419 |
+
|
420 |
+
|
421 |
+
def translate_text(
|
422 |
+
segments,
|
423 |
+
target,
|
424 |
+
translation_process="google_translator_batch",
|
425 |
+
chunk_size=4500,
|
426 |
+
source=None,
|
427 |
+
token_batch_limit=1000,
|
428 |
+
):
|
429 |
+
"""Translates text segments using a specified process."""
|
430 |
+
match translation_process:
|
431 |
+
case "google_translator_batch":
|
432 |
+
return translate_batch(
|
433 |
+
segments,
|
434 |
+
fix_code_language(target),
|
435 |
+
chunk_size,
|
436 |
+
fix_code_language(source)
|
437 |
+
)
|
438 |
+
case "google_translator":
|
439 |
+
return translate_iterative(
|
440 |
+
segments,
|
441 |
+
fix_code_language(target),
|
442 |
+
fix_code_language(source)
|
443 |
+
)
|
444 |
+
case model if model in ["gpt-3.5-turbo-0125", "gpt-4-turbo-preview"]:
|
445 |
+
return gpt_sequential(segments, model, target, source)
|
446 |
+
case model if model in ["gpt-3.5-turbo-0125_batch", "gpt-4-turbo-preview_batch",]:
|
447 |
+
return gpt_batch(
|
448 |
+
segments,
|
449 |
+
translation_process.replace("_batch", ""),
|
450 |
+
target,
|
451 |
+
token_batch_limit,
|
452 |
+
source
|
453 |
+
)
|
454 |
+
case "disable_translation":
|
455 |
+
return segments
|
456 |
+
case _:
|
457 |
+
raise ValueError("No valid translation process")
|
soni_translate/utils.py
CHANGED
@@ -1,487 +1,483 @@
|
|
1 |
-
import os, zipfile, rarfile, shutil, subprocess, shlex, sys # noqa
|
2 |
-
from .logging_setup import logger
|
3 |
-
from urllib.parse import urlparse
|
4 |
-
from IPython.utils import capture
|
5 |
-
import re
|
6 |
-
|
7 |
-
VIDEO_EXTENSIONS = [
|
8 |
-
".mp4",
|
9 |
-
".avi",
|
10 |
-
".mov",
|
11 |
-
".mkv",
|
12 |
-
".wmv",
|
13 |
-
".flv",
|
14 |
-
".webm",
|
15 |
-
".m4v",
|
16 |
-
".mpeg",
|
17 |
-
".mpg",
|
18 |
-
".3gp"
|
19 |
-
]
|
20 |
-
|
21 |
-
AUDIO_EXTENSIONS = [
|
22 |
-
".mp3",
|
23 |
-
".wav",
|
24 |
-
".aiff",
|
25 |
-
".aif",
|
26 |
-
".flac",
|
27 |
-
".aac",
|
28 |
-
".ogg",
|
29 |
-
".wma",
|
30 |
-
".m4a",
|
31 |
-
".alac",
|
32 |
-
".pcm",
|
33 |
-
".opus",
|
34 |
-
".ape",
|
35 |
-
".amr",
|
36 |
-
".ac3",
|
37 |
-
".vox",
|
38 |
-
".caf"
|
39 |
-
]
|
40 |
-
|
41 |
-
SUBTITLE_EXTENSIONS = [
|
42 |
-
".srt",
|
43 |
-
".vtt",
|
44 |
-
".ass"
|
45 |
-
]
|
46 |
-
|
47 |
-
|
48 |
-
def run_command(command):
|
49 |
-
logger.debug(command)
|
50 |
-
if isinstance(command, str):
|
51 |
-
command = shlex.split(command)
|
52 |
-
|
53 |
-
sub_params = {
|
54 |
-
"stdout": subprocess.PIPE,
|
55 |
-
"stderr": subprocess.PIPE,
|
56 |
-
"creationflags": subprocess.CREATE_NO_WINDOW
|
57 |
-
if sys.platform == "win32"
|
58 |
-
else 0,
|
59 |
-
}
|
60 |
-
process_command = subprocess.Popen(command, **sub_params)
|
61 |
-
output, errors = process_command.communicate()
|
62 |
-
if (
|
63 |
-
process_command.returncode != 0
|
64 |
-
): # or not os.path.exists(mono_path) or os.path.getsize(mono_path) == 0:
|
65 |
-
logger.error("Error comnand")
|
66 |
-
raise Exception(errors.decode())
|
67 |
-
|
68 |
-
|
69 |
-
def print_tree_directory(root_dir, indent=""):
|
70 |
-
if not os.path.exists(root_dir):
|
71 |
-
logger.error(f"{indent} Invalid directory or file: {root_dir}")
|
72 |
-
return
|
73 |
-
|
74 |
-
items = os.listdir(root_dir)
|
75 |
-
|
76 |
-
for index, item in enumerate(sorted(items)):
|
77 |
-
item_path = os.path.join(root_dir, item)
|
78 |
-
is_last_item = index == len(items) - 1
|
79 |
-
|
80 |
-
if os.path.isfile(item_path) and item_path.endswith(".zip"):
|
81 |
-
with zipfile.ZipFile(item_path, "r") as zip_file:
|
82 |
-
print(
|
83 |
-
f"{indent}{'└──' if is_last_item else '├──'} {item} (zip file)"
|
84 |
-
)
|
85 |
-
zip_contents = zip_file.namelist()
|
86 |
-
for zip_item in sorted(zip_contents):
|
87 |
-
print(
|
88 |
-
f"{indent}{' ' if is_last_item else '│ '}{zip_item}"
|
89 |
-
)
|
90 |
-
else:
|
91 |
-
print(f"{indent}{'└──' if is_last_item else '├──'} {item}")
|
92 |
-
|
93 |
-
if os.path.isdir(item_path):
|
94 |
-
new_indent = indent + (" " if is_last_item else "│ ")
|
95 |
-
print_tree_directory(item_path, new_indent)
|
96 |
-
|
97 |
-
|
98 |
-
def upload_model_list():
|
99 |
-
weight_root = "weights"
|
100 |
-
models = []
|
101 |
-
for name in os.listdir(weight_root):
|
102 |
-
if name.endswith(".pth"):
|
103 |
-
models.append("weights/" + name)
|
104 |
-
if models:
|
105 |
-
logger.debug(models)
|
106 |
-
|
107 |
-
index_root = "logs"
|
108 |
-
index_paths = [None]
|
109 |
-
for name in os.listdir(index_root):
|
110 |
-
if name.endswith(".index"):
|
111 |
-
index_paths.append("logs/" + name)
|
112 |
-
if index_paths:
|
113 |
-
logger.debug(index_paths)
|
114 |
-
|
115 |
-
return models, index_paths
|
116 |
-
|
117 |
-
|
118 |
-
def manual_download(url, dst):
|
119 |
-
if "drive.google" in url:
|
120 |
-
logger.info("Drive url")
|
121 |
-
if "folders" in url:
|
122 |
-
logger.info("folder")
|
123 |
-
os.system(f'gdown --folder "{url}" -O {dst} --fuzzy -c')
|
124 |
-
else:
|
125 |
-
logger.info("single")
|
126 |
-
os.system(f'gdown "{url}" -O {dst} --fuzzy -c')
|
127 |
-
elif "huggingface" in url:
|
128 |
-
logger.info("HuggingFace url")
|
129 |
-
if "/blob/" in url or "/resolve/" in url:
|
130 |
-
if "/blob/" in url:
|
131 |
-
url = url.replace("/blob/", "/resolve/")
|
132 |
-
download_manager(url=url, path=dst, overwrite=True, progress=True)
|
133 |
-
else:
|
134 |
-
os.system(f"git clone {url} {dst+'repo/'}")
|
135 |
-
elif "http" in url:
|
136 |
-
logger.info("URL")
|
137 |
-
download_manager(url=url, path=dst, overwrite=True, progress=True)
|
138 |
-
elif os.path.exists(url):
|
139 |
-
logger.info("Path")
|
140 |
-
copy_files(url, dst)
|
141 |
-
else:
|
142 |
-
logger.error(f"No valid URL: {url}")
|
143 |
-
|
144 |
-
|
145 |
-
def download_list(text_downloads):
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
return
|
212 |
-
|
213 |
-
|
214 |
-
def
|
215 |
-
return
|
216 |
-
|
217 |
-
|
218 |
-
def
|
219 |
-
return is_file_with_extensions(string_path,
|
220 |
-
|
221 |
-
|
222 |
-
def
|
223 |
-
return is_file_with_extensions(string_path,
|
224 |
-
|
225 |
-
|
226 |
-
def
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
valid_paths.
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
"""
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
os.
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
#
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
logger.
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
return dir_new_name_file
|
485 |
-
else:
|
486 |
-
logger.error(f"File '{current_name}' does not exist.")
|
487 |
-
return None
|
|
|
1 |
+
import os, zipfile, rarfile, shutil, subprocess, shlex, sys # noqa
|
2 |
+
from .logging_setup import logger
|
3 |
+
from urllib.parse import urlparse
|
4 |
+
from IPython.utils import capture
|
5 |
+
import re
|
6 |
+
|
7 |
+
VIDEO_EXTENSIONS = [
|
8 |
+
".mp4",
|
9 |
+
".avi",
|
10 |
+
".mov",
|
11 |
+
".mkv",
|
12 |
+
".wmv",
|
13 |
+
".flv",
|
14 |
+
".webm",
|
15 |
+
".m4v",
|
16 |
+
".mpeg",
|
17 |
+
".mpg",
|
18 |
+
".3gp"
|
19 |
+
]
|
20 |
+
|
21 |
+
AUDIO_EXTENSIONS = [
|
22 |
+
".mp3",
|
23 |
+
".wav",
|
24 |
+
".aiff",
|
25 |
+
".aif",
|
26 |
+
".flac",
|
27 |
+
".aac",
|
28 |
+
".ogg",
|
29 |
+
".wma",
|
30 |
+
".m4a",
|
31 |
+
".alac",
|
32 |
+
".pcm",
|
33 |
+
".opus",
|
34 |
+
".ape",
|
35 |
+
".amr",
|
36 |
+
".ac3",
|
37 |
+
".vox",
|
38 |
+
".caf"
|
39 |
+
]
|
40 |
+
|
41 |
+
SUBTITLE_EXTENSIONS = [
|
42 |
+
".srt",
|
43 |
+
".vtt",
|
44 |
+
".ass"
|
45 |
+
]
|
46 |
+
|
47 |
+
|
48 |
+
def run_command(command):
|
49 |
+
logger.debug(command)
|
50 |
+
if isinstance(command, str):
|
51 |
+
command = shlex.split(command)
|
52 |
+
|
53 |
+
sub_params = {
|
54 |
+
"stdout": subprocess.PIPE,
|
55 |
+
"stderr": subprocess.PIPE,
|
56 |
+
"creationflags": subprocess.CREATE_NO_WINDOW
|
57 |
+
if sys.platform == "win32"
|
58 |
+
else 0,
|
59 |
+
}
|
60 |
+
process_command = subprocess.Popen(command, **sub_params)
|
61 |
+
output, errors = process_command.communicate()
|
62 |
+
if (
|
63 |
+
process_command.returncode != 0
|
64 |
+
): # or not os.path.exists(mono_path) or os.path.getsize(mono_path) == 0:
|
65 |
+
logger.error("Error comnand")
|
66 |
+
raise Exception(errors.decode())
|
67 |
+
|
68 |
+
|
69 |
+
def print_tree_directory(root_dir, indent=""):
|
70 |
+
if not os.path.exists(root_dir):
|
71 |
+
logger.error(f"{indent} Invalid directory or file: {root_dir}")
|
72 |
+
return
|
73 |
+
|
74 |
+
items = os.listdir(root_dir)
|
75 |
+
|
76 |
+
for index, item in enumerate(sorted(items)):
|
77 |
+
item_path = os.path.join(root_dir, item)
|
78 |
+
is_last_item = index == len(items) - 1
|
79 |
+
|
80 |
+
if os.path.isfile(item_path) and item_path.endswith(".zip"):
|
81 |
+
with zipfile.ZipFile(item_path, "r") as zip_file:
|
82 |
+
print(
|
83 |
+
f"{indent}{'└──' if is_last_item else '├──'} {item} (zip file)"
|
84 |
+
)
|
85 |
+
zip_contents = zip_file.namelist()
|
86 |
+
for zip_item in sorted(zip_contents):
|
87 |
+
print(
|
88 |
+
f"{indent}{' ' if is_last_item else '│ '}{zip_item}"
|
89 |
+
)
|
90 |
+
else:
|
91 |
+
print(f"{indent}{'└──' if is_last_item else '├──'} {item}")
|
92 |
+
|
93 |
+
if os.path.isdir(item_path):
|
94 |
+
new_indent = indent + (" " if is_last_item else "│ ")
|
95 |
+
print_tree_directory(item_path, new_indent)
|
96 |
+
|
97 |
+
|
98 |
+
def upload_model_list():
|
99 |
+
weight_root = "weights"
|
100 |
+
models = []
|
101 |
+
for name in os.listdir(weight_root):
|
102 |
+
if name.endswith(".pth"):
|
103 |
+
models.append("weights/" + name)
|
104 |
+
if models:
|
105 |
+
logger.debug(models)
|
106 |
+
|
107 |
+
index_root = "logs"
|
108 |
+
index_paths = [None]
|
109 |
+
for name in os.listdir(index_root):
|
110 |
+
if name.endswith(".index"):
|
111 |
+
index_paths.append("logs/" + name)
|
112 |
+
if index_paths:
|
113 |
+
logger.debug(index_paths)
|
114 |
+
|
115 |
+
return models, index_paths
|
116 |
+
|
117 |
+
|
118 |
+
def manual_download(url, dst):
|
119 |
+
if "drive.google" in url:
|
120 |
+
logger.info("Drive url")
|
121 |
+
if "folders" in url:
|
122 |
+
logger.info("folder")
|
123 |
+
os.system(f'gdown --folder "{url}" -O {dst} --fuzzy -c')
|
124 |
+
else:
|
125 |
+
logger.info("single")
|
126 |
+
os.system(f'gdown "{url}" -O {dst} --fuzzy -c')
|
127 |
+
elif "huggingface" in url:
|
128 |
+
logger.info("HuggingFace url")
|
129 |
+
if "/blob/" in url or "/resolve/" in url:
|
130 |
+
if "/blob/" in url:
|
131 |
+
url = url.replace("/blob/", "/resolve/")
|
132 |
+
download_manager(url=url, path=dst, overwrite=True, progress=True)
|
133 |
+
else:
|
134 |
+
os.system(f"git clone {url} {dst+'repo/'}")
|
135 |
+
elif "http" in url:
|
136 |
+
logger.info("URL")
|
137 |
+
download_manager(url=url, path=dst, overwrite=True, progress=True)
|
138 |
+
elif os.path.exists(url):
|
139 |
+
logger.info("Path")
|
140 |
+
copy_files(url, dst)
|
141 |
+
else:
|
142 |
+
logger.error(f"No valid URL: {url}")
|
143 |
+
|
144 |
+
|
145 |
+
def download_list(text_downloads):
|
146 |
+
try:
|
147 |
+
urls = [elem.strip() for elem in text_downloads.split(",")]
|
148 |
+
except Exception as error:
|
149 |
+
raise ValueError(f"No valid URL. {str(error)}")
|
150 |
+
|
151 |
+
create_directories(["downloads", "logs", "weights"])
|
152 |
+
|
153 |
+
path_download = "downloads/"
|
154 |
+
for url in urls:
|
155 |
+
manual_download(url, path_download)
|
156 |
+
|
157 |
+
# Tree
|
158 |
+
print("####################################")
|
159 |
+
print_tree_directory("downloads", indent="")
|
160 |
+
print("####################################")
|
161 |
+
|
162 |
+
# Place files
|
163 |
+
select_zip_and_rar_files("downloads/")
|
164 |
+
|
165 |
+
models, _ = upload_model_list()
|
166 |
+
|
167 |
+
# hf space models files delete
|
168 |
+
remove_directory_contents("downloads/repo")
|
169 |
+
|
170 |
+
return f"Downloaded = {models}"
|
171 |
+
|
172 |
+
|
173 |
+
def select_zip_and_rar_files(directory_path="downloads/"):
|
174 |
+
# filter
|
175 |
+
zip_files = []
|
176 |
+
rar_files = []
|
177 |
+
|
178 |
+
for file_name in os.listdir(directory_path):
|
179 |
+
if file_name.endswith(".zip"):
|
180 |
+
zip_files.append(file_name)
|
181 |
+
elif file_name.endswith(".rar"):
|
182 |
+
rar_files.append(file_name)
|
183 |
+
|
184 |
+
# extract
|
185 |
+
for file_name in zip_files:
|
186 |
+
file_path = os.path.join(directory_path, file_name)
|
187 |
+
with zipfile.ZipFile(file_path, "r") as zip_ref:
|
188 |
+
zip_ref.extractall(directory_path)
|
189 |
+
|
190 |
+
for file_name in rar_files:
|
191 |
+
file_path = os.path.join(directory_path, file_name)
|
192 |
+
with rarfile.RarFile(file_path, "r") as rar_ref:
|
193 |
+
rar_ref.extractall(directory_path)
|
194 |
+
|
195 |
+
# set in path
|
196 |
+
def move_files_with_extension(src_dir, extension, destination_dir):
|
197 |
+
for root, _, files in os.walk(src_dir):
|
198 |
+
for file_name in files:
|
199 |
+
if file_name.endswith(extension):
|
200 |
+
source_file = os.path.join(root, file_name)
|
201 |
+
destination = os.path.join(destination_dir, file_name)
|
202 |
+
shutil.move(source_file, destination)
|
203 |
+
|
204 |
+
move_files_with_extension(directory_path, ".index", "logs/")
|
205 |
+
move_files_with_extension(directory_path, ".pth", "weights/")
|
206 |
+
|
207 |
+
return "Download complete"
|
208 |
+
|
209 |
+
|
210 |
+
def is_file_with_extensions(string_path, extensions):
|
211 |
+
return any(string_path.lower().endswith(ext) for ext in extensions)
|
212 |
+
|
213 |
+
|
214 |
+
def is_video_file(string_path):
|
215 |
+
return is_file_with_extensions(string_path, VIDEO_EXTENSIONS)
|
216 |
+
|
217 |
+
|
218 |
+
def is_audio_file(string_path):
|
219 |
+
return is_file_with_extensions(string_path, AUDIO_EXTENSIONS)
|
220 |
+
|
221 |
+
|
222 |
+
def is_subtitle_file(string_path):
|
223 |
+
return is_file_with_extensions(string_path, SUBTITLE_EXTENSIONS)
|
224 |
+
|
225 |
+
|
226 |
+
def get_directory_files(directory):
|
227 |
+
audio_files = []
|
228 |
+
video_files = []
|
229 |
+
sub_files = []
|
230 |
+
|
231 |
+
for item in os.listdir(directory):
|
232 |
+
item_path = os.path.join(directory, item)
|
233 |
+
|
234 |
+
if os.path.isfile(item_path):
|
235 |
+
|
236 |
+
if is_audio_file(item_path):
|
237 |
+
audio_files.append(item_path)
|
238 |
+
|
239 |
+
elif is_video_file(item_path):
|
240 |
+
video_files.append(item_path)
|
241 |
+
|
242 |
+
elif is_subtitle_file(item_path):
|
243 |
+
sub_files.append(item_path)
|
244 |
+
|
245 |
+
logger.info(
|
246 |
+
f"Files in path ({directory}): "
|
247 |
+
f"{str(audio_files + video_files + sub_files)}"
|
248 |
+
)
|
249 |
+
|
250 |
+
return audio_files, video_files, sub_files
|
251 |
+
|
252 |
+
|
253 |
+
def get_valid_files(paths):
|
254 |
+
valid_paths = []
|
255 |
+
for path in paths:
|
256 |
+
if os.path.isdir(path):
|
257 |
+
audio_files, video_files, sub_files = get_directory_files(path)
|
258 |
+
valid_paths.extend(audio_files)
|
259 |
+
valid_paths.extend(video_files)
|
260 |
+
valid_paths.extend(sub_files)
|
261 |
+
else:
|
262 |
+
valid_paths.append(path)
|
263 |
+
|
264 |
+
return valid_paths
|
265 |
+
|
266 |
+
|
267 |
+
def extract_video_links(link):
|
268 |
+
|
269 |
+
params_dlp = {"quiet": False, "no_warnings": True, "noplaylist": False}
|
270 |
+
|
271 |
+
try:
|
272 |
+
from yt_dlp import YoutubeDL
|
273 |
+
with capture.capture_output() as cap:
|
274 |
+
with YoutubeDL(params_dlp) as ydl:
|
275 |
+
info_dict = ydl.extract_info( # noqa
|
276 |
+
link, download=False, process=True
|
277 |
+
)
|
278 |
+
|
279 |
+
urls = re.findall(r'\[youtube\] Extracting URL: (.*?)\n', cap.stdout)
|
280 |
+
logger.info(f"List of videos in ({link}): {str(urls)}")
|
281 |
+
del cap
|
282 |
+
except Exception as error:
|
283 |
+
logger.error(f"{link} >> {str(error)}")
|
284 |
+
urls = [link]
|
285 |
+
|
286 |
+
return urls
|
287 |
+
|
288 |
+
|
289 |
+
def get_link_list(urls):
|
290 |
+
valid_links = []
|
291 |
+
for url_video in urls:
|
292 |
+
if "youtube.com" in url_video and "/watch?v=" not in url_video:
|
293 |
+
url_links = extract_video_links(url_video)
|
294 |
+
valid_links.extend(url_links)
|
295 |
+
else:
|
296 |
+
valid_links.append(url_video)
|
297 |
+
return valid_links
|
298 |
+
|
299 |
+
# =====================================
|
300 |
+
# Download Manager
|
301 |
+
# =====================================
|
302 |
+
|
303 |
+
|
304 |
+
def load_file_from_url(
|
305 |
+
url: str,
|
306 |
+
model_dir: str,
|
307 |
+
file_name: str | None = None,
|
308 |
+
overwrite: bool = False,
|
309 |
+
progress: bool = True,
|
310 |
+
) -> str:
|
311 |
+
"""Download a file from `url` into `model_dir`,
|
312 |
+
using the file present if possible.
|
313 |
+
|
314 |
+
Returns the path to the downloaded file.
|
315 |
+
"""
|
316 |
+
os.makedirs(model_dir, exist_ok=True)
|
317 |
+
if not file_name:
|
318 |
+
parts = urlparse(url)
|
319 |
+
file_name = os.path.basename(parts.path)
|
320 |
+
cached_file = os.path.abspath(os.path.join(model_dir, file_name))
|
321 |
+
|
322 |
+
# Overwrite
|
323 |
+
if os.path.exists(cached_file):
|
324 |
+
if overwrite or os.path.getsize(cached_file) == 0:
|
325 |
+
remove_files(cached_file)
|
326 |
+
|
327 |
+
# Download
|
328 |
+
if not os.path.exists(cached_file):
|
329 |
+
logger.info(f'Downloading: "{url}" to {cached_file}\n')
|
330 |
+
from torch.hub import download_url_to_file
|
331 |
+
|
332 |
+
download_url_to_file(url, cached_file, progress=progress)
|
333 |
+
else:
|
334 |
+
logger.debug(cached_file)
|
335 |
+
|
336 |
+
return cached_file
|
337 |
+
|
338 |
+
|
339 |
+
def friendly_name(file: str):
|
340 |
+
if file.startswith("http"):
|
341 |
+
file = urlparse(file).path
|
342 |
+
|
343 |
+
file = os.path.basename(file)
|
344 |
+
model_name, extension = os.path.splitext(file)
|
345 |
+
return model_name, extension
|
346 |
+
|
347 |
+
|
348 |
+
def download_manager(
|
349 |
+
url: str,
|
350 |
+
path: str,
|
351 |
+
extension: str = "",
|
352 |
+
overwrite: bool = False,
|
353 |
+
progress: bool = True,
|
354 |
+
):
|
355 |
+
url = url.strip()
|
356 |
+
|
357 |
+
name, ext = friendly_name(url)
|
358 |
+
name += ext if not extension else f".{extension}"
|
359 |
+
|
360 |
+
if url.startswith("http"):
|
361 |
+
filename = load_file_from_url(
|
362 |
+
url=url,
|
363 |
+
model_dir=path,
|
364 |
+
file_name=name,
|
365 |
+
overwrite=overwrite,
|
366 |
+
progress=progress,
|
367 |
+
)
|
368 |
+
else:
|
369 |
+
filename = path
|
370 |
+
|
371 |
+
return filename
|
372 |
+
|
373 |
+
|
374 |
+
# =====================================
|
375 |
+
# File management
|
376 |
+
# =====================================
|
377 |
+
|
378 |
+
|
379 |
+
# only remove files
|
380 |
+
def remove_files(file_list):
|
381 |
+
if isinstance(file_list, str):
|
382 |
+
file_list = [file_list]
|
383 |
+
|
384 |
+
for file in file_list:
|
385 |
+
if os.path.exists(file):
|
386 |
+
os.remove(file)
|
387 |
+
|
388 |
+
|
389 |
+
def remove_directory_contents(directory_path):
|
390 |
+
"""
|
391 |
+
Removes all files and subdirectories within a directory.
|
392 |
+
|
393 |
+
Parameters:
|
394 |
+
directory_path (str): Path to the directory whose
|
395 |
+
contents need to be removed.
|
396 |
+
"""
|
397 |
+
if os.path.exists(directory_path):
|
398 |
+
for filename in os.listdir(directory_path):
|
399 |
+
file_path = os.path.join(directory_path, filename)
|
400 |
+
try:
|
401 |
+
if os.path.isfile(file_path):
|
402 |
+
os.remove(file_path)
|
403 |
+
elif os.path.isdir(file_path):
|
404 |
+
shutil.rmtree(file_path)
|
405 |
+
except Exception as e:
|
406 |
+
logger.error(f"Failed to delete {file_path}. Reason: {e}")
|
407 |
+
logger.info(f"Content in '{directory_path}' removed.")
|
408 |
+
else:
|
409 |
+
logger.error(f"Directory '{directory_path}' does not exist.")
|
410 |
+
|
411 |
+
|
412 |
+
# Create directory if not exists
|
413 |
+
def create_directories(directory_path):
|
414 |
+
if isinstance(directory_path, str):
|
415 |
+
directory_path = [directory_path]
|
416 |
+
for one_dir_path in directory_path:
|
417 |
+
if not os.path.exists(one_dir_path):
|
418 |
+
os.makedirs(one_dir_path)
|
419 |
+
logger.debug(f"Directory '{one_dir_path}' created.")
|
420 |
+
|
421 |
+
|
422 |
+
def move_files(source_dir, destination_dir, extension=""):
|
423 |
+
"""
|
424 |
+
Moves file(s) from the source path to the destination path.
|
425 |
+
|
426 |
+
Parameters:
|
427 |
+
source_dir (str): Path to the source directory.
|
428 |
+
destination_dir (str): Path to the destination directory.
|
429 |
+
extension (str): Only move files with this extension.
|
430 |
+
"""
|
431 |
+
create_directories(destination_dir)
|
432 |
+
|
433 |
+
for filename in os.listdir(source_dir):
|
434 |
+
source_path = os.path.join(source_dir, filename)
|
435 |
+
destination_path = os.path.join(destination_dir, filename)
|
436 |
+
if extension and not filename.endswith(extension):
|
437 |
+
continue
|
438 |
+
os.replace(source_path, destination_path)
|
439 |
+
|
440 |
+
|
441 |
+
def copy_files(source_path, destination_path):
|
442 |
+
"""
|
443 |
+
Copies a file or multiple files from a source path to a destination path.
|
444 |
+
|
445 |
+
Parameters:
|
446 |
+
source_path (str or list): Path or list of paths to the source
|
447 |
+
file(s) or directory.
|
448 |
+
destination_path (str): Path to the destination directory.
|
449 |
+
"""
|
450 |
+
create_directories(destination_path)
|
451 |
+
|
452 |
+
if isinstance(source_path, str):
|
453 |
+
source_path = [source_path]
|
454 |
+
|
455 |
+
if os.path.isdir(source_path[0]):
|
456 |
+
# Copy all files from the source directory to the destination directory
|
457 |
+
base_path = source_path[0]
|
458 |
+
source_path = os.listdir(source_path[0])
|
459 |
+
source_path = [
|
460 |
+
os.path.join(base_path, file_name) for file_name in source_path
|
461 |
+
]
|
462 |
+
|
463 |
+
for one_source_path in source_path:
|
464 |
+
if os.path.exists(one_source_path):
|
465 |
+
shutil.copy2(one_source_path, destination_path)
|
466 |
+
logger.debug(
|
467 |
+
f"File '{one_source_path}' copied to '{destination_path}'."
|
468 |
+
)
|
469 |
+
else:
|
470 |
+
logger.error(f"File '{one_source_path}' does not exist.")
|
471 |
+
|
472 |
+
|
473 |
+
def rename_file(current_name, new_name):
|
474 |
+
file_directory = os.path.dirname(current_name)
|
475 |
+
|
476 |
+
if os.path.exists(current_name):
|
477 |
+
dir_new_name_file = os.path.join(file_directory, new_name)
|
478 |
+
os.rename(current_name, dir_new_name_file)
|
479 |
+
logger.debug(f"File '{current_name}' renamed to '{new_name}'.")
|
480 |
+
return dir_new_name_file
|
481 |
+
else:
|
482 |
+
logger.error(f"File '{current_name}' does not exist.")
|
483 |
+
return None
|
|
|
|
|
|
|
|
voice_main.py
CHANGED
@@ -1,732 +1,732 @@
|
|
1 |
-
from soni_translate.logging_setup import logger
|
2 |
-
import torch
|
3 |
-
import gc
|
4 |
-
import numpy as np
|
5 |
-
import os
|
6 |
-
import shutil
|
7 |
-
import warnings
|
8 |
-
import threading
|
9 |
-
from tqdm import tqdm
|
10 |
-
from lib.infer_pack.models import (
|
11 |
-
SynthesizerTrnMs256NSFsid,
|
12 |
-
SynthesizerTrnMs256NSFsid_nono,
|
13 |
-
SynthesizerTrnMs768NSFsid,
|
14 |
-
SynthesizerTrnMs768NSFsid_nono,
|
15 |
-
)
|
16 |
-
from lib.audio import load_audio
|
17 |
-
import soundfile as sf
|
18 |
-
import edge_tts
|
19 |
-
import asyncio
|
20 |
-
from soni_translate.utils import remove_directory_contents, create_directories
|
21 |
-
from scipy import signal
|
22 |
-
from time import time as ttime
|
23 |
-
import faiss
|
24 |
-
from vci_pipeline import VC, change_rms, bh, ah
|
25 |
-
import librosa
|
26 |
-
|
27 |
-
warnings.filterwarnings("ignore")
|
28 |
-
|
29 |
-
|
30 |
-
class Config:
|
31 |
-
def __init__(self, only_cpu=False):
|
32 |
-
self.device = "cuda:0"
|
33 |
-
self.is_half = True
|
34 |
-
self.n_cpu = 0
|
35 |
-
self.gpu_name = None
|
36 |
-
self.gpu_mem = None
|
37 |
-
(
|
38 |
-
self.x_pad,
|
39 |
-
self.x_query,
|
40 |
-
self.x_center,
|
41 |
-
self.x_max
|
42 |
-
) = self.device_config(only_cpu)
|
43 |
-
|
44 |
-
def device_config(self, only_cpu) -> tuple:
|
45 |
-
if torch.cuda.is_available() and not only_cpu:
|
46 |
-
i_device = int(self.device.split(":")[-1])
|
47 |
-
self.gpu_name = torch.cuda.get_device_name(i_device)
|
48 |
-
if (
|
49 |
-
("16" in self.gpu_name and "V100" not in self.gpu_name.upper())
|
50 |
-
or "P40" in self.gpu_name.upper()
|
51 |
-
or "1060" in self.gpu_name
|
52 |
-
or "1070" in self.gpu_name
|
53 |
-
or "1080" in self.gpu_name
|
54 |
-
):
|
55 |
-
logger.info(
|
56 |
-
"16/10 Series GPUs and P40 excel "
|
57 |
-
"in single-precision tasks."
|
58 |
-
)
|
59 |
-
self.is_half = False
|
60 |
-
else:
|
61 |
-
self.gpu_name = None
|
62 |
-
self.gpu_mem = int(
|
63 |
-
torch.cuda.get_device_properties(i_device).total_memory
|
64 |
-
/ 1024
|
65 |
-
/ 1024
|
66 |
-
/ 1024
|
67 |
-
+ 0.4
|
68 |
-
)
|
69 |
-
elif torch.backends.mps.is_available() and not only_cpu:
|
70 |
-
logger.info("Supported N-card not found, using MPS for inference")
|
71 |
-
self.device = "mps"
|
72 |
-
else:
|
73 |
-
logger.info("No supported N-card found, using CPU for inference")
|
74 |
-
self.device = "cpu"
|
75 |
-
self.is_half = False
|
76 |
-
|
77 |
-
if self.n_cpu == 0:
|
78 |
-
self.n_cpu = os.cpu_count()
|
79 |
-
|
80 |
-
if self.is_half:
|
81 |
-
# 6GB VRAM configuration
|
82 |
-
x_pad = 3
|
83 |
-
x_query = 10
|
84 |
-
x_center = 60
|
85 |
-
x_max = 65
|
86 |
-
else:
|
87 |
-
# 5GB VRAM configuration
|
88 |
-
x_pad = 1
|
89 |
-
x_query = 6
|
90 |
-
x_center = 38
|
91 |
-
x_max = 41
|
92 |
-
|
93 |
-
if self.gpu_mem is not None and self.gpu_mem <= 4:
|
94 |
-
x_pad = 1
|
95 |
-
x_query = 5
|
96 |
-
x_center = 30
|
97 |
-
x_max = 32
|
98 |
-
|
99 |
-
logger.info(
|
100 |
-
f"Config: Device is {self.device}, "
|
101 |
-
f"half precision is {self.is_half}"
|
102 |
-
)
|
103 |
-
|
104 |
-
return x_pad, x_query, x_center, x_max
|
105 |
-
|
106 |
-
|
107 |
-
BASE_DOWNLOAD_LINK = "https://huggingface.co/r3gm/sonitranslate_voice_models/resolve/main/"
|
108 |
-
BASE_MODELS = [
|
109 |
-
"hubert_base.pt",
|
110 |
-
"rmvpe.pt"
|
111 |
-
]
|
112 |
-
BASE_DIR = "."
|
113 |
-
|
114 |
-
|
115 |
-
def load_hu_bert(config):
|
116 |
-
from fairseq import checkpoint_utils
|
117 |
-
from soni_translate.utils import download_manager
|
118 |
-
|
119 |
-
for id_model in BASE_MODELS:
|
120 |
-
download_manager(
|
121 |
-
os.path.join(BASE_DOWNLOAD_LINK, id_model), BASE_DIR
|
122 |
-
)
|
123 |
-
|
124 |
-
models, _, _ = checkpoint_utils.load_model_ensemble_and_task(
|
125 |
-
["hubert_base.pt"],
|
126 |
-
suffix="",
|
127 |
-
)
|
128 |
-
hubert_model = models[0]
|
129 |
-
hubert_model = hubert_model.to(config.device)
|
130 |
-
if config.is_half:
|
131 |
-
hubert_model = hubert_model.half()
|
132 |
-
else:
|
133 |
-
hubert_model = hubert_model.float()
|
134 |
-
hubert_model.eval()
|
135 |
-
|
136 |
-
return hubert_model
|
137 |
-
|
138 |
-
|
139 |
-
def load_trained_model(model_path, config):
|
140 |
-
|
141 |
-
if not model_path:
|
142 |
-
raise ValueError("No model found")
|
143 |
-
|
144 |
-
logger.info("Loading %s" % model_path)
|
145 |
-
cpt = torch.load(model_path, map_location="cpu")
|
146 |
-
tgt_sr = cpt["config"][-1]
|
147 |
-
cpt["config"][-3] = cpt["weight"]["emb_g.weight"].shape[0] # n_spk
|
148 |
-
if_f0 = cpt.get("f0", 1)
|
149 |
-
if if_f0 == 0:
|
150 |
-
# protect to 0.5 need?
|
151 |
-
pass
|
152 |
-
|
153 |
-
version = cpt.get("version", "v1")
|
154 |
-
if version == "v1":
|
155 |
-
if if_f0 == 1:
|
156 |
-
net_g = SynthesizerTrnMs256NSFsid(
|
157 |
-
*cpt["config"], is_half=config.is_half
|
158 |
-
)
|
159 |
-
else:
|
160 |
-
net_g = SynthesizerTrnMs256NSFsid_nono(*cpt["config"])
|
161 |
-
elif version == "v2":
|
162 |
-
if if_f0 == 1:
|
163 |
-
net_g = SynthesizerTrnMs768NSFsid(
|
164 |
-
*cpt["config"], is_half=config.is_half
|
165 |
-
)
|
166 |
-
else:
|
167 |
-
net_g = SynthesizerTrnMs768NSFsid_nono(*cpt["config"])
|
168 |
-
del net_g.enc_q
|
169 |
-
|
170 |
-
net_g.load_state_dict(cpt["weight"], strict=False)
|
171 |
-
net_g.eval().to(config.device)
|
172 |
-
|
173 |
-
if config.is_half:
|
174 |
-
net_g = net_g.half()
|
175 |
-
else:
|
176 |
-
net_g = net_g.float()
|
177 |
-
|
178 |
-
vc = VC(tgt_sr, config)
|
179 |
-
n_spk = cpt["config"][-3]
|
180 |
-
|
181 |
-
return n_spk, tgt_sr, net_g, vc, cpt, version
|
182 |
-
|
183 |
-
|
184 |
-
class ClassVoices:
|
185 |
-
def __init__(self, only_cpu=False):
|
186 |
-
self.model_config = {}
|
187 |
-
self.config = None
|
188 |
-
self.only_cpu = only_cpu
|
189 |
-
|
190 |
-
def apply_conf(
|
191 |
-
self,
|
192 |
-
tag="base_model",
|
193 |
-
file_model="",
|
194 |
-
pitch_algo="pm",
|
195 |
-
pitch_lvl=0,
|
196 |
-
file_index="",
|
197 |
-
index_influence=0.66,
|
198 |
-
respiration_median_filtering=3,
|
199 |
-
envelope_ratio=0.25,
|
200 |
-
consonant_breath_protection=0.33,
|
201 |
-
resample_sr=0,
|
202 |
-
file_pitch_algo="",
|
203 |
-
):
|
204 |
-
|
205 |
-
if not file_model:
|
206 |
-
raise ValueError("Model not found")
|
207 |
-
|
208 |
-
if file_index is None:
|
209 |
-
file_index = ""
|
210 |
-
|
211 |
-
if file_pitch_algo is None:
|
212 |
-
file_pitch_algo = ""
|
213 |
-
|
214 |
-
if not self.config:
|
215 |
-
self.config = Config(self.only_cpu)
|
216 |
-
self.hu_bert_model = None
|
217 |
-
self.model_pitch_estimator = None
|
218 |
-
|
219 |
-
self.model_config[tag] = {
|
220 |
-
"file_model": file_model,
|
221 |
-
"pitch_algo": pitch_algo,
|
222 |
-
"pitch_lvl": pitch_lvl, # no decimal
|
223 |
-
"file_index": file_index,
|
224 |
-
"index_influence": index_influence,
|
225 |
-
"respiration_median_filtering": respiration_median_filtering,
|
226 |
-
"envelope_ratio": envelope_ratio,
|
227 |
-
"consonant_breath_protection": consonant_breath_protection,
|
228 |
-
"resample_sr": resample_sr,
|
229 |
-
"file_pitch_algo": file_pitch_algo,
|
230 |
-
}
|
231 |
-
return f"CONFIGURATION APPLIED FOR {tag}: {file_model}"
|
232 |
-
|
233 |
-
def infer(
|
234 |
-
self,
|
235 |
-
task_id,
|
236 |
-
params,
|
237 |
-
# load model
|
238 |
-
n_spk,
|
239 |
-
tgt_sr,
|
240 |
-
net_g,
|
241 |
-
pipe,
|
242 |
-
cpt,
|
243 |
-
version,
|
244 |
-
if_f0,
|
245 |
-
# load index
|
246 |
-
index_rate,
|
247 |
-
index,
|
248 |
-
big_npy,
|
249 |
-
# load f0 file
|
250 |
-
inp_f0,
|
251 |
-
# audio file
|
252 |
-
input_audio_path,
|
253 |
-
overwrite,
|
254 |
-
):
|
255 |
-
|
256 |
-
f0_method = params["pitch_algo"]
|
257 |
-
f0_up_key = params["pitch_lvl"]
|
258 |
-
filter_radius = params["respiration_median_filtering"]
|
259 |
-
resample_sr = params["resample_sr"]
|
260 |
-
rms_mix_rate = params["envelope_ratio"]
|
261 |
-
protect = params["consonant_breath_protection"]
|
262 |
-
|
263 |
-
if not os.path.exists(input_audio_path):
|
264 |
-
raise ValueError(
|
265 |
-
"The audio file was not found or is not "
|
266 |
-
f"a valid file: {input_audio_path}"
|
267 |
-
)
|
268 |
-
|
269 |
-
f0_up_key = int(f0_up_key)
|
270 |
-
|
271 |
-
audio = load_audio(input_audio_path, 16000)
|
272 |
-
|
273 |
-
# Normalize audio
|
274 |
-
audio_max = np.abs(audio).max() / 0.95
|
275 |
-
if audio_max > 1:
|
276 |
-
audio /= audio_max
|
277 |
-
|
278 |
-
times = [0, 0, 0]
|
279 |
-
|
280 |
-
# filters audio signal, pads it, computes sliding window sums,
|
281 |
-
# and extracts optimized time indices
|
282 |
-
audio = signal.filtfilt(bh, ah, audio)
|
283 |
-
audio_pad = np.pad(
|
284 |
-
audio, (pipe.window // 2, pipe.window // 2), mode="reflect"
|
285 |
-
)
|
286 |
-
opt_ts = []
|
287 |
-
if audio_pad.shape[0] > pipe.t_max:
|
288 |
-
audio_sum = np.zeros_like(audio)
|
289 |
-
for i in range(pipe.window):
|
290 |
-
audio_sum += audio_pad[i:i - pipe.window]
|
291 |
-
for t in range(pipe.t_center, audio.shape[0], pipe.t_center):
|
292 |
-
opt_ts.append(
|
293 |
-
t
|
294 |
-
- pipe.t_query
|
295 |
-
+ np.where(
|
296 |
-
np.abs(audio_sum[t - pipe.t_query: t + pipe.t_query])
|
297 |
-
== np.abs(audio_sum[t - pipe.t_query: t + pipe.t_query]).min()
|
298 |
-
)[0][0]
|
299 |
-
)
|
300 |
-
|
301 |
-
s = 0
|
302 |
-
audio_opt = []
|
303 |
-
t = None
|
304 |
-
t1 = ttime()
|
305 |
-
|
306 |
-
sid_value = 0
|
307 |
-
sid = torch.tensor(sid_value, device=pipe.device).unsqueeze(0).long()
|
308 |
-
|
309 |
-
# Pads audio symmetrically, calculates length divided by window size.
|
310 |
-
audio_pad = np.pad(audio, (pipe.t_pad, pipe.t_pad), mode="reflect")
|
311 |
-
p_len = audio_pad.shape[0] // pipe.window
|
312 |
-
|
313 |
-
# Estimates pitch from audio signal
|
314 |
-
pitch, pitchf = None, None
|
315 |
-
if if_f0 == 1:
|
316 |
-
pitch, pitchf = pipe.get_f0(
|
317 |
-
input_audio_path,
|
318 |
-
audio_pad,
|
319 |
-
p_len,
|
320 |
-
f0_up_key,
|
321 |
-
f0_method,
|
322 |
-
filter_radius,
|
323 |
-
inp_f0,
|
324 |
-
)
|
325 |
-
pitch = pitch[:p_len]
|
326 |
-
pitchf = pitchf[:p_len]
|
327 |
-
if pipe.device == "mps":
|
328 |
-
pitchf = pitchf.astype(np.float32)
|
329 |
-
pitch = torch.tensor(
|
330 |
-
pitch, device=pipe.device
|
331 |
-
).unsqueeze(0).long()
|
332 |
-
pitchf = torch.tensor(
|
333 |
-
pitchf, device=pipe.device
|
334 |
-
).unsqueeze(0).float()
|
335 |
-
|
336 |
-
t2 = ttime()
|
337 |
-
times[1] += t2 - t1
|
338 |
-
for t in opt_ts:
|
339 |
-
t = t // pipe.window * pipe.window
|
340 |
-
if if_f0 == 1:
|
341 |
-
pitch_slice = pitch[
|
342 |
-
:, s // pipe.window: (t + pipe.t_pad2) // pipe.window
|
343 |
-
]
|
344 |
-
pitchf_slice = pitchf[
|
345 |
-
:, s // pipe.window: (t + pipe.t_pad2) // pipe.window
|
346 |
-
]
|
347 |
-
else:
|
348 |
-
pitch_slice = None
|
349 |
-
pitchf_slice = None
|
350 |
-
|
351 |
-
audio_slice = audio_pad[s:t + pipe.t_pad2 + pipe.window]
|
352 |
-
audio_opt.append(
|
353 |
-
pipe.vc(
|
354 |
-
self.hu_bert_model,
|
355 |
-
net_g,
|
356 |
-
sid,
|
357 |
-
audio_slice,
|
358 |
-
pitch_slice,
|
359 |
-
pitchf_slice,
|
360 |
-
times,
|
361 |
-
index,
|
362 |
-
big_npy,
|
363 |
-
index_rate,
|
364 |
-
version,
|
365 |
-
protect,
|
366 |
-
)[pipe.t_pad_tgt:-pipe.t_pad_tgt]
|
367 |
-
)
|
368 |
-
s = t
|
369 |
-
|
370 |
-
pitch_end_slice = pitch[
|
371 |
-
:, t // pipe.window:
|
372 |
-
] if t is not None else pitch
|
373 |
-
pitchf_end_slice = pitchf[
|
374 |
-
:, t // pipe.window:
|
375 |
-
] if t is not None else pitchf
|
376 |
-
|
377 |
-
audio_opt.append(
|
378 |
-
pipe.vc(
|
379 |
-
self.hu_bert_model,
|
380 |
-
net_g,
|
381 |
-
sid,
|
382 |
-
audio_pad[t:],
|
383 |
-
pitch_end_slice,
|
384 |
-
pitchf_end_slice,
|
385 |
-
times,
|
386 |
-
index,
|
387 |
-
big_npy,
|
388 |
-
index_rate,
|
389 |
-
version,
|
390 |
-
protect,
|
391 |
-
)[pipe.t_pad_tgt:-pipe.t_pad_tgt]
|
392 |
-
)
|
393 |
-
|
394 |
-
audio_opt = np.concatenate(audio_opt)
|
395 |
-
if rms_mix_rate != 1:
|
396 |
-
audio_opt = change_rms(
|
397 |
-
audio, 16000, audio_opt, tgt_sr, rms_mix_rate
|
398 |
-
)
|
399 |
-
if resample_sr >= 16000 and tgt_sr != resample_sr:
|
400 |
-
audio_opt = librosa.resample(
|
401 |
-
audio_opt, orig_sr=tgt_sr, target_sr=resample_sr
|
402 |
-
)
|
403 |
-
audio_max = np.abs(audio_opt).max() / 0.99
|
404 |
-
max_int16 = 32768
|
405 |
-
if audio_max > 1:
|
406 |
-
max_int16 /= audio_max
|
407 |
-
audio_opt = (audio_opt * max_int16).astype(np.int16)
|
408 |
-
del pitch, pitchf, sid
|
409 |
-
if torch.cuda.is_available():
|
410 |
-
torch.cuda.empty_cache()
|
411 |
-
|
412 |
-
if tgt_sr != resample_sr >= 16000:
|
413 |
-
final_sr = resample_sr
|
414 |
-
else:
|
415 |
-
final_sr = tgt_sr
|
416 |
-
|
417 |
-
"""
|
418 |
-
"Success.\n %s\nTime:\n npy:%ss, f0:%ss, infer:%ss" % (
|
419 |
-
times[0],
|
420 |
-
times[1],
|
421 |
-
times[2],
|
422 |
-
), (final_sr, audio_opt)
|
423 |
-
|
424 |
-
"""
|
425 |
-
|
426 |
-
if overwrite:
|
427 |
-
output_audio_path = input_audio_path # Overwrite
|
428 |
-
else:
|
429 |
-
basename = os.path.basename(input_audio_path)
|
430 |
-
dirname = os.path.dirname(input_audio_path)
|
431 |
-
|
432 |
-
new_basename = basename.split(
|
433 |
-
'.')[0] + "_edited." + basename.split('.')[-1]
|
434 |
-
new_path = os.path.join(dirname, new_basename)
|
435 |
-
logger.info(str(new_path))
|
436 |
-
|
437 |
-
output_audio_path = new_path
|
438 |
-
|
439 |
-
# Save file
|
440 |
-
sf.write(
|
441 |
-
file=output_audio_path,
|
442 |
-
samplerate=final_sr,
|
443 |
-
data=audio_opt
|
444 |
-
)
|
445 |
-
|
446 |
-
self.model_config[task_id]["result"].append(output_audio_path)
|
447 |
-
self.output_list.append(output_audio_path)
|
448 |
-
|
449 |
-
def make_test(
|
450 |
-
self,
|
451 |
-
tts_text,
|
452 |
-
tts_voice,
|
453 |
-
model_path,
|
454 |
-
index_path,
|
455 |
-
transpose,
|
456 |
-
f0_method,
|
457 |
-
):
|
458 |
-
|
459 |
-
folder_test = "test"
|
460 |
-
tag = "test_edge"
|
461 |
-
tts_file = "test/test.wav"
|
462 |
-
tts_edited = "test/test_edited.wav"
|
463 |
-
|
464 |
-
create_directories(folder_test)
|
465 |
-
remove_directory_contents(folder_test)
|
466 |
-
|
467 |
-
if "SET_LIMIT" == os.getenv("DEMO"):
|
468 |
-
if len(tts_text) > 60:
|
469 |
-
tts_text = tts_text[:60]
|
470 |
-
logger.warning("DEMO; limit to 60 characters")
|
471 |
-
|
472 |
-
try:
|
473 |
-
asyncio.run(edge_tts.Communicate(
|
474 |
-
tts_text, "-".join(tts_voice.split('-')[:-1])
|
475 |
-
).save(tts_file))
|
476 |
-
except Exception as e:
|
477 |
-
raise ValueError(
|
478 |
-
"No audio was received. Please change the "
|
479 |
-
f"tts voice for {tts_voice}. Error: {str(e)}"
|
480 |
-
)
|
481 |
-
|
482 |
-
shutil.copy(tts_file, tts_edited)
|
483 |
-
|
484 |
-
self.apply_conf(
|
485 |
-
tag=tag,
|
486 |
-
file_model=model_path,
|
487 |
-
pitch_algo=f0_method,
|
488 |
-
pitch_lvl=transpose,
|
489 |
-
file_index=index_path,
|
490 |
-
index_influence=0.66,
|
491 |
-
respiration_median_filtering=3,
|
492 |
-
envelope_ratio=0.25,
|
493 |
-
consonant_breath_protection=0.33,
|
494 |
-
)
|
495 |
-
|
496 |
-
self(
|
497 |
-
audio_files=tts_edited,
|
498 |
-
tag_list=tag,
|
499 |
-
overwrite=True
|
500 |
-
)
|
501 |
-
|
502 |
-
return tts_edited, tts_file
|
503 |
-
|
504 |
-
def run_threads(self, threads):
|
505 |
-
# Start threads
|
506 |
-
for thread in threads:
|
507 |
-
thread.start()
|
508 |
-
|
509 |
-
# Wait for all threads to finish
|
510 |
-
for thread in threads:
|
511 |
-
thread.join()
|
512 |
-
|
513 |
-
gc.collect()
|
514 |
-
torch.cuda.empty_cache()
|
515 |
-
|
516 |
-
def unload_models(self):
|
517 |
-
self.hu_bert_model = None
|
518 |
-
self.model_pitch_estimator = None
|
519 |
-
gc.collect()
|
520 |
-
torch.cuda.empty_cache()
|
521 |
-
|
522 |
-
def __call__(
|
523 |
-
self,
|
524 |
-
audio_files=[],
|
525 |
-
tag_list=[],
|
526 |
-
overwrite=False,
|
527 |
-
parallel_workers=1,
|
528 |
-
):
|
529 |
-
logger.info(f"Parallel workers: {str(parallel_workers)}")
|
530 |
-
|
531 |
-
self.output_list = []
|
532 |
-
|
533 |
-
if not self.model_config:
|
534 |
-
raise ValueError("No model has been configured for inference")
|
535 |
-
|
536 |
-
if isinstance(audio_files, str):
|
537 |
-
audio_files = [audio_files]
|
538 |
-
if isinstance(tag_list, str):
|
539 |
-
tag_list = [tag_list]
|
540 |
-
|
541 |
-
if not audio_files:
|
542 |
-
raise ValueError("No audio found to convert")
|
543 |
-
if not tag_list:
|
544 |
-
tag_list = [list(self.model_config.keys())[-1]] * len(audio_files)
|
545 |
-
|
546 |
-
if len(audio_files) > len(tag_list):
|
547 |
-
logger.info("Extend tag list to match audio files")
|
548 |
-
extend_number = len(audio_files) - len(tag_list)
|
549 |
-
tag_list.extend([tag_list[0]] * extend_number)
|
550 |
-
|
551 |
-
if len(audio_files) < len(tag_list):
|
552 |
-
logger.info("Cut list tags")
|
553 |
-
tag_list = tag_list[:len(audio_files)]
|
554 |
-
|
555 |
-
tag_file_pairs = list(zip(tag_list, audio_files))
|
556 |
-
sorted_tag_file = sorted(tag_file_pairs, key=lambda x: x[0])
|
557 |
-
|
558 |
-
# Base params
|
559 |
-
if not self.hu_bert_model:
|
560 |
-
self.hu_bert_model = load_hu_bert(self.config)
|
561 |
-
|
562 |
-
cache_params = None
|
563 |
-
threads = []
|
564 |
-
progress_bar = tqdm(total=len(tag_list), desc="Progress")
|
565 |
-
for i, (id_tag, input_audio_path) in enumerate(sorted_tag_file):
|
566 |
-
|
567 |
-
if id_tag not in self.model_config.keys():
|
568 |
-
logger.info(
|
569 |
-
f"No configured model for {id_tag} with {input_audio_path}"
|
570 |
-
)
|
571 |
-
continue
|
572 |
-
|
573 |
-
if (
|
574 |
-
len(threads) >= parallel_workers
|
575 |
-
or cache_params != id_tag
|
576 |
-
and cache_params is not None
|
577 |
-
):
|
578 |
-
|
579 |
-
self.run_threads(threads)
|
580 |
-
progress_bar.update(len(threads))
|
581 |
-
|
582 |
-
threads = []
|
583 |
-
|
584 |
-
if cache_params != id_tag:
|
585 |
-
|
586 |
-
self.model_config[id_tag]["result"] = []
|
587 |
-
|
588 |
-
# Unload previous
|
589 |
-
(
|
590 |
-
n_spk,
|
591 |
-
tgt_sr,
|
592 |
-
net_g,
|
593 |
-
pipe,
|
594 |
-
cpt,
|
595 |
-
version,
|
596 |
-
if_f0,
|
597 |
-
index_rate,
|
598 |
-
index,
|
599 |
-
big_npy,
|
600 |
-
inp_f0,
|
601 |
-
) = [None] * 11
|
602 |
-
gc.collect()
|
603 |
-
torch.cuda.empty_cache()
|
604 |
-
|
605 |
-
# Model params
|
606 |
-
params = self.model_config[id_tag]
|
607 |
-
|
608 |
-
model_path = params["file_model"]
|
609 |
-
f0_method = params["pitch_algo"]
|
610 |
-
file_index = params["file_index"]
|
611 |
-
index_rate = params["index_influence"]
|
612 |
-
f0_file = params["file_pitch_algo"]
|
613 |
-
|
614 |
-
# Load model
|
615 |
-
(
|
616 |
-
n_spk,
|
617 |
-
tgt_sr,
|
618 |
-
net_g,
|
619 |
-
pipe,
|
620 |
-
cpt,
|
621 |
-
version
|
622 |
-
) = load_trained_model(model_path, self.config)
|
623 |
-
if_f0 = cpt.get("f0", 1) # pitch data
|
624 |
-
|
625 |
-
# Load index
|
626 |
-
if os.path.exists(file_index) and index_rate != 0:
|
627 |
-
try:
|
628 |
-
index = faiss.read_index(file_index)
|
629 |
-
big_npy = index.reconstruct_n(0, index.ntotal)
|
630 |
-
except Exception as error:
|
631 |
-
logger.error(f"Index: {str(error)}")
|
632 |
-
index_rate = 0
|
633 |
-
index = big_npy = None
|
634 |
-
else:
|
635 |
-
logger.warning("File index not found")
|
636 |
-
index_rate = 0
|
637 |
-
index = big_npy = None
|
638 |
-
|
639 |
-
# Load f0 file
|
640 |
-
inp_f0 = None
|
641 |
-
if os.path.exists(f0_file):
|
642 |
-
try:
|
643 |
-
with open(f0_file, "r") as f:
|
644 |
-
lines = f.read().strip("\n").split("\n")
|
645 |
-
inp_f0 = []
|
646 |
-
for line in lines:
|
647 |
-
inp_f0.append([float(i) for i in line.split(",")])
|
648 |
-
inp_f0 = np.array(inp_f0, dtype="float32")
|
649 |
-
except Exception as error:
|
650 |
-
logger.error(f"f0 file: {str(error)}")
|
651 |
-
|
652 |
-
if "rmvpe" in f0_method:
|
653 |
-
if not self.model_pitch_estimator:
|
654 |
-
from lib.rmvpe import RMVPE
|
655 |
-
|
656 |
-
logger.info("Loading vocal pitch estimator model")
|
657 |
-
self.model_pitch_estimator = RMVPE(
|
658 |
-
"rmvpe.pt",
|
659 |
-
is_half=self.config.is_half,
|
660 |
-
device=self.config.device
|
661 |
-
)
|
662 |
-
|
663 |
-
pipe.model_rmvpe = self.model_pitch_estimator
|
664 |
-
|
665 |
-
cache_params = id_tag
|
666 |
-
|
667 |
-
# self.infer(
|
668 |
-
# id_tag,
|
669 |
-
# params,
|
670 |
-
# # load model
|
671 |
-
# n_spk,
|
672 |
-
# tgt_sr,
|
673 |
-
# net_g,
|
674 |
-
# pipe,
|
675 |
-
# cpt,
|
676 |
-
# version,
|
677 |
-
# if_f0,
|
678 |
-
# # load index
|
679 |
-
# index_rate,
|
680 |
-
# index,
|
681 |
-
# big_npy,
|
682 |
-
# # load f0 file
|
683 |
-
# inp_f0,
|
684 |
-
# # output file
|
685 |
-
# input_audio_path,
|
686 |
-
# overwrite,
|
687 |
-
# )
|
688 |
-
|
689 |
-
thread = threading.Thread(
|
690 |
-
target=self.infer,
|
691 |
-
args=(
|
692 |
-
id_tag,
|
693 |
-
params,
|
694 |
-
# loaded model
|
695 |
-
n_spk,
|
696 |
-
tgt_sr,
|
697 |
-
net_g,
|
698 |
-
pipe,
|
699 |
-
cpt,
|
700 |
-
version,
|
701 |
-
if_f0,
|
702 |
-
# loaded index
|
703 |
-
index_rate,
|
704 |
-
index,
|
705 |
-
big_npy,
|
706 |
-
# loaded f0 file
|
707 |
-
inp_f0,
|
708 |
-
# audio file
|
709 |
-
input_audio_path,
|
710 |
-
overwrite,
|
711 |
-
)
|
712 |
-
)
|
713 |
-
|
714 |
-
threads.append(thread)
|
715 |
-
|
716 |
-
# Run last
|
717 |
-
if threads:
|
718 |
-
self.run_threads(threads)
|
719 |
-
|
720 |
-
progress_bar.update(len(threads))
|
721 |
-
progress_bar.close()
|
722 |
-
|
723 |
-
final_result = []
|
724 |
-
valid_tags = set(tag_list)
|
725 |
-
for tag in valid_tags:
|
726 |
-
if (
|
727 |
-
tag in self.model_config.keys()
|
728 |
-
and "result" in self.model_config[tag].keys()
|
729 |
-
):
|
730 |
-
final_result.extend(self.model_config[tag]["result"])
|
731 |
-
|
732 |
-
return final_result
|
|
|
1 |
+
from soni_translate.logging_setup import logger
|
2 |
+
import torch
|
3 |
+
import gc
|
4 |
+
import numpy as np
|
5 |
+
import os
|
6 |
+
import shutil
|
7 |
+
import warnings
|
8 |
+
import threading
|
9 |
+
from tqdm import tqdm
|
10 |
+
from lib.infer_pack.models import (
|
11 |
+
SynthesizerTrnMs256NSFsid,
|
12 |
+
SynthesizerTrnMs256NSFsid_nono,
|
13 |
+
SynthesizerTrnMs768NSFsid,
|
14 |
+
SynthesizerTrnMs768NSFsid_nono,
|
15 |
+
)
|
16 |
+
from lib.audio import load_audio
|
17 |
+
import soundfile as sf
|
18 |
+
import edge_tts
|
19 |
+
import asyncio
|
20 |
+
from soni_translate.utils import remove_directory_contents, create_directories
|
21 |
+
from scipy import signal
|
22 |
+
from time import time as ttime
|
23 |
+
import faiss
|
24 |
+
from vci_pipeline import VC, change_rms, bh, ah
|
25 |
+
import librosa
|
26 |
+
|
27 |
+
warnings.filterwarnings("ignore")
|
28 |
+
|
29 |
+
|
30 |
+
class Config:
|
31 |
+
def __init__(self, only_cpu=False):
|
32 |
+
self.device = "cuda:0"
|
33 |
+
self.is_half = True
|
34 |
+
self.n_cpu = 0
|
35 |
+
self.gpu_name = None
|
36 |
+
self.gpu_mem = None
|
37 |
+
(
|
38 |
+
self.x_pad,
|
39 |
+
self.x_query,
|
40 |
+
self.x_center,
|
41 |
+
self.x_max
|
42 |
+
) = self.device_config(only_cpu)
|
43 |
+
|
44 |
+
def device_config(self, only_cpu) -> tuple:
|
45 |
+
if torch.cuda.is_available() and not only_cpu:
|
46 |
+
i_device = int(self.device.split(":")[-1])
|
47 |
+
self.gpu_name = torch.cuda.get_device_name(i_device)
|
48 |
+
if (
|
49 |
+
("16" in self.gpu_name and "V100" not in self.gpu_name.upper())
|
50 |
+
or "P40" in self.gpu_name.upper()
|
51 |
+
or "1060" in self.gpu_name
|
52 |
+
or "1070" in self.gpu_name
|
53 |
+
or "1080" in self.gpu_name
|
54 |
+
):
|
55 |
+
logger.info(
|
56 |
+
"16/10 Series GPUs and P40 excel "
|
57 |
+
"in single-precision tasks."
|
58 |
+
)
|
59 |
+
self.is_half = False
|
60 |
+
else:
|
61 |
+
self.gpu_name = None
|
62 |
+
self.gpu_mem = int(
|
63 |
+
torch.cuda.get_device_properties(i_device).total_memory
|
64 |
+
/ 1024
|
65 |
+
/ 1024
|
66 |
+
/ 1024
|
67 |
+
+ 0.4
|
68 |
+
)
|
69 |
+
elif torch.backends.mps.is_available() and not only_cpu:
|
70 |
+
logger.info("Supported N-card not found, using MPS for inference")
|
71 |
+
self.device = "mps"
|
72 |
+
else:
|
73 |
+
logger.info("No supported N-card found, using CPU for inference")
|
74 |
+
self.device = "cpu"
|
75 |
+
self.is_half = False
|
76 |
+
|
77 |
+
if self.n_cpu == 0:
|
78 |
+
self.n_cpu = os.cpu_count()
|
79 |
+
|
80 |
+
if self.is_half:
|
81 |
+
# 6GB VRAM configuration
|
82 |
+
x_pad = 3
|
83 |
+
x_query = 10
|
84 |
+
x_center = 60
|
85 |
+
x_max = 65
|
86 |
+
else:
|
87 |
+
# 5GB VRAM configuration
|
88 |
+
x_pad = 1
|
89 |
+
x_query = 6
|
90 |
+
x_center = 38
|
91 |
+
x_max = 41
|
92 |
+
|
93 |
+
if self.gpu_mem is not None and self.gpu_mem <= 4:
|
94 |
+
x_pad = 1
|
95 |
+
x_query = 5
|
96 |
+
x_center = 30
|
97 |
+
x_max = 32
|
98 |
+
|
99 |
+
logger.info(
|
100 |
+
f"Config: Device is {self.device}, "
|
101 |
+
f"half precision is {self.is_half}"
|
102 |
+
)
|
103 |
+
|
104 |
+
return x_pad, x_query, x_center, x_max
|
105 |
+
|
106 |
+
|
107 |
+
BASE_DOWNLOAD_LINK = "https://huggingface.co/r3gm/sonitranslate_voice_models/resolve/main/"
|
108 |
+
BASE_MODELS = [
|
109 |
+
"hubert_base.pt",
|
110 |
+
"rmvpe.pt"
|
111 |
+
]
|
112 |
+
BASE_DIR = "."
|
113 |
+
|
114 |
+
|
115 |
+
def load_hu_bert(config):
|
116 |
+
from fairseq import checkpoint_utils
|
117 |
+
from soni_translate.utils import download_manager
|
118 |
+
|
119 |
+
for id_model in BASE_MODELS:
|
120 |
+
download_manager(
|
121 |
+
os.path.join(BASE_DOWNLOAD_LINK, id_model), BASE_DIR
|
122 |
+
)
|
123 |
+
|
124 |
+
models, _, _ = checkpoint_utils.load_model_ensemble_and_task(
|
125 |
+
["hubert_base.pt"],
|
126 |
+
suffix="",
|
127 |
+
)
|
128 |
+
hubert_model = models[0]
|
129 |
+
hubert_model = hubert_model.to(config.device)
|
130 |
+
if config.is_half:
|
131 |
+
hubert_model = hubert_model.half()
|
132 |
+
else:
|
133 |
+
hubert_model = hubert_model.float()
|
134 |
+
hubert_model.eval()
|
135 |
+
|
136 |
+
return hubert_model
|
137 |
+
|
138 |
+
|
139 |
+
def load_trained_model(model_path, config):
|
140 |
+
|
141 |
+
if not model_path:
|
142 |
+
raise ValueError("No model found")
|
143 |
+
|
144 |
+
logger.info("Loading %s" % model_path)
|
145 |
+
cpt = torch.load(model_path, map_location="cpu")
|
146 |
+
tgt_sr = cpt["config"][-1]
|
147 |
+
cpt["config"][-3] = cpt["weight"]["emb_g.weight"].shape[0] # n_spk
|
148 |
+
if_f0 = cpt.get("f0", 1)
|
149 |
+
if if_f0 == 0:
|
150 |
+
# protect to 0.5 need?
|
151 |
+
pass
|
152 |
+
|
153 |
+
version = cpt.get("version", "v1")
|
154 |
+
if version == "v1":
|
155 |
+
if if_f0 == 1:
|
156 |
+
net_g = SynthesizerTrnMs256NSFsid(
|
157 |
+
*cpt["config"], is_half=config.is_half
|
158 |
+
)
|
159 |
+
else:
|
160 |
+
net_g = SynthesizerTrnMs256NSFsid_nono(*cpt["config"])
|
161 |
+
elif version == "v2":
|
162 |
+
if if_f0 == 1:
|
163 |
+
net_g = SynthesizerTrnMs768NSFsid(
|
164 |
+
*cpt["config"], is_half=config.is_half
|
165 |
+
)
|
166 |
+
else:
|
167 |
+
net_g = SynthesizerTrnMs768NSFsid_nono(*cpt["config"])
|
168 |
+
del net_g.enc_q
|
169 |
+
|
170 |
+
net_g.load_state_dict(cpt["weight"], strict=False)
|
171 |
+
net_g.eval().to(config.device)
|
172 |
+
|
173 |
+
if config.is_half:
|
174 |
+
net_g = net_g.half()
|
175 |
+
else:
|
176 |
+
net_g = net_g.float()
|
177 |
+
|
178 |
+
vc = VC(tgt_sr, config)
|
179 |
+
n_spk = cpt["config"][-3]
|
180 |
+
|
181 |
+
return n_spk, tgt_sr, net_g, vc, cpt, version
|
182 |
+
|
183 |
+
|
184 |
+
class ClassVoices:
|
185 |
+
def __init__(self, only_cpu=False):
|
186 |
+
self.model_config = {}
|
187 |
+
self.config = None
|
188 |
+
self.only_cpu = only_cpu
|
189 |
+
|
190 |
+
def apply_conf(
|
191 |
+
self,
|
192 |
+
tag="base_model",
|
193 |
+
file_model="",
|
194 |
+
pitch_algo="pm",
|
195 |
+
pitch_lvl=0,
|
196 |
+
file_index="",
|
197 |
+
index_influence=0.66,
|
198 |
+
respiration_median_filtering=3,
|
199 |
+
envelope_ratio=0.25,
|
200 |
+
consonant_breath_protection=0.33,
|
201 |
+
resample_sr=0,
|
202 |
+
file_pitch_algo="",
|
203 |
+
):
|
204 |
+
|
205 |
+
if not file_model:
|
206 |
+
raise ValueError("Model not found")
|
207 |
+
|
208 |
+
if file_index is None:
|
209 |
+
file_index = ""
|
210 |
+
|
211 |
+
if file_pitch_algo is None:
|
212 |
+
file_pitch_algo = ""
|
213 |
+
|
214 |
+
if not self.config:
|
215 |
+
self.config = Config(self.only_cpu)
|
216 |
+
self.hu_bert_model = None
|
217 |
+
self.model_pitch_estimator = None
|
218 |
+
|
219 |
+
self.model_config[tag] = {
|
220 |
+
"file_model": file_model,
|
221 |
+
"pitch_algo": pitch_algo,
|
222 |
+
"pitch_lvl": pitch_lvl, # no decimal
|
223 |
+
"file_index": file_index,
|
224 |
+
"index_influence": index_influence,
|
225 |
+
"respiration_median_filtering": respiration_median_filtering,
|
226 |
+
"envelope_ratio": envelope_ratio,
|
227 |
+
"consonant_breath_protection": consonant_breath_protection,
|
228 |
+
"resample_sr": resample_sr,
|
229 |
+
"file_pitch_algo": file_pitch_algo,
|
230 |
+
}
|
231 |
+
return f"CONFIGURATION APPLIED FOR {tag}: {file_model}"
|
232 |
+
|
233 |
+
def infer(
|
234 |
+
self,
|
235 |
+
task_id,
|
236 |
+
params,
|
237 |
+
# load model
|
238 |
+
n_spk,
|
239 |
+
tgt_sr,
|
240 |
+
net_g,
|
241 |
+
pipe,
|
242 |
+
cpt,
|
243 |
+
version,
|
244 |
+
if_f0,
|
245 |
+
# load index
|
246 |
+
index_rate,
|
247 |
+
index,
|
248 |
+
big_npy,
|
249 |
+
# load f0 file
|
250 |
+
inp_f0,
|
251 |
+
# audio file
|
252 |
+
input_audio_path,
|
253 |
+
overwrite,
|
254 |
+
):
|
255 |
+
|
256 |
+
f0_method = params["pitch_algo"]
|
257 |
+
f0_up_key = params["pitch_lvl"]
|
258 |
+
filter_radius = params["respiration_median_filtering"]
|
259 |
+
resample_sr = params["resample_sr"]
|
260 |
+
rms_mix_rate = params["envelope_ratio"]
|
261 |
+
protect = params["consonant_breath_protection"]
|
262 |
+
|
263 |
+
if not os.path.exists(input_audio_path):
|
264 |
+
raise ValueError(
|
265 |
+
"The audio file was not found or is not "
|
266 |
+
f"a valid file: {input_audio_path}"
|
267 |
+
)
|
268 |
+
|
269 |
+
f0_up_key = int(f0_up_key)
|
270 |
+
|
271 |
+
audio = load_audio(input_audio_path, 16000)
|
272 |
+
|
273 |
+
# Normalize audio
|
274 |
+
audio_max = np.abs(audio).max() / 0.95
|
275 |
+
if audio_max > 1:
|
276 |
+
audio /= audio_max
|
277 |
+
|
278 |
+
times = [0, 0, 0]
|
279 |
+
|
280 |
+
# filters audio signal, pads it, computes sliding window sums,
|
281 |
+
# and extracts optimized time indices
|
282 |
+
audio = signal.filtfilt(bh, ah, audio)
|
283 |
+
audio_pad = np.pad(
|
284 |
+
audio, (pipe.window // 2, pipe.window // 2), mode="reflect"
|
285 |
+
)
|
286 |
+
opt_ts = []
|
287 |
+
if audio_pad.shape[0] > pipe.t_max:
|
288 |
+
audio_sum = np.zeros_like(audio)
|
289 |
+
for i in range(pipe.window):
|
290 |
+
audio_sum += audio_pad[i:i - pipe.window]
|
291 |
+
for t in range(pipe.t_center, audio.shape[0], pipe.t_center):
|
292 |
+
opt_ts.append(
|
293 |
+
t
|
294 |
+
- pipe.t_query
|
295 |
+
+ np.where(
|
296 |
+
np.abs(audio_sum[t - pipe.t_query: t + pipe.t_query])
|
297 |
+
== np.abs(audio_sum[t - pipe.t_query: t + pipe.t_query]).min()
|
298 |
+
)[0][0]
|
299 |
+
)
|
300 |
+
|
301 |
+
s = 0
|
302 |
+
audio_opt = []
|
303 |
+
t = None
|
304 |
+
t1 = ttime()
|
305 |
+
|
306 |
+
sid_value = 0
|
307 |
+
sid = torch.tensor(sid_value, device=pipe.device).unsqueeze(0).long()
|
308 |
+
|
309 |
+
# Pads audio symmetrically, calculates length divided by window size.
|
310 |
+
audio_pad = np.pad(audio, (pipe.t_pad, pipe.t_pad), mode="reflect")
|
311 |
+
p_len = audio_pad.shape[0] // pipe.window
|
312 |
+
|
313 |
+
# Estimates pitch from audio signal
|
314 |
+
pitch, pitchf = None, None
|
315 |
+
if if_f0 == 1:
|
316 |
+
pitch, pitchf = pipe.get_f0(
|
317 |
+
input_audio_path,
|
318 |
+
audio_pad,
|
319 |
+
p_len,
|
320 |
+
f0_up_key,
|
321 |
+
f0_method,
|
322 |
+
filter_radius,
|
323 |
+
inp_f0,
|
324 |
+
)
|
325 |
+
pitch = pitch[:p_len]
|
326 |
+
pitchf = pitchf[:p_len]
|
327 |
+
if pipe.device == "mps":
|
328 |
+
pitchf = pitchf.astype(np.float32)
|
329 |
+
pitch = torch.tensor(
|
330 |
+
pitch, device=pipe.device
|
331 |
+
).unsqueeze(0).long()
|
332 |
+
pitchf = torch.tensor(
|
333 |
+
pitchf, device=pipe.device
|
334 |
+
).unsqueeze(0).float()
|
335 |
+
|
336 |
+
t2 = ttime()
|
337 |
+
times[1] += t2 - t1
|
338 |
+
for t in opt_ts:
|
339 |
+
t = t // pipe.window * pipe.window
|
340 |
+
if if_f0 == 1:
|
341 |
+
pitch_slice = pitch[
|
342 |
+
:, s // pipe.window: (t + pipe.t_pad2) // pipe.window
|
343 |
+
]
|
344 |
+
pitchf_slice = pitchf[
|
345 |
+
:, s // pipe.window: (t + pipe.t_pad2) // pipe.window
|
346 |
+
]
|
347 |
+
else:
|
348 |
+
pitch_slice = None
|
349 |
+
pitchf_slice = None
|
350 |
+
|
351 |
+
audio_slice = audio_pad[s:t + pipe.t_pad2 + pipe.window]
|
352 |
+
audio_opt.append(
|
353 |
+
pipe.vc(
|
354 |
+
self.hu_bert_model,
|
355 |
+
net_g,
|
356 |
+
sid,
|
357 |
+
audio_slice,
|
358 |
+
pitch_slice,
|
359 |
+
pitchf_slice,
|
360 |
+
times,
|
361 |
+
index,
|
362 |
+
big_npy,
|
363 |
+
index_rate,
|
364 |
+
version,
|
365 |
+
protect,
|
366 |
+
)[pipe.t_pad_tgt:-pipe.t_pad_tgt]
|
367 |
+
)
|
368 |
+
s = t
|
369 |
+
|
370 |
+
pitch_end_slice = pitch[
|
371 |
+
:, t // pipe.window:
|
372 |
+
] if t is not None else pitch
|
373 |
+
pitchf_end_slice = pitchf[
|
374 |
+
:, t // pipe.window:
|
375 |
+
] if t is not None else pitchf
|
376 |
+
|
377 |
+
audio_opt.append(
|
378 |
+
pipe.vc(
|
379 |
+
self.hu_bert_model,
|
380 |
+
net_g,
|
381 |
+
sid,
|
382 |
+
audio_pad[t:],
|
383 |
+
pitch_end_slice,
|
384 |
+
pitchf_end_slice,
|
385 |
+
times,
|
386 |
+
index,
|
387 |
+
big_npy,
|
388 |
+
index_rate,
|
389 |
+
version,
|
390 |
+
protect,
|
391 |
+
)[pipe.t_pad_tgt:-pipe.t_pad_tgt]
|
392 |
+
)
|
393 |
+
|
394 |
+
audio_opt = np.concatenate(audio_opt)
|
395 |
+
if rms_mix_rate != 1:
|
396 |
+
audio_opt = change_rms(
|
397 |
+
audio, 16000, audio_opt, tgt_sr, rms_mix_rate
|
398 |
+
)
|
399 |
+
if resample_sr >= 16000 and tgt_sr != resample_sr:
|
400 |
+
audio_opt = librosa.resample(
|
401 |
+
audio_opt, orig_sr=tgt_sr, target_sr=resample_sr
|
402 |
+
)
|
403 |
+
audio_max = np.abs(audio_opt).max() / 0.99
|
404 |
+
max_int16 = 32768
|
405 |
+
if audio_max > 1:
|
406 |
+
max_int16 /= audio_max
|
407 |
+
audio_opt = (audio_opt * max_int16).astype(np.int16)
|
408 |
+
del pitch, pitchf, sid
|
409 |
+
if torch.cuda.is_available():
|
410 |
+
torch.cuda.empty_cache()
|
411 |
+
|
412 |
+
if tgt_sr != resample_sr >= 16000:
|
413 |
+
final_sr = resample_sr
|
414 |
+
else:
|
415 |
+
final_sr = tgt_sr
|
416 |
+
|
417 |
+
"""
|
418 |
+
"Success.\n %s\nTime:\n npy:%ss, f0:%ss, infer:%ss" % (
|
419 |
+
times[0],
|
420 |
+
times[1],
|
421 |
+
times[2],
|
422 |
+
), (final_sr, audio_opt)
|
423 |
+
|
424 |
+
"""
|
425 |
+
|
426 |
+
if overwrite:
|
427 |
+
output_audio_path = input_audio_path # Overwrite
|
428 |
+
else:
|
429 |
+
basename = os.path.basename(input_audio_path)
|
430 |
+
dirname = os.path.dirname(input_audio_path)
|
431 |
+
|
432 |
+
new_basename = basename.split(
|
433 |
+
'.')[0] + "_edited." + basename.split('.')[-1]
|
434 |
+
new_path = os.path.join(dirname, new_basename)
|
435 |
+
logger.info(str(new_path))
|
436 |
+
|
437 |
+
output_audio_path = new_path
|
438 |
+
|
439 |
+
# Save file
|
440 |
+
sf.write(
|
441 |
+
file=output_audio_path,
|
442 |
+
samplerate=final_sr,
|
443 |
+
data=audio_opt
|
444 |
+
)
|
445 |
+
|
446 |
+
self.model_config[task_id]["result"].append(output_audio_path)
|
447 |
+
self.output_list.append(output_audio_path)
|
448 |
+
|
449 |
+
def make_test(
|
450 |
+
self,
|
451 |
+
tts_text,
|
452 |
+
tts_voice,
|
453 |
+
model_path,
|
454 |
+
index_path,
|
455 |
+
transpose,
|
456 |
+
f0_method,
|
457 |
+
):
|
458 |
+
|
459 |
+
folder_test = "test"
|
460 |
+
tag = "test_edge"
|
461 |
+
tts_file = "test/test.wav"
|
462 |
+
tts_edited = "test/test_edited.wav"
|
463 |
+
|
464 |
+
create_directories(folder_test)
|
465 |
+
remove_directory_contents(folder_test)
|
466 |
+
|
467 |
+
if "SET_LIMIT" == os.getenv("DEMO"):
|
468 |
+
if len(tts_text) > 60:
|
469 |
+
tts_text = tts_text[:60]
|
470 |
+
logger.warning("DEMO; limit to 60 characters")
|
471 |
+
|
472 |
+
try:
|
473 |
+
asyncio.run(edge_tts.Communicate(
|
474 |
+
tts_text, "-".join(tts_voice.split('-')[:-1])
|
475 |
+
).save(tts_file))
|
476 |
+
except Exception as e:
|
477 |
+
raise ValueError(
|
478 |
+
"No audio was received. Please change the "
|
479 |
+
f"tts voice for {tts_voice}. Error: {str(e)}"
|
480 |
+
)
|
481 |
+
|
482 |
+
shutil.copy(tts_file, tts_edited)
|
483 |
+
|
484 |
+
self.apply_conf(
|
485 |
+
tag=tag,
|
486 |
+
file_model=model_path,
|
487 |
+
pitch_algo=f0_method,
|
488 |
+
pitch_lvl=transpose,
|
489 |
+
file_index=index_path,
|
490 |
+
index_influence=0.66,
|
491 |
+
respiration_median_filtering=3,
|
492 |
+
envelope_ratio=0.25,
|
493 |
+
consonant_breath_protection=0.33,
|
494 |
+
)
|
495 |
+
|
496 |
+
self(
|
497 |
+
audio_files=tts_edited,
|
498 |
+
tag_list=tag,
|
499 |
+
overwrite=True
|
500 |
+
)
|
501 |
+
|
502 |
+
return tts_edited, tts_file
|
503 |
+
|
504 |
+
def run_threads(self, threads):
|
505 |
+
# Start threads
|
506 |
+
for thread in threads:
|
507 |
+
thread.start()
|
508 |
+
|
509 |
+
# Wait for all threads to finish
|
510 |
+
for thread in threads:
|
511 |
+
thread.join()
|
512 |
+
|
513 |
+
gc.collect()
|
514 |
+
torch.cuda.empty_cache()
|
515 |
+
|
516 |
+
def unload_models(self):
|
517 |
+
self.hu_bert_model = None
|
518 |
+
self.model_pitch_estimator = None
|
519 |
+
gc.collect()
|
520 |
+
torch.cuda.empty_cache()
|
521 |
+
|
522 |
+
def __call__(
|
523 |
+
self,
|
524 |
+
audio_files=[],
|
525 |
+
tag_list=[],
|
526 |
+
overwrite=False,
|
527 |
+
parallel_workers=1,
|
528 |
+
):
|
529 |
+
logger.info(f"Parallel workers: {str(parallel_workers)}")
|
530 |
+
|
531 |
+
self.output_list = []
|
532 |
+
|
533 |
+
if not self.model_config:
|
534 |
+
raise ValueError("No model has been configured for inference")
|
535 |
+
|
536 |
+
if isinstance(audio_files, str):
|
537 |
+
audio_files = [audio_files]
|
538 |
+
if isinstance(tag_list, str):
|
539 |
+
tag_list = [tag_list]
|
540 |
+
|
541 |
+
if not audio_files:
|
542 |
+
raise ValueError("No audio found to convert")
|
543 |
+
if not tag_list:
|
544 |
+
tag_list = [list(self.model_config.keys())[-1]] * len(audio_files)
|
545 |
+
|
546 |
+
if len(audio_files) > len(tag_list):
|
547 |
+
logger.info("Extend tag list to match audio files")
|
548 |
+
extend_number = len(audio_files) - len(tag_list)
|
549 |
+
tag_list.extend([tag_list[0]] * extend_number)
|
550 |
+
|
551 |
+
if len(audio_files) < len(tag_list):
|
552 |
+
logger.info("Cut list tags")
|
553 |
+
tag_list = tag_list[:len(audio_files)]
|
554 |
+
|
555 |
+
tag_file_pairs = list(zip(tag_list, audio_files))
|
556 |
+
sorted_tag_file = sorted(tag_file_pairs, key=lambda x: x[0])
|
557 |
+
|
558 |
+
# Base params
|
559 |
+
if not self.hu_bert_model:
|
560 |
+
self.hu_bert_model = load_hu_bert(self.config)
|
561 |
+
|
562 |
+
cache_params = None
|
563 |
+
threads = []
|
564 |
+
progress_bar = tqdm(total=len(tag_list), desc="Progress")
|
565 |
+
for i, (id_tag, input_audio_path) in enumerate(sorted_tag_file):
|
566 |
+
|
567 |
+
if id_tag not in self.model_config.keys():
|
568 |
+
logger.info(
|
569 |
+
f"No configured model for {id_tag} with {input_audio_path}"
|
570 |
+
)
|
571 |
+
continue
|
572 |
+
|
573 |
+
if (
|
574 |
+
len(threads) >= parallel_workers
|
575 |
+
or cache_params != id_tag
|
576 |
+
and cache_params is not None
|
577 |
+
):
|
578 |
+
|
579 |
+
self.run_threads(threads)
|
580 |
+
progress_bar.update(len(threads))
|
581 |
+
|
582 |
+
threads = []
|
583 |
+
|
584 |
+
if cache_params != id_tag:
|
585 |
+
|
586 |
+
self.model_config[id_tag]["result"] = []
|
587 |
+
|
588 |
+
# Unload previous
|
589 |
+
(
|
590 |
+
n_spk,
|
591 |
+
tgt_sr,
|
592 |
+
net_g,
|
593 |
+
pipe,
|
594 |
+
cpt,
|
595 |
+
version,
|
596 |
+
if_f0,
|
597 |
+
index_rate,
|
598 |
+
index,
|
599 |
+
big_npy,
|
600 |
+
inp_f0,
|
601 |
+
) = [None] * 11
|
602 |
+
gc.collect()
|
603 |
+
torch.cuda.empty_cache()
|
604 |
+
|
605 |
+
# Model params
|
606 |
+
params = self.model_config[id_tag]
|
607 |
+
|
608 |
+
model_path = params["file_model"]
|
609 |
+
f0_method = params["pitch_algo"]
|
610 |
+
file_index = params["file_index"]
|
611 |
+
index_rate = params["index_influence"]
|
612 |
+
f0_file = params["file_pitch_algo"]
|
613 |
+
|
614 |
+
# Load model
|
615 |
+
(
|
616 |
+
n_spk,
|
617 |
+
tgt_sr,
|
618 |
+
net_g,
|
619 |
+
pipe,
|
620 |
+
cpt,
|
621 |
+
version
|
622 |
+
) = load_trained_model(model_path, self.config)
|
623 |
+
if_f0 = cpt.get("f0", 1) # pitch data
|
624 |
+
|
625 |
+
# Load index
|
626 |
+
if os.path.exists(file_index) and index_rate != 0:
|
627 |
+
try:
|
628 |
+
index = faiss.read_index(file_index)
|
629 |
+
big_npy = index.reconstruct_n(0, index.ntotal)
|
630 |
+
except Exception as error:
|
631 |
+
logger.error(f"Index: {str(error)}")
|
632 |
+
index_rate = 0
|
633 |
+
index = big_npy = None
|
634 |
+
else:
|
635 |
+
logger.warning("File index not found")
|
636 |
+
index_rate = 0
|
637 |
+
index = big_npy = None
|
638 |
+
|
639 |
+
# Load f0 file
|
640 |
+
inp_f0 = None
|
641 |
+
if os.path.exists(f0_file):
|
642 |
+
try:
|
643 |
+
with open(f0_file, "r") as f:
|
644 |
+
lines = f.read().strip("\n").split("\n")
|
645 |
+
inp_f0 = []
|
646 |
+
for line in lines:
|
647 |
+
inp_f0.append([float(i) for i in line.split(",")])
|
648 |
+
inp_f0 = np.array(inp_f0, dtype="float32")
|
649 |
+
except Exception as error:
|
650 |
+
logger.error(f"f0 file: {str(error)}")
|
651 |
+
|
652 |
+
if "rmvpe" in f0_method:
|
653 |
+
if not self.model_pitch_estimator:
|
654 |
+
from lib.rmvpe import RMVPE
|
655 |
+
|
656 |
+
logger.info("Loading vocal pitch estimator model")
|
657 |
+
self.model_pitch_estimator = RMVPE(
|
658 |
+
"rmvpe.pt",
|
659 |
+
is_half=self.config.is_half,
|
660 |
+
device=self.config.device
|
661 |
+
)
|
662 |
+
|
663 |
+
pipe.model_rmvpe = self.model_pitch_estimator
|
664 |
+
|
665 |
+
cache_params = id_tag
|
666 |
+
|
667 |
+
# self.infer(
|
668 |
+
# id_tag,
|
669 |
+
# params,
|
670 |
+
# # load model
|
671 |
+
# n_spk,
|
672 |
+
# tgt_sr,
|
673 |
+
# net_g,
|
674 |
+
# pipe,
|
675 |
+
# cpt,
|
676 |
+
# version,
|
677 |
+
# if_f0,
|
678 |
+
# # load index
|
679 |
+
# index_rate,
|
680 |
+
# index,
|
681 |
+
# big_npy,
|
682 |
+
# # load f0 file
|
683 |
+
# inp_f0,
|
684 |
+
# # output file
|
685 |
+
# input_audio_path,
|
686 |
+
# overwrite,
|
687 |
+
# )
|
688 |
+
|
689 |
+
thread = threading.Thread(
|
690 |
+
target=self.infer,
|
691 |
+
args=(
|
692 |
+
id_tag,
|
693 |
+
params,
|
694 |
+
# loaded model
|
695 |
+
n_spk,
|
696 |
+
tgt_sr,
|
697 |
+
net_g,
|
698 |
+
pipe,
|
699 |
+
cpt,
|
700 |
+
version,
|
701 |
+
if_f0,
|
702 |
+
# loaded index
|
703 |
+
index_rate,
|
704 |
+
index,
|
705 |
+
big_npy,
|
706 |
+
# loaded f0 file
|
707 |
+
inp_f0,
|
708 |
+
# audio file
|
709 |
+
input_audio_path,
|
710 |
+
overwrite,
|
711 |
+
)
|
712 |
+
)
|
713 |
+
|
714 |
+
threads.append(thread)
|
715 |
+
|
716 |
+
# Run last
|
717 |
+
if threads:
|
718 |
+
self.run_threads(threads)
|
719 |
+
|
720 |
+
progress_bar.update(len(threads))
|
721 |
+
progress_bar.close()
|
722 |
+
|
723 |
+
final_result = []
|
724 |
+
valid_tags = set(tag_list)
|
725 |
+
for tag in valid_tags:
|
726 |
+
if (
|
727 |
+
tag in self.model_config.keys()
|
728 |
+
and "result" in self.model_config[tag].keys()
|
729 |
+
):
|
730 |
+
final_result.extend(self.model_config[tag]["result"])
|
731 |
+
|
732 |
+
return final_result
|