Last active
April 22, 2019 05:19
-
-
Save ericmjl/ae5150d0e42e4bb4b1b786c46cd20353 to your computer and use it in GitHub Desktop.
Download causality lectures by Jonas Peters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This script is intended for downloading all four videos on causality by | |
# Jonas Peters (University of Copenhagen) from YouTube. | |
# | |
# Copyright belongs to their appropriate copyright holders. I am only | |
# providing this script for convenience. | |
# | |
# To run this script, first ensure that you have the Python package | |
# `youtube-dl` installed. Assuming you are able to install it into your | |
# favourite computing environment, it should be a single command: | |
# | |
# $ pip install youtube-dl | |
# | |
# Following that, run this script at the command line: | |
# | |
# $ bash download_causality.sh | |
# | |
# The lectures are approximately 1 GB each, and there are 4 in total. | |
# | |
# Enjoy! | |
##### Script Below ##### | |
# Download Part 1 | |
youtube-dl https://www.youtube.com/watch?v=zvrcyqcN9Wo | |
# Download Part 2 | |
youtube-dl https://www.youtube.com/watch?v=bHOGP5o3Vu0 | |
# Download Part 3 | |
youtube-dl https://www.youtube.com/watch?v=Jp4UcgpVA2I | |
# Download Part 4 | |
youtube-dl https://www.youtube.com/watch?v=ytnr_2dyyMU |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment