Leer esto en Español
Just type the name of the song you want, select the provider (YouTube, YouTube Music or SoundCloud) and the app will do the rest!
The app will fetch the platforms to get the cookies and the user client id or token, and will use this data to download the songs.
If the downloaded file is a YouTube video or playlist, it will convert the downloaded ogg (opus) files to mp3 using Ffmpeg.
The app should download and extract FFmpeg automatically in case it is not added to the PATH.
SoundCloud provides files in mp3 format, so a conversion is not needed in that case.
Download the app from the "Releases" page and run it.
- Download the repository or clone it using git
- Download and install Node.js (if you haven't already)
- Install dependencies (once) using
npm i
(orpnpm i
if you have pnpm installed, usenpm i -g pnpm
if not) - Transpile the app using
npm run comp
ornpx tsc
- Run the app using
npm start
, or build it to an .exe usingnpm run build
(the result file will be in the "bin" folder)