Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ikedaosushi/alfred-wf-music-dl
A Alfred workflow that download Spotify, Youtube, SoundCloud, Bandcamp Musics
https://github.com/ikedaosushi/alfred-wf-music-dl
Last synced: 12 days ago
JSON representation
A Alfred workflow that download Spotify, Youtube, SoundCloud, Bandcamp Musics
- Host: GitHub
- URL: https://github.com/ikedaosushi/alfred-wf-music-dl
- Owner: ikedaosushi
- Created: 2019-06-10T15:05:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-10T15:21:49.000Z (over 5 years ago)
- Last Synced: 2024-08-01T16:53:09.504Z (3 months ago)
- Size: 19.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# alfred-wf-music-dl
A Alfred workflow that download Spotify, Youtube, SoundCloud, Bandcamp Musics# Install
[music-dl.alfredworkflow](https://raw.githubusercontent.com/ikedaosushi/alfred-wf-music-dl/master/music-dl.alfredworkflow)# Required
This Workflow only helps to call below commands. You have to install each commands by yourself.- [ytdl-org/youtube-dl: Command-line program to download videos from YouTube.com and other video sites](https://github.com/ytdl-org/youtube-dl)
- [Miserlou/SoundScrape: SoundCloud (and Bandcamp and Mixcloud) downloader in Python.](https://github.com/Miserlou/SoundScrape)
- [ritiek/spotify-downloader: Download Spotify playlists with albumart and meta-tags](https://github.com/ritiek/spotify-downloader)# Note
Each commands.```sh
# SoundCloud
soundscrape $URL
# Bandcamp
soundscrape -b $URL
# Spotify
spotdl --song $URL -f .
# Youtube
youtube-dl -x --audio-format mp3 $URL
```