diff --git a/README.md b/README.md index b21dd57..dea082e 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,27 @@ This script requires python3. Additional dependencies can be found in the `requi ## Usage +### Docker + +``` +git clone https://github.com/tgrosinger/youtube-dl-subscriptions + +./build.sh +cp run.example.sh run.sh + +# Make necessary changes in run.sh + +./run.sh +``` + +### Running Locally + +If you do not want to use Docker, you can instead setup the dependencies to run +this script from your locally installed python. + Clone the repository - git clone https://github.com/mewfree/youtube-dl-subscriptions + git clone https://github.com/tgrosinger/youtube-dl-subscriptions Install the requirements @@ -25,3 +43,9 @@ You can then run the script python3 dl.py A `last.txt` file will be created in order to avoid downloading the same videos on the next run. + +## Credits + +Based on the work from +[mewfree](https://github.com/mewfree/youtube-dl-subscriptions/) and +[pwcazenave](https://github.com/pwcazenave/youtube-dl-subscriptions).