Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frantallukas10/youtu-playlist-downloader
https://github.com/frantallukas10/youtu-playlist-downloader
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/frantallukas10/youtu-playlist-downloader
- Owner: frantallukas10
- License: mit
- Created: 2019-12-14T14:46:39.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T03:04:19.000Z (about 2 years ago)
- Last Synced: 2024-11-24T00:39:00.203Z (2 months ago)
- Language: JavaScript
- Size: 703 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# youtu-playlist-downloader
is project which can help you download all your songs from your youtube playlist.
![NPM](https://img.shields.io/npm/l/youtu-playlist-downloader)
![npm](https://img.shields.io/npm/v/youtu-playlist-downloader)
![npm](https://img.shields.io/npm/dt/youtu-playlist-downloader)
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/frantallukas10/youtu-playlist-downloader)
![GitHub repo size](https://img.shields.io/github/repo-size/frantallukas10/youtu-playlist-downloader)
![Coverage badge](https://img.shields.io/badge/Coverage-100%25-brightgreen.svg)
## Instalation
```bash
npm i youtu-playlist-downloader -g
```## Example running:
```bash
ytdownload id="PLxQ30nUCB0uOatryEd7sgS0GfdMHgGvsN"
```default `output` setting path for folder is `./` you can add your custom path like this:
```bash
ytdownload id="PLxQ30nUCB0uOatryEd7sgS0GfdMHgGvsN" output="./playlist"
```you can define your `concurrency` setting which represents how many songs you want to download from the playlist at once. By default is `1`, if you will not define it. For example 30 songs at once:
```bash
ytdownload id="PLxQ30nUCB0uOatryEd7sgS0GfdMHgGvsN" output="./playlist" concurrency="30"
```you can define `startIndex` which represents from which order you want to start downloading a song from the list. By default is from the start.
```bash
ytdownload id="PLxQ30nUCB0uOatryEd7sgS0GfdMHgGvsN" output="./playlist" concurrency="30" startIndex="10"
```### command line arguments:
- `id` is expected settings where you can define id of your playlist
- `output` is output path where you want download your songs, The argument is not expected settings by default is `./`
- `concurrency` define max number of parallel downloads, argument is not expected settings by default is `1`
- `startIndex` define start order position in your playlist for start downloading, argument is not expected settings by default is `0`.## You can use this package for your next solution, function downloadYutubePlaylist for downloading all your youtube playlist songs.
```js
const path = require('path');
const { downloadYutubePlaylist } = require('youtu-playlist-downloader');const idPlaylist = 'PLxQ30nUCB0uNCCKBD_JW1udM7iYH27cu2';
const output = path.resolve(`./playlist`);
const concurrency = 30;
const startIndex = 0;
downloadYutubePlaylist(output, idPlaylist, concurrency, startIndex);
```## If you want donwload only one song you can do it with function downloadYutubeSong like this.
```js
const path = require('path');
const { downloadYutubeSong } = require('youtu-playlist-downloader');const idSong = 'UCtaTjkogAC3Xh5J-ZPdX0BQ';
const output = path.resolve(`./playlist`);
const nameSong = 'Name of the song';
downloadYutubeSong(output, idSong, nameSong);
```## Expected incorrect result will be show in your console like this:
![alt](./images/1.png)
## Expected correct result if you defined correct your youtube playlist id, output, concurrency, startIndex:
![Alt 2](./images/2.png)