yaas 0.1.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- __init__.py +1 -0
- __main__.py +5 -0
- yaas-0.1.2.dist-info/LICENSE +373 -0
- yaas-0.1.2.dist-info/METADATA +432 -0
- yaas-0.1.2.dist-info/RECORD +14 -0
- yaas-0.1.2.dist-info/WHEEL +5 -0
- yaas-0.1.2.dist-info/entry_points.txt +2 -0
- yaas-0.1.2.dist-info/top_level.txt +4 -0
- yaas.py +209 -0
- yturl2mp3/__init__.py +0 -0
- yturl2mp3/__main__.py +5 -0
- yturl2mp3/config.py +17 -0
- yturl2mp3/helpers.py +75 -0
- yturl2mp3/yturl2mp3.py +103 -0
__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"0.1.2"
|
__main__.py
ADDED
|
@@ -0,0 +1,373 @@
|
|
|
1
|
+
Mozilla Public License Version 2.0
|
|
2
|
+
==================================
|
|
3
|
+
|
|
4
|
+
1. Definitions
|
|
5
|
+
--------------
|
|
6
|
+
|
|
7
|
+
1.1. "Contributor"
|
|
8
|
+
means each individual or legal entity that creates, contributes to
|
|
9
|
+
the creation of, or owns Covered Software.
|
|
10
|
+
|
|
11
|
+
1.2. "Contributor Version"
|
|
12
|
+
means the combination of the Contributions of others (if any) used
|
|
13
|
+
by a Contributor and that particular Contributor's Contribution.
|
|
14
|
+
|
|
15
|
+
1.3. "Contribution"
|
|
16
|
+
means Covered Software of a particular Contributor.
|
|
17
|
+
|
|
18
|
+
1.4. "Covered Software"
|
|
19
|
+
means Source Code Form to which the initial Contributor has attached
|
|
20
|
+
the notice in Exhibit A, the Executable Form of such Source Code
|
|
21
|
+
Form, and Modifications of such Source Code Form, in each case
|
|
22
|
+
including portions thereof.
|
|
23
|
+
|
|
24
|
+
1.5. "Incompatible With Secondary Licenses"
|
|
25
|
+
means
|
|
26
|
+
|
|
27
|
+
(a) that the initial Contributor has attached the notice described
|
|
28
|
+
in Exhibit B to the Covered Software; or
|
|
29
|
+
|
|
30
|
+
(b) that the Covered Software was made available under the terms of
|
|
31
|
+
version 1.1 or earlier of the License, but not also under the
|
|
32
|
+
terms of a Secondary License.
|
|
33
|
+
|
|
34
|
+
1.6. "Executable Form"
|
|
35
|
+
means any form of the work other than Source Code Form.
|
|
36
|
+
|
|
37
|
+
1.7. "Larger Work"
|
|
38
|
+
means a work that combines Covered Software with other material, in
|
|
39
|
+
a separate file or files, that is not Covered Software.
|
|
40
|
+
|
|
41
|
+
1.8. "License"
|
|
42
|
+
means this document.
|
|
43
|
+
|
|
44
|
+
1.9. "Licensable"
|
|
45
|
+
means having the right to grant, to the maximum extent possible,
|
|
46
|
+
whether at the time of the initial grant or subsequently, any and
|
|
47
|
+
all of the rights conveyed by this License.
|
|
48
|
+
|
|
49
|
+
1.10. "Modifications"
|
|
50
|
+
means any of the following:
|
|
51
|
+
|
|
52
|
+
(a) any file in Source Code Form that results from an addition to,
|
|
53
|
+
deletion from, or modification of the contents of Covered
|
|
54
|
+
Software; or
|
|
55
|
+
|
|
56
|
+
(b) any new file in Source Code Form that contains any Covered
|
|
57
|
+
Software.
|
|
58
|
+
|
|
59
|
+
1.11. "Patent Claims" of a Contributor
|
|
60
|
+
means any patent claim(s), including without limitation, method,
|
|
61
|
+
process, and apparatus claims, in any patent Licensable by such
|
|
62
|
+
Contributor that would be infringed, but for the grant of the
|
|
63
|
+
License, by the making, using, selling, offering for sale, having
|
|
64
|
+
made, import, or transfer of either its Contributions or its
|
|
65
|
+
Contributor Version.
|
|
66
|
+
|
|
67
|
+
1.12. "Secondary License"
|
|
68
|
+
means either the GNU General Public License, Version 2.0, the GNU
|
|
69
|
+
Lesser General Public License, Version 2.1, the GNU Affero General
|
|
70
|
+
Public License, Version 3.0, or any later versions of those
|
|
71
|
+
licenses.
|
|
72
|
+
|
|
73
|
+
1.13. "Source Code Form"
|
|
74
|
+
means the form of the work preferred for making modifications.
|
|
75
|
+
|
|
76
|
+
1.14. "You" (or "Your")
|
|
77
|
+
means an individual or a legal entity exercising rights under this
|
|
78
|
+
License. For legal entities, "You" includes any entity that
|
|
79
|
+
controls, is controlled by, or is under common control with You. For
|
|
80
|
+
purposes of this definition, "control" means (a) the power, direct
|
|
81
|
+
or indirect, to cause the direction or management of such entity,
|
|
82
|
+
whether by contract or otherwise, or (b) ownership of more than
|
|
83
|
+
fifty percent (50%) of the outstanding shares or beneficial
|
|
84
|
+
ownership of such entity.
|
|
85
|
+
|
|
86
|
+
2. License Grants and Conditions
|
|
87
|
+
--------------------------------
|
|
88
|
+
|
|
89
|
+
2.1. Grants
|
|
90
|
+
|
|
91
|
+
Each Contributor hereby grants You a world-wide, royalty-free,
|
|
92
|
+
non-exclusive license:
|
|
93
|
+
|
|
94
|
+
(a) under intellectual property rights (other than patent or trademark)
|
|
95
|
+
Licensable by such Contributor to use, reproduce, make available,
|
|
96
|
+
modify, display, perform, distribute, and otherwise exploit its
|
|
97
|
+
Contributions, either on an unmodified basis, with Modifications, or
|
|
98
|
+
as part of a Larger Work; and
|
|
99
|
+
|
|
100
|
+
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
|
101
|
+
for sale, have made, import, and otherwise transfer either its
|
|
102
|
+
Contributions or its Contributor Version.
|
|
103
|
+
|
|
104
|
+
2.2. Effective Date
|
|
105
|
+
|
|
106
|
+
The licenses granted in Section 2.1 with respect to any Contribution
|
|
107
|
+
become effective for each Contribution on the date the Contributor first
|
|
108
|
+
distributes such Contribution.
|
|
109
|
+
|
|
110
|
+
2.3. Limitations on Grant Scope
|
|
111
|
+
|
|
112
|
+
The licenses granted in this Section 2 are the only rights granted under
|
|
113
|
+
this License. No additional rights or licenses will be implied from the
|
|
114
|
+
distribution or licensing of Covered Software under this License.
|
|
115
|
+
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
|
116
|
+
Contributor:
|
|
117
|
+
|
|
118
|
+
(a) for any code that a Contributor has removed from Covered Software;
|
|
119
|
+
or
|
|
120
|
+
|
|
121
|
+
(b) for infringements caused by: (i) Your and any other third party's
|
|
122
|
+
modifications of Covered Software, or (ii) the combination of its
|
|
123
|
+
Contributions with other software (except as part of its Contributor
|
|
124
|
+
Version); or
|
|
125
|
+
|
|
126
|
+
(c) under Patent Claims infringed by Covered Software in the absence of
|
|
127
|
+
its Contributions.
|
|
128
|
+
|
|
129
|
+
This License does not grant any rights in the trademarks, service marks,
|
|
130
|
+
or logos of any Contributor (except as may be necessary to comply with
|
|
131
|
+
the notice requirements in Section 3.4).
|
|
132
|
+
|
|
133
|
+
2.4. Subsequent Licenses
|
|
134
|
+
|
|
135
|
+
No Contributor makes additional grants as a result of Your choice to
|
|
136
|
+
distribute the Covered Software under a subsequent version of this
|
|
137
|
+
License (see Section 10.2) or under the terms of a Secondary License (if
|
|
138
|
+
permitted under the terms of Section 3.3).
|
|
139
|
+
|
|
140
|
+
2.5. Representation
|
|
141
|
+
|
|
142
|
+
Each Contributor represents that the Contributor believes its
|
|
143
|
+
Contributions are its original creation(s) or it has sufficient rights
|
|
144
|
+
to grant the rights to its Contributions conveyed by this License.
|
|
145
|
+
|
|
146
|
+
2.6. Fair Use
|
|
147
|
+
|
|
148
|
+
This License is not intended to limit any rights You have under
|
|
149
|
+
applicable copyright doctrines of fair use, fair dealing, or other
|
|
150
|
+
equivalents.
|
|
151
|
+
|
|
152
|
+
2.7. Conditions
|
|
153
|
+
|
|
154
|
+
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
|
155
|
+
in Section 2.1.
|
|
156
|
+
|
|
157
|
+
3. Responsibilities
|
|
158
|
+
-------------------
|
|
159
|
+
|
|
160
|
+
3.1. Distribution of Source Form
|
|
161
|
+
|
|
162
|
+
All distribution of Covered Software in Source Code Form, including any
|
|
163
|
+
Modifications that You create or to which You contribute, must be under
|
|
164
|
+
the terms of this License. You must inform recipients that the Source
|
|
165
|
+
Code Form of the Covered Software is governed by the terms of this
|
|
166
|
+
License, and how they can obtain a copy of this License. You may not
|
|
167
|
+
attempt to alter or restrict the recipients' rights in the Source Code
|
|
168
|
+
Form.
|
|
169
|
+
|
|
170
|
+
3.2. Distribution of Executable Form
|
|
171
|
+
|
|
172
|
+
If You distribute Covered Software in Executable Form then:
|
|
173
|
+
|
|
174
|
+
(a) such Covered Software must also be made available in Source Code
|
|
175
|
+
Form, as described in Section 3.1, and You must inform recipients of
|
|
176
|
+
the Executable Form how they can obtain a copy of such Source Code
|
|
177
|
+
Form by reasonable means in a timely manner, at a charge no more
|
|
178
|
+
than the cost of distribution to the recipient; and
|
|
179
|
+
|
|
180
|
+
(b) You may distribute such Executable Form under the terms of this
|
|
181
|
+
License, or sublicense it under different terms, provided that the
|
|
182
|
+
license for the Executable Form does not attempt to limit or alter
|
|
183
|
+
the recipients' rights in the Source Code Form under this License.
|
|
184
|
+
|
|
185
|
+
3.3. Distribution of a Larger Work
|
|
186
|
+
|
|
187
|
+
You may create and distribute a Larger Work under terms of Your choice,
|
|
188
|
+
provided that You also comply with the requirements of this License for
|
|
189
|
+
the Covered Software. If the Larger Work is a combination of Covered
|
|
190
|
+
Software with a work governed by one or more Secondary Licenses, and the
|
|
191
|
+
Covered Software is not Incompatible With Secondary Licenses, this
|
|
192
|
+
License permits You to additionally distribute such Covered Software
|
|
193
|
+
under the terms of such Secondary License(s), so that the recipient of
|
|
194
|
+
the Larger Work may, at their option, further distribute the Covered
|
|
195
|
+
Software under the terms of either this License or such Secondary
|
|
196
|
+
License(s).
|
|
197
|
+
|
|
198
|
+
3.4. Notices
|
|
199
|
+
|
|
200
|
+
You may not remove or alter the substance of any license notices
|
|
201
|
+
(including copyright notices, patent notices, disclaimers of warranty,
|
|
202
|
+
or limitations of liability) contained within the Source Code Form of
|
|
203
|
+
the Covered Software, except that You may alter any license notices to
|
|
204
|
+
the extent required to remedy known factual inaccuracies.
|
|
205
|
+
|
|
206
|
+
3.5. Application of Additional Terms
|
|
207
|
+
|
|
208
|
+
You may choose to offer, and to charge a fee for, warranty, support,
|
|
209
|
+
indemnity or liability obligations to one or more recipients of Covered
|
|
210
|
+
Software. However, You may do so only on Your own behalf, and not on
|
|
211
|
+
behalf of any Contributor. You must make it absolutely clear that any
|
|
212
|
+
such warranty, support, indemnity, or liability obligation is offered by
|
|
213
|
+
You alone, and You hereby agree to indemnify every Contributor for any
|
|
214
|
+
liability incurred by such Contributor as a result of warranty, support,
|
|
215
|
+
indemnity or liability terms You offer. You may include additional
|
|
216
|
+
disclaimers of warranty and limitations of liability specific to any
|
|
217
|
+
jurisdiction.
|
|
218
|
+
|
|
219
|
+
4. Inability to Comply Due to Statute or Regulation
|
|
220
|
+
---------------------------------------------------
|
|
221
|
+
|
|
222
|
+
If it is impossible for You to comply with any of the terms of this
|
|
223
|
+
License with respect to some or all of the Covered Software due to
|
|
224
|
+
statute, judicial order, or regulation then You must: (a) comply with
|
|
225
|
+
the terms of this License to the maximum extent possible; and (b)
|
|
226
|
+
describe the limitations and the code they affect. Such description must
|
|
227
|
+
be placed in a text file included with all distributions of the Covered
|
|
228
|
+
Software under this License. Except to the extent prohibited by statute
|
|
229
|
+
or regulation, such description must be sufficiently detailed for a
|
|
230
|
+
recipient of ordinary skill to be able to understand it.
|
|
231
|
+
|
|
232
|
+
5. Termination
|
|
233
|
+
--------------
|
|
234
|
+
|
|
235
|
+
5.1. The rights granted under this License will terminate automatically
|
|
236
|
+
if You fail to comply with any of its terms. However, if You become
|
|
237
|
+
compliant, then the rights granted under this License from a particular
|
|
238
|
+
Contributor are reinstated (a) provisionally, unless and until such
|
|
239
|
+
Contributor explicitly and finally terminates Your grants, and (b) on an
|
|
240
|
+
ongoing basis, if such Contributor fails to notify You of the
|
|
241
|
+
non-compliance by some reasonable means prior to 60 days after You have
|
|
242
|
+
come back into compliance. Moreover, Your grants from a particular
|
|
243
|
+
Contributor are reinstated on an ongoing basis if such Contributor
|
|
244
|
+
notifies You of the non-compliance by some reasonable means, this is the
|
|
245
|
+
first time You have received notice of non-compliance with this License
|
|
246
|
+
from such Contributor, and You become compliant prior to 30 days after
|
|
247
|
+
Your receipt of the notice.
|
|
248
|
+
|
|
249
|
+
5.2. If You initiate litigation against any entity by asserting a patent
|
|
250
|
+
infringement claim (excluding declaratory judgment actions,
|
|
251
|
+
counter-claims, and cross-claims) alleging that a Contributor Version
|
|
252
|
+
directly or indirectly infringes any patent, then the rights granted to
|
|
253
|
+
You by any and all Contributors for the Covered Software under Section
|
|
254
|
+
2.1 of this License shall terminate.
|
|
255
|
+
|
|
256
|
+
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
|
257
|
+
end user license agreements (excluding distributors and resellers) which
|
|
258
|
+
have been validly granted by You or Your distributors under this License
|
|
259
|
+
prior to termination shall survive termination.
|
|
260
|
+
|
|
261
|
+
************************************************************************
|
|
262
|
+
* *
|
|
263
|
+
* 6. Disclaimer of Warranty *
|
|
264
|
+
* ------------------------- *
|
|
265
|
+
* *
|
|
266
|
+
* Covered Software is provided under this License on an "as is" *
|
|
267
|
+
* basis, without warranty of any kind, either expressed, implied, or *
|
|
268
|
+
* statutory, including, without limitation, warranties that the *
|
|
269
|
+
* Covered Software is free of defects, merchantable, fit for a *
|
|
270
|
+
* particular purpose or non-infringing. The entire risk as to the *
|
|
271
|
+
* quality and performance of the Covered Software is with You. *
|
|
272
|
+
* Should any Covered Software prove defective in any respect, You *
|
|
273
|
+
* (not any Contributor) assume the cost of any necessary servicing, *
|
|
274
|
+
* repair, or correction. This disclaimer of warranty constitutes an *
|
|
275
|
+
* essential part of this License. No use of any Covered Software is *
|
|
276
|
+
* authorized under this License except under this disclaimer. *
|
|
277
|
+
* *
|
|
278
|
+
************************************************************************
|
|
279
|
+
|
|
280
|
+
************************************************************************
|
|
281
|
+
* *
|
|
282
|
+
* 7. Limitation of Liability *
|
|
283
|
+
* -------------------------- *
|
|
284
|
+
* *
|
|
285
|
+
* Under no circumstances and under no legal theory, whether tort *
|
|
286
|
+
* (including negligence), contract, or otherwise, shall any *
|
|
287
|
+
* Contributor, or anyone who distributes Covered Software as *
|
|
288
|
+
* permitted above, be liable to You for any direct, indirect, *
|
|
289
|
+
* special, incidental, or consequential damages of any character *
|
|
290
|
+
* including, without limitation, damages for lost profits, loss of *
|
|
291
|
+
* goodwill, work stoppage, computer failure or malfunction, or any *
|
|
292
|
+
* and all other commercial damages or losses, even if such party *
|
|
293
|
+
* shall have been informed of the possibility of such damages. This *
|
|
294
|
+
* limitation of liability shall not apply to liability for death or *
|
|
295
|
+
* personal injury resulting from such party's negligence to the *
|
|
296
|
+
* extent applicable law prohibits such limitation. Some *
|
|
297
|
+
* jurisdictions do not allow the exclusion or limitation of *
|
|
298
|
+
* incidental or consequential damages, so this exclusion and *
|
|
299
|
+
* limitation may not apply to You. *
|
|
300
|
+
* *
|
|
301
|
+
************************************************************************
|
|
302
|
+
|
|
303
|
+
8. Litigation
|
|
304
|
+
-------------
|
|
305
|
+
|
|
306
|
+
Any litigation relating to this License may be brought only in the
|
|
307
|
+
courts of a jurisdiction where the defendant maintains its principal
|
|
308
|
+
place of business and such litigation shall be governed by laws of that
|
|
309
|
+
jurisdiction, without reference to its conflict-of-law provisions.
|
|
310
|
+
Nothing in this Section shall prevent a party's ability to bring
|
|
311
|
+
cross-claims or counter-claims.
|
|
312
|
+
|
|
313
|
+
9. Miscellaneous
|
|
314
|
+
----------------
|
|
315
|
+
|
|
316
|
+
This License represents the complete agreement concerning the subject
|
|
317
|
+
matter hereof. If any provision of this License is held to be
|
|
318
|
+
unenforceable, such provision shall be reformed only to the extent
|
|
319
|
+
necessary to make it enforceable. Any law or regulation which provides
|
|
320
|
+
that the language of a contract shall be construed against the drafter
|
|
321
|
+
shall not be used to construe this License against a Contributor.
|
|
322
|
+
|
|
323
|
+
10. Versions of the License
|
|
324
|
+
---------------------------
|
|
325
|
+
|
|
326
|
+
10.1. New Versions
|
|
327
|
+
|
|
328
|
+
Mozilla Foundation is the license steward. Except as provided in Section
|
|
329
|
+
10.3, no one other than the license steward has the right to modify or
|
|
330
|
+
publish new versions of this License. Each version will be given a
|
|
331
|
+
distinguishing version number.
|
|
332
|
+
|
|
333
|
+
10.2. Effect of New Versions
|
|
334
|
+
|
|
335
|
+
You may distribute the Covered Software under the terms of the version
|
|
336
|
+
of the License under which You originally received the Covered Software,
|
|
337
|
+
or under the terms of any subsequent version published by the license
|
|
338
|
+
steward.
|
|
339
|
+
|
|
340
|
+
10.3. Modified Versions
|
|
341
|
+
|
|
342
|
+
If you create software not governed by this License, and you want to
|
|
343
|
+
create a new license for such software, you may create and use a
|
|
344
|
+
modified version of this License if you rename the license and remove
|
|
345
|
+
any references to the name of the license steward (except to note that
|
|
346
|
+
such modified license differs from this License).
|
|
347
|
+
|
|
348
|
+
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
|
349
|
+
Licenses
|
|
350
|
+
|
|
351
|
+
If You choose to distribute Source Code Form that is Incompatible With
|
|
352
|
+
Secondary Licenses under the terms of this version of the License, the
|
|
353
|
+
notice described in Exhibit B of this License must be attached.
|
|
354
|
+
|
|
355
|
+
Exhibit A - Source Code Form License Notice
|
|
356
|
+
-------------------------------------------
|
|
357
|
+
|
|
358
|
+
This Source Code Form is subject to the terms of the Mozilla Public
|
|
359
|
+
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
360
|
+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
361
|
+
|
|
362
|
+
If it is not possible or desirable to put the notice in a particular
|
|
363
|
+
file, then You may include the notice in a location (such as a LICENSE
|
|
364
|
+
file in a relevant directory) where a recipient would be likely to look
|
|
365
|
+
for such a notice.
|
|
366
|
+
|
|
367
|
+
You may add additional accurate notices of copyright ownership.
|
|
368
|
+
|
|
369
|
+
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
|
370
|
+
---------------------------------------------------------
|
|
371
|
+
|
|
372
|
+
This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
373
|
+
defined by the Mozilla Public License, v. 2.0.
|
|
@@ -0,0 +1,432 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: yaas
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: A tool to split video soundtracks into separate tracks using OpenUnmix
|
|
5
|
+
Author-email: Gaël de Chalendar <kleagg@gmail.com>
|
|
6
|
+
License: Mozilla Public License Version 2.0
|
|
7
|
+
==================================
|
|
8
|
+
|
|
9
|
+
1. Definitions
|
|
10
|
+
--------------
|
|
11
|
+
|
|
12
|
+
1.1. "Contributor"
|
|
13
|
+
means each individual or legal entity that creates, contributes to
|
|
14
|
+
the creation of, or owns Covered Software.
|
|
15
|
+
|
|
16
|
+
1.2. "Contributor Version"
|
|
17
|
+
means the combination of the Contributions of others (if any) used
|
|
18
|
+
by a Contributor and that particular Contributor's Contribution.
|
|
19
|
+
|
|
20
|
+
1.3. "Contribution"
|
|
21
|
+
means Covered Software of a particular Contributor.
|
|
22
|
+
|
|
23
|
+
1.4. "Covered Software"
|
|
24
|
+
means Source Code Form to which the initial Contributor has attached
|
|
25
|
+
the notice in Exhibit A, the Executable Form of such Source Code
|
|
26
|
+
Form, and Modifications of such Source Code Form, in each case
|
|
27
|
+
including portions thereof.
|
|
28
|
+
|
|
29
|
+
1.5. "Incompatible With Secondary Licenses"
|
|
30
|
+
means
|
|
31
|
+
|
|
32
|
+
(a) that the initial Contributor has attached the notice described
|
|
33
|
+
in Exhibit B to the Covered Software; or
|
|
34
|
+
|
|
35
|
+
(b) that the Covered Software was made available under the terms of
|
|
36
|
+
version 1.1 or earlier of the License, but not also under the
|
|
37
|
+
terms of a Secondary License.
|
|
38
|
+
|
|
39
|
+
1.6. "Executable Form"
|
|
40
|
+
means any form of the work other than Source Code Form.
|
|
41
|
+
|
|
42
|
+
1.7. "Larger Work"
|
|
43
|
+
means a work that combines Covered Software with other material, in
|
|
44
|
+
a separate file or files, that is not Covered Software.
|
|
45
|
+
|
|
46
|
+
1.8. "License"
|
|
47
|
+
means this document.
|
|
48
|
+
|
|
49
|
+
1.9. "Licensable"
|
|
50
|
+
means having the right to grant, to the maximum extent possible,
|
|
51
|
+
whether at the time of the initial grant or subsequently, any and
|
|
52
|
+
all of the rights conveyed by this License.
|
|
53
|
+
|
|
54
|
+
1.10. "Modifications"
|
|
55
|
+
means any of the following:
|
|
56
|
+
|
|
57
|
+
(a) any file in Source Code Form that results from an addition to,
|
|
58
|
+
deletion from, or modification of the contents of Covered
|
|
59
|
+
Software; or
|
|
60
|
+
|
|
61
|
+
(b) any new file in Source Code Form that contains any Covered
|
|
62
|
+
Software.
|
|
63
|
+
|
|
64
|
+
1.11. "Patent Claims" of a Contributor
|
|
65
|
+
means any patent claim(s), including without limitation, method,
|
|
66
|
+
process, and apparatus claims, in any patent Licensable by such
|
|
67
|
+
Contributor that would be infringed, but for the grant of the
|
|
68
|
+
License, by the making, using, selling, offering for sale, having
|
|
69
|
+
made, import, or transfer of either its Contributions or its
|
|
70
|
+
Contributor Version.
|
|
71
|
+
|
|
72
|
+
1.12. "Secondary License"
|
|
73
|
+
means either the GNU General Public License, Version 2.0, the GNU
|
|
74
|
+
Lesser General Public License, Version 2.1, the GNU Affero General
|
|
75
|
+
Public License, Version 3.0, or any later versions of those
|
|
76
|
+
licenses.
|
|
77
|
+
|
|
78
|
+
1.13. "Source Code Form"
|
|
79
|
+
means the form of the work preferred for making modifications.
|
|
80
|
+
|
|
81
|
+
1.14. "You" (or "Your")
|
|
82
|
+
means an individual or a legal entity exercising rights under this
|
|
83
|
+
License. For legal entities, "You" includes any entity that
|
|
84
|
+
controls, is controlled by, or is under common control with You. For
|
|
85
|
+
purposes of this definition, "control" means (a) the power, direct
|
|
86
|
+
or indirect, to cause the direction or management of such entity,
|
|
87
|
+
whether by contract or otherwise, or (b) ownership of more than
|
|
88
|
+
fifty percent (50%) of the outstanding shares or beneficial
|
|
89
|
+
ownership of such entity.
|
|
90
|
+
|
|
91
|
+
2. License Grants and Conditions
|
|
92
|
+
--------------------------------
|
|
93
|
+
|
|
94
|
+
2.1. Grants
|
|
95
|
+
|
|
96
|
+
Each Contributor hereby grants You a world-wide, royalty-free,
|
|
97
|
+
non-exclusive license:
|
|
98
|
+
|
|
99
|
+
(a) under intellectual property rights (other than patent or trademark)
|
|
100
|
+
Licensable by such Contributor to use, reproduce, make available,
|
|
101
|
+
modify, display, perform, distribute, and otherwise exploit its
|
|
102
|
+
Contributions, either on an unmodified basis, with Modifications, or
|
|
103
|
+
as part of a Larger Work; and
|
|
104
|
+
|
|
105
|
+
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
|
106
|
+
for sale, have made, import, and otherwise transfer either its
|
|
107
|
+
Contributions or its Contributor Version.
|
|
108
|
+
|
|
109
|
+
2.2. Effective Date
|
|
110
|
+
|
|
111
|
+
The licenses granted in Section 2.1 with respect to any Contribution
|
|
112
|
+
become effective for each Contribution on the date the Contributor first
|
|
113
|
+
distributes such Contribution.
|
|
114
|
+
|
|
115
|
+
2.3. Limitations on Grant Scope
|
|
116
|
+
|
|
117
|
+
The licenses granted in this Section 2 are the only rights granted under
|
|
118
|
+
this License. No additional rights or licenses will be implied from the
|
|
119
|
+
distribution or licensing of Covered Software under this License.
|
|
120
|
+
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
|
121
|
+
Contributor:
|
|
122
|
+
|
|
123
|
+
(a) for any code that a Contributor has removed from Covered Software;
|
|
124
|
+
or
|
|
125
|
+
|
|
126
|
+
(b) for infringements caused by: (i) Your and any other third party's
|
|
127
|
+
modifications of Covered Software, or (ii) the combination of its
|
|
128
|
+
Contributions with other software (except as part of its Contributor
|
|
129
|
+
Version); or
|
|
130
|
+
|
|
131
|
+
(c) under Patent Claims infringed by Covered Software in the absence of
|
|
132
|
+
its Contributions.
|
|
133
|
+
|
|
134
|
+
This License does not grant any rights in the trademarks, service marks,
|
|
135
|
+
or logos of any Contributor (except as may be necessary to comply with
|
|
136
|
+
the notice requirements in Section 3.4).
|
|
137
|
+
|
|
138
|
+
2.4. Subsequent Licenses
|
|
139
|
+
|
|
140
|
+
No Contributor makes additional grants as a result of Your choice to
|
|
141
|
+
distribute the Covered Software under a subsequent version of this
|
|
142
|
+
License (see Section 10.2) or under the terms of a Secondary License (if
|
|
143
|
+
permitted under the terms of Section 3.3).
|
|
144
|
+
|
|
145
|
+
2.5. Representation
|
|
146
|
+
|
|
147
|
+
Each Contributor represents that the Contributor believes its
|
|
148
|
+
Contributions are its original creation(s) or it has sufficient rights
|
|
149
|
+
to grant the rights to its Contributions conveyed by this License.
|
|
150
|
+
|
|
151
|
+
2.6. Fair Use
|
|
152
|
+
|
|
153
|
+
This License is not intended to limit any rights You have under
|
|
154
|
+
applicable copyright doctrines of fair use, fair dealing, or other
|
|
155
|
+
equivalents.
|
|
156
|
+
|
|
157
|
+
2.7. Conditions
|
|
158
|
+
|
|
159
|
+
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
|
160
|
+
in Section 2.1.
|
|
161
|
+
|
|
162
|
+
3. Responsibilities
|
|
163
|
+
-------------------
|
|
164
|
+
|
|
165
|
+
3.1. Distribution of Source Form
|
|
166
|
+
|
|
167
|
+
All distribution of Covered Software in Source Code Form, including any
|
|
168
|
+
Modifications that You create or to which You contribute, must be under
|
|
169
|
+
the terms of this License. You must inform recipients that the Source
|
|
170
|
+
Code Form of the Covered Software is governed by the terms of this
|
|
171
|
+
License, and how they can obtain a copy of this License. You may not
|
|
172
|
+
attempt to alter or restrict the recipients' rights in the Source Code
|
|
173
|
+
Form.
|
|
174
|
+
|
|
175
|
+
3.2. Distribution of Executable Form
|
|
176
|
+
|
|
177
|
+
If You distribute Covered Software in Executable Form then:
|
|
178
|
+
|
|
179
|
+
(a) such Covered Software must also be made available in Source Code
|
|
180
|
+
Form, as described in Section 3.1, and You must inform recipients of
|
|
181
|
+
the Executable Form how they can obtain a copy of such Source Code
|
|
182
|
+
Form by reasonable means in a timely manner, at a charge no more
|
|
183
|
+
than the cost of distribution to the recipient; and
|
|
184
|
+
|
|
185
|
+
(b) You may distribute such Executable Form under the terms of this
|
|
186
|
+
License, or sublicense it under different terms, provided that the
|
|
187
|
+
license for the Executable Form does not attempt to limit or alter
|
|
188
|
+
the recipients' rights in the Source Code Form under this License.
|
|
189
|
+
|
|
190
|
+
3.3. Distribution of a Larger Work
|
|
191
|
+
|
|
192
|
+
You may create and distribute a Larger Work under terms of Your choice,
|
|
193
|
+
provided that You also comply with the requirements of this License for
|
|
194
|
+
the Covered Software. If the Larger Work is a combination of Covered
|
|
195
|
+
Software with a work governed by one or more Secondary Licenses, and the
|
|
196
|
+
Covered Software is not Incompatible With Secondary Licenses, this
|
|
197
|
+
License permits You to additionally distribute such Covered Software
|
|
198
|
+
under the terms of such Secondary License(s), so that the recipient of
|
|
199
|
+
the Larger Work may, at their option, further distribute the Covered
|
|
200
|
+
Software under the terms of either this License or such Secondary
|
|
201
|
+
License(s).
|
|
202
|
+
|
|
203
|
+
3.4. Notices
|
|
204
|
+
|
|
205
|
+
You may not remove or alter the substance of any license notices
|
|
206
|
+
(including copyright notices, patent notices, disclaimers of warranty,
|
|
207
|
+
or limitations of liability) contained within the Source Code Form of
|
|
208
|
+
the Covered Software, except that You may alter any license notices to
|
|
209
|
+
the extent required to remedy known factual inaccuracies.
|
|
210
|
+
|
|
211
|
+
3.5. Application of Additional Terms
|
|
212
|
+
|
|
213
|
+
You may choose to offer, and to charge a fee for, warranty, support,
|
|
214
|
+
indemnity or liability obligations to one or more recipients of Covered
|
|
215
|
+
Software. However, You may do so only on Your own behalf, and not on
|
|
216
|
+
behalf of any Contributor. You must make it absolutely clear that any
|
|
217
|
+
such warranty, support, indemnity, or liability obligation is offered by
|
|
218
|
+
You alone, and You hereby agree to indemnify every Contributor for any
|
|
219
|
+
liability incurred by such Contributor as a result of warranty, support,
|
|
220
|
+
indemnity or liability terms You offer. You may include additional
|
|
221
|
+
disclaimers of warranty and limitations of liability specific to any
|
|
222
|
+
jurisdiction.
|
|
223
|
+
|
|
224
|
+
4. Inability to Comply Due to Statute or Regulation
|
|
225
|
+
---------------------------------------------------
|
|
226
|
+
|
|
227
|
+
If it is impossible for You to comply with any of the terms of this
|
|
228
|
+
License with respect to some or all of the Covered Software due to
|
|
229
|
+
statute, judicial order, or regulation then You must: (a) comply with
|
|
230
|
+
the terms of this License to the maximum extent possible; and (b)
|
|
231
|
+
describe the limitations and the code they affect. Such description must
|
|
232
|
+
be placed in a text file included with all distributions of the Covered
|
|
233
|
+
Software under this License. Except to the extent prohibited by statute
|
|
234
|
+
or regulation, such description must be sufficiently detailed for a
|
|
235
|
+
recipient of ordinary skill to be able to understand it.
|
|
236
|
+
|
|
237
|
+
5. Termination
|
|
238
|
+
--------------
|
|
239
|
+
|
|
240
|
+
5.1. The rights granted under this License will terminate automatically
|
|
241
|
+
if You fail to comply with any of its terms. However, if You become
|
|
242
|
+
compliant, then the rights granted under this License from a particular
|
|
243
|
+
Contributor are reinstated (a) provisionally, unless and until such
|
|
244
|
+
Contributor explicitly and finally terminates Your grants, and (b) on an
|
|
245
|
+
ongoing basis, if such Contributor fails to notify You of the
|
|
246
|
+
non-compliance by some reasonable means prior to 60 days after You have
|
|
247
|
+
come back into compliance. Moreover, Your grants from a particular
|
|
248
|
+
Contributor are reinstated on an ongoing basis if such Contributor
|
|
249
|
+
notifies You of the non-compliance by some reasonable means, this is the
|
|
250
|
+
first time You have received notice of non-compliance with this License
|
|
251
|
+
from such Contributor, and You become compliant prior to 30 days after
|
|
252
|
+
Your receipt of the notice.
|
|
253
|
+
|
|
254
|
+
5.2. If You initiate litigation against any entity by asserting a patent
|
|
255
|
+
infringement claim (excluding declaratory judgment actions,
|
|
256
|
+
counter-claims, and cross-claims) alleging that a Contributor Version
|
|
257
|
+
directly or indirectly infringes any patent, then the rights granted to
|
|
258
|
+
You by any and all Contributors for the Covered Software under Section
|
|
259
|
+
2.1 of this License shall terminate.
|
|
260
|
+
|
|
261
|
+
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
|
262
|
+
end user license agreements (excluding distributors and resellers) which
|
|
263
|
+
have been validly granted by You or Your distributors under this License
|
|
264
|
+
prior to termination shall survive termination.
|
|
265
|
+
|
|
266
|
+
************************************************************************
|
|
267
|
+
* *
|
|
268
|
+
* 6. Disclaimer of Warranty *
|
|
269
|
+
* ------------------------- *
|
|
270
|
+
* *
|
|
271
|
+
* Covered Software is provided under this License on an "as is" *
|
|
272
|
+
* basis, without warranty of any kind, either expressed, implied, or *
|
|
273
|
+
* statutory, including, without limitation, warranties that the *
|
|
274
|
+
* Covered Software is free of defects, merchantable, fit for a *
|
|
275
|
+
* particular purpose or non-infringing. The entire risk as to the *
|
|
276
|
+
* quality and performance of the Covered Software is with You. *
|
|
277
|
+
* Should any Covered Software prove defective in any respect, You *
|
|
278
|
+
* (not any Contributor) assume the cost of any necessary servicing, *
|
|
279
|
+
* repair, or correction. This disclaimer of warranty constitutes an *
|
|
280
|
+
* essential part of this License. No use of any Covered Software is *
|
|
281
|
+
* authorized under this License except under this disclaimer. *
|
|
282
|
+
* *
|
|
283
|
+
************************************************************************
|
|
284
|
+
|
|
285
|
+
************************************************************************
|
|
286
|
+
* *
|
|
287
|
+
* 7. Limitation of Liability *
|
|
288
|
+
* -------------------------- *
|
|
289
|
+
* *
|
|
290
|
+
* Under no circumstances and under no legal theory, whether tort *
|
|
291
|
+
* (including negligence), contract, or otherwise, shall any *
|
|
292
|
+
* Contributor, or anyone who distributes Covered Software as *
|
|
293
|
+
* permitted above, be liable to You for any direct, indirect, *
|
|
294
|
+
* special, incidental, or consequential damages of any character *
|
|
295
|
+
* including, without limitation, damages for lost profits, loss of *
|
|
296
|
+
* goodwill, work stoppage, computer failure or malfunction, or any *
|
|
297
|
+
* and all other commercial damages or losses, even if such party *
|
|
298
|
+
* shall have been informed of the possibility of such damages. This *
|
|
299
|
+
* limitation of liability shall not apply to liability for death or *
|
|
300
|
+
* personal injury resulting from such party's negligence to the *
|
|
301
|
+
* extent applicable law prohibits such limitation. Some *
|
|
302
|
+
* jurisdictions do not allow the exclusion or limitation of *
|
|
303
|
+
* incidental or consequential damages, so this exclusion and *
|
|
304
|
+
* limitation may not apply to You. *
|
|
305
|
+
* *
|
|
306
|
+
************************************************************************
|
|
307
|
+
|
|
308
|
+
8. Litigation
|
|
309
|
+
-------------
|
|
310
|
+
|
|
311
|
+
Any litigation relating to this License may be brought only in the
|
|
312
|
+
courts of a jurisdiction where the defendant maintains its principal
|
|
313
|
+
place of business and such litigation shall be governed by laws of that
|
|
314
|
+
jurisdiction, without reference to its conflict-of-law provisions.
|
|
315
|
+
Nothing in this Section shall prevent a party's ability to bring
|
|
316
|
+
cross-claims or counter-claims.
|
|
317
|
+
|
|
318
|
+
9. Miscellaneous
|
|
319
|
+
----------------
|
|
320
|
+
|
|
321
|
+
This License represents the complete agreement concerning the subject
|
|
322
|
+
matter hereof. If any provision of this License is held to be
|
|
323
|
+
unenforceable, such provision shall be reformed only to the extent
|
|
324
|
+
necessary to make it enforceable. Any law or regulation which provides
|
|
325
|
+
that the language of a contract shall be construed against the drafter
|
|
326
|
+
shall not be used to construe this License against a Contributor.
|
|
327
|
+
|
|
328
|
+
10. Versions of the License
|
|
329
|
+
---------------------------
|
|
330
|
+
|
|
331
|
+
10.1. New Versions
|
|
332
|
+
|
|
333
|
+
Mozilla Foundation is the license steward. Except as provided in Section
|
|
334
|
+
10.3, no one other than the license steward has the right to modify or
|
|
335
|
+
publish new versions of this License. Each version will be given a
|
|
336
|
+
distinguishing version number.
|
|
337
|
+
|
|
338
|
+
10.2. Effect of New Versions
|
|
339
|
+
|
|
340
|
+
You may distribute the Covered Software under the terms of the version
|
|
341
|
+
of the License under which You originally received the Covered Software,
|
|
342
|
+
or under the terms of any subsequent version published by the license
|
|
343
|
+
steward.
|
|
344
|
+
|
|
345
|
+
10.3. Modified Versions
|
|
346
|
+
|
|
347
|
+
If you create software not governed by this License, and you want to
|
|
348
|
+
create a new license for such software, you may create and use a
|
|
349
|
+
modified version of this License if you rename the license and remove
|
|
350
|
+
any references to the name of the license steward (except to note that
|
|
351
|
+
such modified license differs from this License).
|
|
352
|
+
|
|
353
|
+
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
|
354
|
+
Licenses
|
|
355
|
+
|
|
356
|
+
If You choose to distribute Source Code Form that is Incompatible With
|
|
357
|
+
Secondary Licenses under the terms of this version of the License, the
|
|
358
|
+
notice described in Exhibit B of this License must be attached.
|
|
359
|
+
|
|
360
|
+
Exhibit A - Source Code Form License Notice
|
|
361
|
+
-------------------------------------------
|
|
362
|
+
|
|
363
|
+
This Source Code Form is subject to the terms of the Mozilla Public
|
|
364
|
+
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
365
|
+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
366
|
+
|
|
367
|
+
If it is not possible or desirable to put the notice in a particular
|
|
368
|
+
file, then You may include the notice in a location (such as a LICENSE
|
|
369
|
+
file in a relevant directory) where a recipient would be likely to look
|
|
370
|
+
for such a notice.
|
|
371
|
+
|
|
372
|
+
You may add additional accurate notices of copyright ownership.
|
|
373
|
+
|
|
374
|
+
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
|
375
|
+
---------------------------------------------------------
|
|
376
|
+
|
|
377
|
+
This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
378
|
+
defined by the Mozilla Public License, v. 2.0.
|
|
379
|
+
|
|
380
|
+
Project-URL: Homepage, https://github.com/kleag/yaas
|
|
381
|
+
Keywords: audio,video,track,split,gui,qt
|
|
382
|
+
Classifier: Programming Language :: Python :: 3
|
|
383
|
+
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
|
384
|
+
Classifier: Operating System :: OS Independent
|
|
385
|
+
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
386
|
+
Classifier: Topic :: Multimedia :: Sound/Audio :: Capture/Recording
|
|
387
|
+
Classifier: Topic :: Multimedia :: Sound/Audio :: Conversion
|
|
388
|
+
Classifier: Topic :: Multimedia :: Video
|
|
389
|
+
Classifier: Topic :: Multimedia :: Video :: Conversion
|
|
390
|
+
Requires-Python: >=3.9
|
|
391
|
+
Description-Content-Type: text/markdown
|
|
392
|
+
License-File: LICENSE
|
|
393
|
+
Requires-Dist: PySide6 >=6.7.1
|
|
394
|
+
Requires-Dist: pydub >=0.25.1
|
|
395
|
+
Requires-Dist: torch >=2.3.1
|
|
396
|
+
Requires-Dist: torchaudio >=2.3.1
|
|
397
|
+
Requires-Dist: openunmix >=1.3.0
|
|
398
|
+
Requires-Dist: pytube >=15.0.0
|
|
399
|
+
Requires-Dist: moviepy >=1.0.3
|
|
400
|
+
|
|
401
|
+
# Yet Another Audio Splitter
|
|
402
|
+
|
|
403
|
+
This is Yaas 0.1.0, a tool to split video soundtracks into separate tracks
|
|
404
|
+
using OpenUnmix.
|
|
405
|
+
|
|
406
|
+
## Installation
|
|
407
|
+
|
|
408
|
+
```bash
|
|
409
|
+
pip install yaas
|
|
410
|
+
```
|
|
411
|
+
|
|
412
|
+
## Usage
|
|
413
|
+
|
|
414
|
+
Just run
|
|
415
|
+
|
|
416
|
+
```
|
|
417
|
+
yaas
|
|
418
|
+
```
|
|
419
|
+
|
|
420
|
+
Paste the URL of a YouTube video, wait, and then use the generated audio files.
|
|
421
|
+
Note that you must respect the copyright of the authors. E.g., If they don't
|
|
422
|
+
authorize sharing, you must keep your private copy for you.
|
|
423
|
+
|
|
424
|
+
## Author
|
|
425
|
+
|
|
426
|
+
Gaël de Chalendar, aka Kleag
|
|
427
|
+
(c) Gaël de Chalendar, 2024
|
|
428
|
+
|
|
429
|
+
This program is free software, licensed under the Mozilla Public License 2.0
|
|
430
|
+
(MPL 2.0) license (see the LICENSE file). It includes most of the
|
|
431
|
+
youtube-to-mp3 project (https://github.com/cedricouellet/youtube-to-mp3),
|
|
432
|
+
itself under the MPL license.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
__init__.py,sha256=J4gQYqYJohjBbP_zSup5JUXx_hWj3bQHHBF03QCb1eE,8
|
|
2
|
+
__main__.py,sha256=1NeKRu8MG_vHFg_rWra-oeLEZDXA_fk8_fGInwduDKY,104
|
|
3
|
+
yaas.py,sha256=_DQWbVRJpRbQEU6u2wWS9PWsw-36rEEOz4LVa_XgPak,6636
|
|
4
|
+
yturl2mp3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
yturl2mp3/__main__.py,sha256=GcXJXb2ijsyjg8zgOdtl37XgJSNVD-FSpGDJkabM3w0,117
|
|
6
|
+
yturl2mp3/config.py,sha256=4e6ap5HJhdt99sgCZzaP8mKJwj1kmSm4tb4a2Ep9xy0,577
|
|
7
|
+
yturl2mp3/helpers.py,sha256=aZeER-S2QeeobUVvX30t0U7rrGjpJVbwItLYV-DbBWI,2267
|
|
8
|
+
yturl2mp3/yturl2mp3.py,sha256=Jgt56DFtkd_QVC-bzq8oAInqeVhtvi8XAgWxNeVt1Mo,3243
|
|
9
|
+
yaas-0.1.2.dist-info/LICENSE,sha256=HyVuytGSiAUQ6ErWBHTqt1iSGHhLmlC8fO7jTCuR8dU,16725
|
|
10
|
+
yaas-0.1.2.dist-info/METADATA,sha256=3KUu2h3Tu3092pttAfvBa8Q3Ge8OsOkM8jrD1qUQoKY,21481
|
|
11
|
+
yaas-0.1.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
12
|
+
yaas-0.1.2.dist-info/entry_points.txt,sha256=ynU5KXr9e7ZTTBJGnVpnAL2FpJzBFtGpLez22Yhqezw,39
|
|
13
|
+
yaas-0.1.2.dist-info/top_level.txt,sha256=4TfqVsM2BXakaYWsteao6ifBVKhKOkqokxVWfC2HrC8,33
|
|
14
|
+
yaas-0.1.2.dist-info/RECORD,,
|
yaas.py
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import argparse
|
|
2
|
+
import sys
|
|
3
|
+
import os
|
|
4
|
+
from PySide6.QtWidgets import (QApplication, QWidget, QVBoxLayout, QLabel,
|
|
5
|
+
QLineEdit, QPushButton, QTextEdit, QMessageBox)
|
|
6
|
+
from PySide6.QtCore import QThread, Signal
|
|
7
|
+
import subprocess
|
|
8
|
+
from pytube import YouTube, Playlist
|
|
9
|
+
from pydub import AudioSegment
|
|
10
|
+
import torch
|
|
11
|
+
import torchaudio
|
|
12
|
+
import os
|
|
13
|
+
import openunmix
|
|
14
|
+
from openunmix.predict import separate
|
|
15
|
+
from typing import NoReturn
|
|
16
|
+
from yturl2mp3.config import Config
|
|
17
|
+
from yturl2mp3.helpers import (convert_mp4_to_mp3, download_mp3,
|
|
18
|
+
is_valid_playlist_url, is_valid_video_url)
|
|
19
|
+
|
|
20
|
+
class Worker(QThread):
|
|
21
|
+
update_status = Signal(str)
|
|
22
|
+
ex_exit = Signal(BaseException, int)
|
|
23
|
+
|
|
24
|
+
def __init__(self, url, out):
|
|
25
|
+
super().__init__()
|
|
26
|
+
self.url = url
|
|
27
|
+
self.out = out
|
|
28
|
+
|
|
29
|
+
def run(self):
|
|
30
|
+
self.update_status.emit("Downloading audio...")
|
|
31
|
+
mp3_path = self.download_audio(self.url)
|
|
32
|
+
if not mp3_path:
|
|
33
|
+
return
|
|
34
|
+
self.update_status.emit(f"Downloaded: {mp3_path}")
|
|
35
|
+
|
|
36
|
+
flac_path = mp3_path.replace('.mp3', '.flac')
|
|
37
|
+
self.update_status.emit(f"Converting {mp3_path} to {flac_path}...")
|
|
38
|
+
self.convert_to_flac(mp3_path, flac_path)
|
|
39
|
+
self.update_status.emit(f"Converted to FLAC: {flac_path}")
|
|
40
|
+
|
|
41
|
+
self.update_status.emit("Extracting tracks...")
|
|
42
|
+
self.extract_tracks(flac_path)
|
|
43
|
+
self.update_status.emit("Extraction complete")
|
|
44
|
+
|
|
45
|
+
def download_audio(self, url):
|
|
46
|
+
filename = ""
|
|
47
|
+
try:
|
|
48
|
+
if not os.path.exists(self.out):
|
|
49
|
+
os.mkdir(self.out)
|
|
50
|
+
self.update_status.emit('Output directory created')
|
|
51
|
+
|
|
52
|
+
if is_valid_video_url(url):
|
|
53
|
+
self.update_status.emit('Single YouTube video Detected. Initializing...')
|
|
54
|
+
|
|
55
|
+
video = YouTube(url)
|
|
56
|
+
config = Config(out_dir=self.out, timeout=5000, max_retries=3)
|
|
57
|
+
path = download_mp3(video, config)
|
|
58
|
+
|
|
59
|
+
self.update_status.emit('Converting video to MP3 File...')
|
|
60
|
+
|
|
61
|
+
filename = convert_mp4_to_mp3(path)
|
|
62
|
+
|
|
63
|
+
self.update_status.emit('Conversion complete...')
|
|
64
|
+
elif is_valid_playlist_url(url):
|
|
65
|
+
self.update_status.emit('YouTube playlist Detected. Initializing...')
|
|
66
|
+
|
|
67
|
+
playlist = Playlist(url)
|
|
68
|
+
for video in playlist.videos:
|
|
69
|
+
path = download_mp3(video, config)
|
|
70
|
+
|
|
71
|
+
self.update_status.emit(f'Converting video {video} to MP3 File...')
|
|
72
|
+
|
|
73
|
+
filename = convert_mp4_to_mp3(path)
|
|
74
|
+
|
|
75
|
+
self.update_status.emit('Conversion complete. Moving on to next...')
|
|
76
|
+
self.update_status.emit(
|
|
77
|
+
f'All videos converted. Enjoy your new MP3 files in {config.out_dir}!')
|
|
78
|
+
else:
|
|
79
|
+
raise ValueError('The given url is not a valid YouTube link')
|
|
80
|
+
except BaseException as ex:
|
|
81
|
+
self.ex_exit.emit(ex, 1)
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
return filename
|
|
85
|
+
|
|
86
|
+
def convert_to_flac(self, mp3_path, flac_path):
|
|
87
|
+
try:
|
|
88
|
+
audio = AudioSegment.from_mp3(mp3_path)
|
|
89
|
+
audio.export(flac_path, format="flac")
|
|
90
|
+
except BaseException as ex:
|
|
91
|
+
self.ex_exit.emit(ex, 1)
|
|
92
|
+
|
|
93
|
+
def extract_tracks(self, flac_path):
|
|
94
|
+
try:
|
|
95
|
+
# Load the model
|
|
96
|
+
model = openunmix.umxl()
|
|
97
|
+
|
|
98
|
+
# Load the audio file
|
|
99
|
+
waveform, sample_rate = torchaudio.load(flac_path)
|
|
100
|
+
waveform = waveform.mean(dim=0, keepdim=True) # Convert to mono
|
|
101
|
+
|
|
102
|
+
# Perform source separation
|
|
103
|
+
estimates = separate(
|
|
104
|
+
waveform,
|
|
105
|
+
rate=44100,
|
|
106
|
+
# model_str_or_path="umxl",
|
|
107
|
+
# targets=None,
|
|
108
|
+
# niter=1,
|
|
109
|
+
# residual=False,
|
|
110
|
+
# wiener_win_len=300,
|
|
111
|
+
# aggregate_dict=None,
|
|
112
|
+
# separator=None,
|
|
113
|
+
# device=None,
|
|
114
|
+
# filterbank="torch",
|
|
115
|
+
)
|
|
116
|
+
|
|
117
|
+
# Save each estimated source
|
|
118
|
+
for source, estimate in estimates.items():
|
|
119
|
+
output_path = f"{os.path.splitext(flac_path)[0]}_{source}.wav"
|
|
120
|
+
torchaudio.save(
|
|
121
|
+
output_path,
|
|
122
|
+
torch.squeeze(estimate).to("cpu"),
|
|
123
|
+
sample_rate= sample_rate,
|
|
124
|
+
)
|
|
125
|
+
except BaseException as ex:
|
|
126
|
+
self.ex_exit.emit(ex, 1)
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
class MainWindow(QWidget):
|
|
132
|
+
def __init__(self):
|
|
133
|
+
super().__init__()
|
|
134
|
+
|
|
135
|
+
self.args = self.parse_args()
|
|
136
|
+
|
|
137
|
+
self.setWindowTitle("YouTube Audio Splitter")
|
|
138
|
+
self.setGeometry(100, 100, 400, 200)
|
|
139
|
+
|
|
140
|
+
self.layout = QVBoxLayout()
|
|
141
|
+
|
|
142
|
+
self.label = QLabel("Enter YouTube URL:")
|
|
143
|
+
self.layout.addWidget(self.label)
|
|
144
|
+
|
|
145
|
+
self.url_input = QLineEdit()
|
|
146
|
+
self.layout.addWidget(self.url_input)
|
|
147
|
+
|
|
148
|
+
self.start_button = QPushButton("Start")
|
|
149
|
+
self.start_button.clicked.connect(self.start_process)
|
|
150
|
+
self.layout.addWidget(self.start_button)
|
|
151
|
+
|
|
152
|
+
self.status_output = QTextEdit()
|
|
153
|
+
self.status_output.setReadOnly(True)
|
|
154
|
+
self.layout.addWidget(self.status_output)
|
|
155
|
+
|
|
156
|
+
self.setLayout(self.layout)
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
def parse_args(self) -> argparse.Namespace:
|
|
160
|
+
"""
|
|
161
|
+
Parse the command line arguments
|
|
162
|
+
|
|
163
|
+
:return: The parsed argument namespace
|
|
164
|
+
"""
|
|
165
|
+
description = 'Youtube To MP3 Download Tool'
|
|
166
|
+
parser = argparse.ArgumentParser(description=description)
|
|
167
|
+
|
|
168
|
+
parser.add_argument('-o', '--out', metavar="DIR", type=str, default='mp3',
|
|
169
|
+
help="The directory in which to store the downloaded MP3 files.")
|
|
170
|
+
|
|
171
|
+
return parser.parse_args()
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
def start_process(self):
|
|
175
|
+
url = self.url_input.text()
|
|
176
|
+
if url:
|
|
177
|
+
self.worker = Worker(url, self.args.out)
|
|
178
|
+
self.worker.update_status.connect(self.update_status)
|
|
179
|
+
self.worker.ex_exit.connect(self.ex_exit)
|
|
180
|
+
self.worker.start()
|
|
181
|
+
|
|
182
|
+
def update_status(self, message):
|
|
183
|
+
self.status_output.append(message)
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
def ex_exit(self, ex: BaseException, exit_code: int = 1) -> NoReturn:
|
|
187
|
+
"""
|
|
188
|
+
Exit with an exception
|
|
189
|
+
|
|
190
|
+
:param ex: The exception being thrown
|
|
191
|
+
:param exit_code: The exit code of the program
|
|
192
|
+
"""
|
|
193
|
+
QMessageBox.critical(
|
|
194
|
+
self,
|
|
195
|
+
"Fatal Error",
|
|
196
|
+
f"Exception: {ex}.")
|
|
197
|
+
sys.exit(exit_code)
|
|
198
|
+
|
|
199
|
+
def main():
|
|
200
|
+
app = QApplication(sys.argv)
|
|
201
|
+
|
|
202
|
+
main_window = MainWindow()
|
|
203
|
+
main_window.show()
|
|
204
|
+
|
|
205
|
+
sys.exit(app.exec())
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
if __name__ == "__main__":
|
|
209
|
+
main()
|
yturl2mp3/__init__.py
ADDED
|
File without changes
|
yturl2mp3/__main__.py
ADDED
yturl2mp3/config.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""yturl2mp3.config: Configuration settings object"""
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class Config:
|
|
5
|
+
"""The configuration settings for downloading a video."""
|
|
6
|
+
|
|
7
|
+
def __init__(self, out_dir: str, timeout: int, max_retries: int) -> None:
|
|
8
|
+
"""
|
|
9
|
+
Constructor
|
|
10
|
+
|
|
11
|
+
:param out_dir: The directory in which to store the downloaded MP3 files.
|
|
12
|
+
:param timeout: Request timeout length in seconds
|
|
13
|
+
:param max_retries: Number of retries on failed download
|
|
14
|
+
"""
|
|
15
|
+
self.out_dir: str = out_dir
|
|
16
|
+
self.timeout: int = timeout
|
|
17
|
+
self.max_retries: int = max_retries
|
yturl2mp3/helpers.py
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"""yturl2mp3.helpers: Helper functions and classes for the main yturl2mp3 program."""
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
from .config import Config
|
|
5
|
+
import re
|
|
6
|
+
import os
|
|
7
|
+
from moviepy import editor
|
|
8
|
+
from pytube import YouTube
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
YOUTUBE_URL = 'https://www.youtube.com'
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def download_mp3(video: YouTube, config: Config) -> str:
|
|
15
|
+
"""
|
|
16
|
+
Downloads the audio of a YouTube video in MP3 format.
|
|
17
|
+
|
|
18
|
+
:param video: The video from which to download the audio
|
|
19
|
+
:param config: The configuration settings for the download
|
|
20
|
+
:return: The path of the newly created mp4 file
|
|
21
|
+
"""
|
|
22
|
+
# returns the mp4 only containing audio
|
|
23
|
+
stream = video.streams.get_lowest_resolution()
|
|
24
|
+
stream.download(output_path=config.out_dir, timeout=config.timeout, max_retries=config.max_retries,
|
|
25
|
+
skip_existing=True)
|
|
26
|
+
mp4_path = config.out_dir + '/' + stream.default_filename
|
|
27
|
+
return mp4_path
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def convert_mp4_to_mp3(path: str, delete_after: bool = True) -> str:
|
|
31
|
+
"""
|
|
32
|
+
Converts an mp4 file to an mp3 file
|
|
33
|
+
|
|
34
|
+
:param path: The path of the mp4 file
|
|
35
|
+
:param delete_after: If false, the mp4 file will not be deleted after conversion
|
|
36
|
+
:return: The path of the newly created mp3 file
|
|
37
|
+
"""
|
|
38
|
+
mp3_path = f'{path[:-3]}mp3' # changes "mp4" to "mp3"
|
|
39
|
+
mp4 = editor.VideoFileClip(path)
|
|
40
|
+
|
|
41
|
+
mp3 = mp4.audio
|
|
42
|
+
mp3.write_audiofile(mp3_path)
|
|
43
|
+
|
|
44
|
+
mp3.close()
|
|
45
|
+
mp4.close()
|
|
46
|
+
|
|
47
|
+
if delete_after:
|
|
48
|
+
os.remove(path)
|
|
49
|
+
return mp3_path
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def is_valid_video_url(url: str) -> bool:
|
|
53
|
+
"""
|
|
54
|
+
Determines if the url is a valid YouTube video link
|
|
55
|
+
|
|
56
|
+
Example of a valid url:
|
|
57
|
+
`https://www.youtube.<COUNTRY_CODE>/watch?v=<VIDEO_ID>`
|
|
58
|
+
|
|
59
|
+
:param url: The url pointing to the YouTube video
|
|
60
|
+
:return: True if the url is valid, otherwise false
|
|
61
|
+
"""
|
|
62
|
+
return None is not re.match('https:\/\/www\.youtube\.[a-z]{2,}\/watch\?v=([A-Za-z0-9-_\&]+)', url)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def is_valid_playlist_url(url: str) -> bool:
|
|
66
|
+
"""
|
|
67
|
+
Determines if the url is a valid YouTube playlist link
|
|
68
|
+
|
|
69
|
+
Example of a valid url:
|
|
70
|
+
`https://www.youtube.<COUNTRY_CODE>/playlist?list=<PLAYLIST_ID>`
|
|
71
|
+
|
|
72
|
+
:param url: The url to validate
|
|
73
|
+
:return: True if the url is valid, otherwise false.
|
|
74
|
+
"""
|
|
75
|
+
return None is not re.match('https:\/\/www\.youtube\.[a-z]{2,}\/playlist\?list=([A-Za-z0-9-_\&]+)', url)
|
yturl2mp3/yturl2mp3.py
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
"""ytmp3.yturl2mp3: provides entry point main()."""
|
|
2
|
+
|
|
3
|
+
__version__ = "0.4.1"
|
|
4
|
+
|
|
5
|
+
import sys
|
|
6
|
+
import os
|
|
7
|
+
import argparse
|
|
8
|
+
import colorama
|
|
9
|
+
from colorama import Fore
|
|
10
|
+
from typing import NoReturn
|
|
11
|
+
from .config import Config
|
|
12
|
+
from .helpers import convert_mp4_to_mp3, download_mp3, is_valid_playlist_url, is_valid_video_url
|
|
13
|
+
from pytube import YouTube, Playlist
|
|
14
|
+
|
|
15
|
+
colorama.init()
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def main() -> None:
|
|
19
|
+
"""The main function of the script"""
|
|
20
|
+
args = parse_args()
|
|
21
|
+
url = args.url
|
|
22
|
+
|
|
23
|
+
config = Config(out_dir=args.out, timeout=args.timeout,
|
|
24
|
+
max_retries=args.retry)
|
|
25
|
+
|
|
26
|
+
try:
|
|
27
|
+
if not os.path.exists(config.out_dir):
|
|
28
|
+
os.mkdir(config.out_dir)
|
|
29
|
+
log_info('Output directory created')
|
|
30
|
+
|
|
31
|
+
if is_valid_video_url(url):
|
|
32
|
+
log_info('Single YouTube video Detected. Initializing...')
|
|
33
|
+
|
|
34
|
+
video = YouTube(url)
|
|
35
|
+
path = download_mp3(video, config)
|
|
36
|
+
|
|
37
|
+
log_info('Converting video to MP3 File...')
|
|
38
|
+
|
|
39
|
+
convert_mp4_to_mp3(path)
|
|
40
|
+
|
|
41
|
+
log_info('Conversion complete...')
|
|
42
|
+
elif is_valid_playlist_url(url):
|
|
43
|
+
log_info('YouTube playlist Detected. Initializing...')
|
|
44
|
+
|
|
45
|
+
playlist = Playlist(url)
|
|
46
|
+
for video in playlist.videos:
|
|
47
|
+
path = download_mp3(video, config)
|
|
48
|
+
|
|
49
|
+
log_info('Converting video to MP3 File...')
|
|
50
|
+
|
|
51
|
+
convert_mp4_to_mp3(path)
|
|
52
|
+
|
|
53
|
+
log_info('Conversion complete. Moving on to next...')
|
|
54
|
+
log_info(f'All videos converted. Enjoy your new MP3 files in {config.out_dir}!')
|
|
55
|
+
else:
|
|
56
|
+
raise ValueError('The given url is not a valid YouTube link')
|
|
57
|
+
except BaseException as ex:
|
|
58
|
+
ex_exit(ex, 1)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
def log_info(msg: str) -> None:
|
|
62
|
+
"""
|
|
63
|
+
Logs an informational message to the console
|
|
64
|
+
|
|
65
|
+
:param msg: The message to log
|
|
66
|
+
"""
|
|
67
|
+
print(Fore.YELLOW, '[youtube-to-mp3] ', Fore.BLUE, msg, sep="")
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
def ex_exit(ex: BaseException, exit_code: int = 1) -> NoReturn:
|
|
71
|
+
"""
|
|
72
|
+
Exit with an exception
|
|
73
|
+
|
|
74
|
+
:param ex: The exception being thrown
|
|
75
|
+
:param exit_code: The exit code of the program
|
|
76
|
+
"""
|
|
77
|
+
print(Fore.YELLOW, '[youtube-to-mp3] ', Fore.RED, ex.__class__.__name__, Fore.YELLOW, ': ', ex,
|
|
78
|
+
file=sys.stderr, sep='')
|
|
79
|
+
sys.exit(exit_code)
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
def parse_args() -> argparse.Namespace:
|
|
83
|
+
"""
|
|
84
|
+
Parse the command line arguments
|
|
85
|
+
|
|
86
|
+
:return: The parsed argument namespace
|
|
87
|
+
"""
|
|
88
|
+
description = Fore.YELLOW + 'Youtube To MP3 Download Tool'
|
|
89
|
+
parser = argparse.ArgumentParser(description=description)
|
|
90
|
+
|
|
91
|
+
parser.add_argument('url', metavar='URL', type=str,
|
|
92
|
+
help="The YouTube URL to download. Playlist or single video.")
|
|
93
|
+
|
|
94
|
+
parser.add_argument('-o', '--out', metavar="DIR", type=str, default='mp3',
|
|
95
|
+
help="The directory in which to store the downloaded MP3 files.")
|
|
96
|
+
|
|
97
|
+
parser.add_argument('-t', '--timeout', metavar='S', type=int, default=5000,
|
|
98
|
+
help="Request timeout length in seconds")
|
|
99
|
+
|
|
100
|
+
parser.add_argument('-r', '--retry', metavar="N", type=int, default=3,
|
|
101
|
+
help="Number of retries on failed download")
|
|
102
|
+
|
|
103
|
+
return parser.parse_args()
|