Documentation on how to run the program

This commit is contained in:
Christian Colglazier 2021-06-28 21:10:38 -04:00
parent 7e68eb982b
commit 9e9a1e19d5

View File

@ -1,2 +1,21 @@
# yt-unlist-saver
This program will download all unlisted videos and descriptions in a given YouTube playlist that were uploaded on or before 2017.
## Installation
1. Clone the repository.
2. Install youtube-dl Python library
```sh
pip install youtube_dl
```
## Usage
1. Go to the desired playlist in your browser.
2. On the address bar you will see an URL like the following: https://www.youtube.com/watch?v=swRkBEDmaqk&list=PLRmPOFgS7WQFiijsHm-nAlpVAZaNXYRkx
3. The playlist ID is after the `list=` On the playlist above it would be `PLRmPOFgS7WQFiijsHm-nAlpVAZaNXYRkx`
4. Run the following command to download the playlist.
```sh
python yt-unlist-saver.py [Playlist ID]
```