1---
2layout: post
3title: Downloading courses from Linux Academy
4subtitle: youtube-dl is a phenomenal tool
5description: Using youtube-dl to pull Linux Academy courses for offline viewing
6date: 2019-10-19 01:35 -0400
7cover: /assets/posts/youtube-dl.png
8---
9# Forward
10Every month, Linux Academy releases courses for free. I'm a very busy college student and don't have time to whirl through everything I want to before it goes behind their paywall again so I figured out how to download a course or two every month using [`youtube-dl`](https://github.com/ytdl-org/youtube-dl/).
11
12# Setup
13* Install [`youtube-dl`](https://ytdl-org.github.io/youtube-dl/download.html)
14* Make sure you have a browser handy
15* Create a community account on [Linux Academy](https://linuxacademy.com/join/community)
16* Get some food
17* Maybe a drink
18* Sit back down in your chair
19* Spin around a bit
20* Read on
21
22# Downloading
23* Log into your account
24* Pick the course you want
25* Open the developer console and go to `Network` (Ctrl+Shift+E in Firefox)
26* You'll want to select `Media` as shown in the screenshot below
27
28
29
30* Click the video you want to start with
31* Watch the network logs
32* You'll see an entry that starts with `playlist` (screenshot below)
33
34
35
36* Right click it
37* Copy the URL
38* Paste it after `youtube-dl` in a terminal:
39
40```bash
41amolith@poseidon:~ $ youtube-dl https://video-cdn.linuxacademy.com/vods3/_definst_/smil:box/cdnstore/modules/lots-of-stuff-in-here
42```
43
44* Press enter
45* Watch the magic unfold
46
47At a high level, `youtube-dl` is acting like your browser and following the `m3u` playlist to download chunks of the file. After it fetches them all, it runs them through `ffmpeg` to stitch them together into a single video!
48
49I found it useful to open a text editor and script downloading a whole course at a time. All you have to do is type `youtube-dl -o` and copy/paste it however many times there are videos. Then, copy and paste the video title in quotes after `-o` and add `.mp4` to the end (command example below). After that, paste the URL. Do that with every video in the series, save the script, run `chmod +x <script>`, then `./<script>` and (after a bit) you'll have an entire course you can watch at your leasure!
50
51```bash
52amolith@poseidon:~ $ youtube-dl -o "04 - Conclusion and Next Steps.mp4" https://video-cdn.linuxacademy.com/vods3/_definst_/smil:box/cdnstore/modules/lots-of-stuff-here
53```
54
55**NOTE:** You may want to set up your directory structure beforehand so it's easier to script the process. Here's an example of one of mine:
56
57```bash
58amolith@poseidon:~/Videos/Courses/Ansible - Playbooks Deep Dive $ tree
59.
60├── 01 - Course Overview
61│ ├── 01 - About the Course.mp4
62│ ├── 02 - About the Training Architect.mp4
63│ ├── 03 - Course Features and Tools.mp4
64│ ├── 04 - About Ansible Playbooks.mp4
65│ └── 05 - Advanced Inventory Configuration.mp4
66├── 02 - Playbook Basics
67│ ├── 01 - Using YAML for Ansible Playbooks.mp4
68│ ├── 02 - Creating an Ansible Play.mp4
69│ ├── 03 - The ansible-playbook Command.mp4
70│ └── 04 - Understanding Playbook Tasks.mp4
71├── 03 - Essential Playbook Syntax
72│ ├── 01 - Using Variables in Playbooks.mp4
73│ ├── 02 - Working with Templates.mp4
74│ ├── 03 - Using Ansible Facts.mp4
75│ ├── 04 - Conditional Execution in Playbooks.mp4
76│ ├── 05 - Using Loops in Ansible.mp4
77│ └── 06 - Working with Handlers in Ansible.mp4
78├── 04 - Advanced Playbook Syntax
79│ ├── 01 - Executing Selective Parts of a Playbook.mp4
80│ ├── 02 - Working with Sensitive Data Using Ansible Vault.mp4
81│ ├── 03 - Error Handling in a Playbook: limit, ignore_errors, changed_when, and failed_when.mp4
82│ ├── 04 - Error Handling in a Playbook: Block Groups and The Debug Module.mp4
83│ ├── 05 - Asynchronous Tasks within a Playbook.mp4
84│ ├── 06 - Delegating Playbook Execution with delegate_to and local_action.mp4
85│ ├── 07 - Parallelism in Playbooks.mp4
86│ ├── 08 - Using run_once.mp4
87│ ├── 09 - Overview of Ansible Roles.mp4
88│ └── 10 - Ansible Role Demo.mp4
89└── 05 - Conclusion and Next Steps.mp4
90
914 directories, 26 files
92amolith@poseidon:~/Videos/Courses/Ansible - Playbooks Deep Dive $
93```