forked from yandexdataschool/Practical_RL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
youtube_dl_lectures.sh
44 lines (32 loc) · 2.13 KB
/
youtube_dl_lectures.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
#this script utilizes https://github.com/rg3/youtube-dl/ to download lecture materials in the respective folders.
#you can install youtube-dl via `pip install --upgrade youtube-dl` if you don't have it already.
#WARNING! the full script downloads gigabytes of mp4!
#week0
youtube-dl https://www.youtube.com/watch?v=2pWv7GOvuf0 --output week0/Lecture1_Silver.mp4
youtube-dl https://www.youtube.com/watch?v=lfHX2hHRMVQ --output week0/Lecture2_Silver_optional.mp4
#week1
youtube-dl https://www.youtube.com/watch?v=aUrX-rP_ss4 --output week1/Lecture_Schulman.mp4
#week2
youtube-dl https://www.youtube.com/watch?v=PnHCvfgC_ZA --output week2/Lecture_Silver.mp4
youtube-dl https://www.youtube.com/watch?v=ifma8G7LegE --output week2/Alternative_lecture_Abbeel.mp4
youtube-dl https://www.youtube.com/watch?v=IL3gVyJMmhg --output week2/Alternative_lecture_Schulman.mp4
#week3
youtube-dl https://www.youtube.com/watch?v=0g4j2k_Ggc4 --output week3/Lecture_Silver.mp4
#week3.5
youtube-dl https://www.youtube.com/watch?v=uXt8qF2Zzfo --output week3.5/Lecture_basics.mp4
youtube-dl https://www.youtube.com/watch?v=FmpDIaiMIeA --output week3.5/Lecture_convnets.mp4
youtube-dl https://www.youtube.com/watch?v=OU8I1oJ9HhI --output week3.5/Tutorial_theano.mp4
#week4
youtube-dl https://www.youtube.com/watch?v=UoPei5o4fps --output week4/Lecture_Silver.mp4
#week5
youtube-dl https://www.youtube.com/watch?v=h1-pj4Y9-kM --output week5/Lecture_Schulman.mp4
#week6
youtube-dl https://www.youtube.com/watch?v=KHZVXao4qXs --output week6/Lecture_Silver.mp4
youtube-dl https://www.youtube.com/watch?v=BB-BhTn6DCM --output week6/Alternative_lecture_Schulman_part1.mp4
youtube-dl https://www.youtube.com/watch?v=Wnl-Qh2UHGg --output week6/Alternative_lecture_Schulman_part2.mp4
#week6.5
youtube-dl https://www.youtube.com/watch?v=iX5V1WpxxkY --output week6.5/Lecture_cs231.mp4
youtube-dl https://www.youtube.com/watch?v=Ukgii7Yd_cU --output week6.5/Alternative_lecture_nervana.mp4
youtube-dl https://www.youtube.com/watch?v=xK-bzjIQkmM --output week6.5/Alternative_lecture_Bengio.mp4
youtube-dl https://www.youtube.com/watch?v=G5RY_SUJih4 --output week6.5/Bonus_lecture_seq2seq.mp4