Fix missing links

This commit is contained in:
Gvidas Juknevičius 2024-10-10 02:16:33 +03:00
parent 31a710c6cb
commit 2ddb2b8a89
Signed by: MCorange
GPG Key ID: 12B1346D720B7FBB

View File

@ -5,17 +5,17 @@ An open source music downloader AND player (soon (TM))
## Design ## Design
Written in rust, it *tries* to be fast, reliable, and actually useful, as it doesnt stream the music from a server where it could be Written in rust, it *tries* to be fast, reliable, and actually useful, as it doesnt stream the music from a server where it could be
deleted and lost forever. deleted and lost forever.
It uses [egui](#) for a crossplatform frontend that makes it possible to run almost anywhere. It uses [egui](https://www.egui.rs/) for a crossplatform frontend that makes it possible to run almost anywhere.
The music is downloaded via [ytdlp](#) and [spotdl](#), and converted to your favorite format via [ffmpeg](#) The music is downloaded via [ytdlp](#Dependencies) and [spotdl](#Dependencies), and converted to your favorite format via [ffmpeg](#Dependencies)
## Offline usage ## Offline usage
Your whole music library is downloaded to your music folder (unless its being ran in standalone mode). Saved in your selected format. Your whole music library is downloaded to your music folder (unless its being ran in standalone mode). Saved in your selected format.
All of the info required to download your songs is stored in 1 file (!). So all you need to backup all of your music is just 1 relatively small file AND you get the added benefit of easily moving your music between devices with just 1 manifest file, 1 executable (and 3 [dependencies](#dependencies)). Just press `download all` and see as all of your playlists appear in your hard drive, powereded by Open Source software. All of the info required to download your songs is stored in 1 file (!). So all you need to backup all of your music is just 1 relatively small file AND you get the added benefit of easily moving your music between devices with just 1 manifest file, 1 executable (and 3 [dependencies](#dependencies)). Just press `download all` and see as all of your playlists appear in your hard drive, powereded by Open Source software.
## Dependencies ## Dependencies
[ffmpeg](#): To convert your music files to your desired format. [ffmpeg](https://ffmpeg.org/): To convert your music files to your desired format.
[spotdl](#): To download music from spotify, because ofcourse spotify had to be the special child [spotdl](https://github.com/spotDL/spotify-downloader): To download music from spotify, because ofcourse spotify had to be the special child
[ytdlp](#): To download music from every single other source [ytdlp](https://github.com/yt-dlp/yt-dlp): To download music from every single other source
The rust dependencies can be found in the [Cargo.toml](/Cargo.toml) file. The rust dependencies can be found in the [Cargo.toml](/Cargo.toml) file.