Download multiple tracks from youtube by single query.
(in future also and create instrumentals / stems automatically)
Open main.py
file in command line.
python main.py
System-wide:
python3.8
ffmpeg
Python3 packages:
PySimpleGUI
youtube_dl
validators
I suggest using chocolatey
- (package manager, similar to Microsoft Store but in command line).
https://chocolatey.org/install
Run Windows PowerShell (Admin)
- shortcut (win
+x
)
and type:
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco install python -y
choco install ffmpeg -y
After installation with chocolatey
restart Windows PowerShell (Admin)
(close and open it again).
python -m pip install PySimpleGUI youtube_dl validators
- move from pip -> conda-forge
- add spleeter module (right now I have problems with numba==0.48)
- write tests