1 00:00:00,120 --> 00:00:06,240 In this lecture, we were going to install a library called Video J.S. in the resource section of this 2 00:00:06,240 --> 00:00:08,880 lecture, I provide a link to this library. 3 00:00:09,330 --> 00:00:13,680 It's a framework built on top of the browser's HD HTML5 video player. 4 00:00:13,950 --> 00:00:17,820 We don't need this library, but it makes working with videos easier. 5 00:00:18,120 --> 00:00:21,180 There are two big benefits to using this library. 6 00:00:21,450 --> 00:00:25,170 Firstly, video players can have their appearance customized. 7 00:00:25,410 --> 00:00:30,720 Secondly, there are hundreds of plugins available for extending the default behavior. 8 00:00:31,240 --> 00:00:33,600 We're going to install it for playing videos. 9 00:00:33,720 --> 00:00:36,390 Switch over to the command line in your editor. 10 00:00:38,880 --> 00:00:47,640 Inside the command line, we're going to run the following command and p.m. I video jazz at type's slash 11 00:00:47,760 --> 00:00:52,050 videogames at video jazz slash themes. 12 00:00:54,610 --> 00:00:56,530 We're installing three packages. 13 00:00:56,830 --> 00:00:59,610 The first package is called videogames. 14 00:00:59,920 --> 00:01:05,170 It's the package with the core features of the library I mentioned at the beginning of the lecture. 15 00:01:05,530 --> 00:01:10,840 This package doesn't offer TypeScript support, which leads us to the second package. 16 00:01:11,140 --> 00:01:19,000 The types slash video package will add types for the video package, thus satisfying the compiler. 17 00:01:19,600 --> 00:01:24,220 Lastly, we're installing a package called VIDEO J.S. slash theme. 18 00:01:24,580 --> 00:01:28,330 This package offers additional access for the video player. 19 00:01:28,630 --> 00:01:31,780 We're going to need it for the visual appearance of the player. 20 00:01:32,140 --> 00:01:33,190 Everything is ready. 21 00:01:33,400 --> 00:01:36,730 In the next lecture, we're going to initialize the player.