From 9e9a1e19d5fdc6a2a106f1a2cafa1caf9b592f37 Mon Sep 17 00:00:00 2001 From: Christian Colglazier Date: Mon, 28 Jun 2021 21:10:38 -0400 Subject: [PATCH] Documentation on how to run the program --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 0846998..c2b48d5 100644 --- a/README.md +++ b/README.md @@ -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] +```