summaryrefslogtreecommitdiffstats
path: root/2021/captions/gregorian.md
diff options
context:
space:
mode:
Diffstat (limited to '2021/captions/gregorian.md')
-rw-r--r--2021/captions/gregorian.md277
1 files changed, 277 insertions, 0 deletions
diff --git a/2021/captions/gregorian.md b/2021/captions/gregorian.md
new file mode 100644
index 00000000..9d382bc4
--- /dev/null
+++ b/2021/captions/gregorian.md
@@ -0,0 +1,277 @@
+<a name="transcript"></a>
+
+# Transcript
+
+[[!template text="Hello, everyone, my name is Spencer," start="00:00:00.240" video="mainVideo" id=subtitle]]
+[[!template text="and today I'm going to tell you all" start="00:00:02.320" video="mainVideo" id=subtitle]]
+[[!template text="a little bit about how to typeset" start="00:00:03.600" video="mainVideo" id=subtitle]]
+[[!template text="Gregorian chant sheet music" start="00:00:05.296" video="mainVideo" id=subtitle]]
+[[!template text="using Emacs and a tool called Gregorio." start="00:00:06.640" video="mainVideo" id=subtitle]]
+[[!template text="Now I expect many, if not all, of you" start="00:00:10.000" video="mainVideo" id=subtitle]]
+[[!template text="are unfamiliar with Gregorio," start="00:00:12.160" video="mainVideo" id=subtitle]]
+[[!template text="so we'll start off" start="00:00:14.000" video="mainVideo" id=subtitle]]
+[[!template text="with a brief overview of the tool" start="00:00:14.719" video="mainVideo" id=subtitle]]
+[[!template text="and the appropriate syntax." start="00:00:16.240" video="mainVideo" id=subtitle]]
+[[!template text="Next, I'll show you how I've automated" start="00:00:18.080" video="mainVideo" id=subtitle]]
+[[!template text="some of the workflow" start="00:00:19.760" video="mainVideo" id=subtitle]]
+[[!template text="using some Emacs Lisp functions" start="00:00:20.720" video="mainVideo" id=subtitle]]
+[[!template text="which I've slowly been turning into" start="00:00:22.480" video="mainVideo" id=subtitle]]
+[[!template text="a package called `gregorian-mode`." start="00:00:23.920" video="mainVideo" id=subtitle]]
+[[!template text="This will include" start="00:00:26.080" video="mainVideo" id=subtitle]]
+[[!template text="some live typesetting examples" start="00:00:26.720" video="mainVideo" id=subtitle]]
+[[!template text="to give you a better idea" start="00:00:28.320" video="mainVideo" id=subtitle]]
+[[!template text="of how this all works." start="00:00:29.359" video="mainVideo" id=subtitle]]
+[[!template text="Finally, I'll share" start="00:00:31.279" video="mainVideo" id=subtitle]]
+[[!template text="some information with you" start="00:00:32.079" video="mainVideo" id=subtitle]]
+[[!template text="about how you can contribute" start="00:00:33.120" video="mainVideo" id=subtitle]]
+[[!template text="to the package if you'd like," start="00:00:34.480" video="mainVideo" id=subtitle]]
+[[!template text="and how you can learn more about" start="00:00:35.680" video="mainVideo" id=subtitle]]
+[[!template text="both Gregorio and `gregorian-mode`." start="00:00:38.000" video="mainVideo" id=subtitle]]
+[[!template text="And of course, all of the examples" start="00:00:39.600" video="mainVideo" id=subtitle]]
+[[!template text="from this presentation today" start="00:00:41.120" video="mainVideo" id=subtitle]]
+[[!template text="have been available online" start="00:00:42.320" video="mainVideo" id=subtitle]]
+[[!template text="so you can review them" start="00:00:44.079" video="mainVideo" id=subtitle]]
+[[!template text="all at your own pace." start="00:00:44.879" video="mainVideo" id=subtitle]]
+[[!template new="1" text="Gregorio is a tool that takes" start="00:00:46.800" video="mainVideo" id=subtitle]]
+[[!template text="a `gabc` text file and compiles it" start="00:00:49.440" video="mainVideo" id=subtitle]]
+[[!template text="into a LaTeX document." start="00:00:51.500" video="mainVideo" id=subtitle]]
+[[!template text="Gregorio is included by default" start="00:00:52.879" video="mainVideo" id=subtitle]]
+[[!template text="with many LaTeX distributions," start="00:00:54.719" video="mainVideo" id=subtitle]]
+[[!template text="so you may already have it installed" start="00:00:56.559" video="mainVideo" id=subtitle]]
+[[!template text="on your machine if you are a user of LaTeX." start="00:00:58.079" video="mainVideo" id=subtitle]]
+[[!template text="You can see here on the left an example" start="00:01:01.120" video="mainVideo" id=subtitle]]
+[[!template text="of some input `gabc` text," start="00:01:02.879" video="mainVideo" id=subtitle]]
+[[!template text="and on the right," start="00:01:04.960" video="mainVideo" id=subtitle]]
+[[!template text="what the compiled score will look like." start="00:01:05.600" video="mainVideo" id=subtitle]]
+[[!template text="Looking at the `gabc`, we can see that" start="00:01:08.080" video="mainVideo" id=subtitle]]
+[[!template text="it starts with the clef in parentheses," start="00:01:10.080" video="mainVideo" id=subtitle]]
+[[!template text="and then following this" start="00:01:12.640" video="mainVideo" id=subtitle]]
+[[!template text="are the syllables of the lyrics" start="00:01:13.600" video="mainVideo" id=subtitle]]
+[[!template text="and the corresponding notes in parentheses." start="00:01:15.119" video="mainVideo" id=subtitle]]
+[[!template text="For example, you can see that &quot;EX,&quot;" start="00:01:18.080" video="mainVideo" id=subtitle]]
+[[!template text="the first syllable," start="00:01:21.119" video="mainVideo" id=subtitle]]
+[[!template text="corresponds to a `d` note" start="00:01:22.240" video="mainVideo" id=subtitle]]
+[[!template text="in parentheses there," start="00:01:24.080" video="mainVideo" id=subtitle]]
+[[!template text="and if you look at the right," start="00:01:25.920" video="mainVideo" id=subtitle]]
+[[!template text="you can easily verify that" start="00:01:27.119" video="mainVideo" id=subtitle]]
+[[!template text="in the output." start="00:01:28.560" video="mainVideo" id=subtitle]]
+[[!template text="Now the last thing" start="00:01:30.320" video="mainVideo" id=subtitle]]
+[[!template text="that I want to note here" start="00:01:31.040" video="mainVideo" id=subtitle]]
+[[!template text="is that `gabc` files are all plain text," start="00:01:31.680" video="mainVideo" id=subtitle]]
+[[!template text="meaning they can easily be shared" start="00:01:34.079" video="mainVideo" id=subtitle]]
+[[!template text="and can easily be tracked using" start="00:01:36.320" video="mainVideo" id=subtitle]]
+[[!template text="your favorite version-control software." start="00:01:38.000" video="mainVideo" id=subtitle]]
+[[!template text="Since these are plain text," start="00:01:40.400" video="mainVideo" id=subtitle]]
+[[!template text="it's really pretty easy to integrate" start="00:01:41.920" video="mainVideo" id=subtitle]]
+[[!template text="them into your existing workflows." start="00:01:43.520" video="mainVideo" id=subtitle]]
+[[!template new="1" text="The `gabc` format also supports" start="00:01:46.079" video="mainVideo" id=subtitle]]
+[[!template text="many optional header fields" start="00:01:48.079" video="mainVideo" id=subtitle]]
+[[!template text="for adding more information" start="00:01:49.439" video="mainVideo" id=subtitle]]
+[[!template text="about your score." start="00:01:50.560" video="mainVideo" id=subtitle]]
+[[!template text="You can see all the supported fields" start="00:01:51.920" video="mainVideo" id=subtitle]]
+[[!template text="listed below, along with" start="00:01:53.520" video="mainVideo" id=subtitle]]
+[[!template text="some placeholder text." start="00:01:54.799" video="mainVideo" id=subtitle]]
+[[!template text="These fields are placed" start="00:01:56.479" video="mainVideo" id=subtitle]]
+[[!template text="at the top of a file" start="00:01:57.360" video="mainVideo" id=subtitle]]
+[[!template text="and are separated from the actual score" start="00:01:58.399" video="mainVideo" id=subtitle]]
+[[!template text="by the two percent symbols" start="00:02:01.000" video="mainVideo" id=subtitle]]
+[[!template text="seen at the bottom." start="00:02:01.439" video="mainVideo" id=subtitle]]
+[[!template text="After these symbols, you would have the" start="00:02:03.000" video="mainVideo" id=subtitle]]
+[[!template text="lines of your score," start="00:02:04.399" video="mainVideo" id=subtitle]]
+[[!template text="similar to what you saw" start="00:02:05.600" video="mainVideo" id=subtitle]]
+[[!template text="on the previous slide." start="00:02:07.080" video="mainVideo" id=subtitle]]
+[[!template new="1" text="As I said earlier," start="00:02:08.560" video="mainVideo" id=subtitle]]
+[[!template text="I've automated some of" start="00:02:09.599" video="mainVideo" id=subtitle]]
+[[!template text="the score build steps using Emacs Lisp," start="00:02:10.560" video="mainVideo" id=subtitle]]
+[[!template text="and have started turning them" start="00:02:12.959" video="mainVideo" id=subtitle]]
+[[!template text="into a package called `gregorian-mode`." start="00:02:14.000" video="mainVideo" id=subtitle]]
+[[!template text="This is my first Emacs package," start="00:02:16.480" video="mainVideo" id=subtitle]]
+[[!template text="so the code is rather messy at the moment," start="00:02:18.160" video="mainVideo" id=subtitle]]
+[[!template text="and for the most part is just a wrapper" start="00:02:20.400" video="mainVideo" id=subtitle]]
+[[!template text="around the Gregorio build process." start="00:02:22.160" video="mainVideo" id=subtitle]]
+[[!template text="However, I have made some" start="00:02:24.319" video="mainVideo" id=subtitle]]
+[[!template text="quality-of-life improvements" start="00:02:25.536" video="mainVideo" id=subtitle]]
+[[!template text="to the score writing," start="00:02:26.720" video="mainVideo" id=subtitle]]
+[[!template text="and have some more planned for the future." start="00:02:27.920" video="mainVideo" id=subtitle]]
+[[!template text="You'll get to see some of that" start="00:02:30.239" video="mainVideo" id=subtitle]]
+[[!template text="in some live examples" start="00:02:31.360" video="mainVideo" id=subtitle]]
+[[!template text="in just a little bit." start="00:02:32.480" video="mainVideo" id=subtitle]]
+[[!template new="1" text="This package is not currently on MELPA" start="00:02:34.319" video="mainVideo" id=subtitle]]
+[[!template text="at the time of recording," start="00:02:36.000" video="mainVideo" id=subtitle]]
+[[!template text="so if you want it," start="00:02:37.760" video="mainVideo" id=subtitle]]
+[[!template text="you will have to clone it manually" start="00:02:38.640" video="mainVideo" id=subtitle]]
+[[!template text="from GitHub, but it is planned" start="00:02:40.000" video="mainVideo" id=subtitle]]
+[[!template text="to be on MELPA in the near future." start="00:02:41.920" video="mainVideo" id=subtitle]]
+[[!template text="It just needs to go through" start="00:02:44.080" video="mainVideo" id=subtitle]]
+[[!template text="a little more rigorous cleanup" start="00:02:44.959" video="mainVideo" id=subtitle]]
+[[!template text="and testing." start="00:02:46.400" video="mainVideo" id=subtitle]]
+[[!template new="1" text="Now that we've covered the basics," start="00:02:48.640" video="mainVideo" id=subtitle]]
+[[!template text="let's take a look at an actual example." start="00:02:50.400" video="mainVideo" id=subtitle]]
+[[!template text="In this example, I'm assuming that" start="00:02:52.560" video="mainVideo" id=subtitle]]
+[[!template text="my `gregorian-mode` package is installed." start="00:02:54.319" video="mainVideo" id=subtitle]]
+[[!template text="However, there is nothing in these steps" start="00:02:56.480" video="mainVideo" id=subtitle]]
+[[!template text="that cannot be done manually" start="00:02:57.920" video="mainVideo" id=subtitle]]
+[[!template text="by just following the official" start="00:02:59.200" video="mainVideo" id=subtitle]]
+[[!template text="Gregorio documentation." start="00:03:01.120" video="mainVideo" id=subtitle]]
+[[!template text="So if you don't want to use a package," start="00:03:02.480" video="mainVideo" id=subtitle]]
+[[!template text="you can do all of this pretty easily" start="00:03:04.000" video="mainVideo" id=subtitle]]
+[[!template text="on your own just by following" start="00:03:05.840" video="mainVideo" id=subtitle]]
+[[!template text="their documentation." start="00:03:07.280" video="mainVideo" id=subtitle]]
+[[!template new="1" text="So first we'll open up Emacs," start="00:03:10.000" video="mainVideo" id=subtitle]]
+[[!template text="and in my case," start="00:03:11.680" video="mainVideo" id=subtitle]]
+[[!template text="I'm using the GUI version." start="00:03:12.480" video="mainVideo" id=subtitle]]
+[[!template text="So now that Emacs is open, we can call" start="00:03:14.560" video="mainVideo" id=subtitle]]
+[[!template text="the function `gregorian-create-new-gabc`," start="00:03:16.640" video="mainVideo" id=subtitle]]
+[[!template text="and this will prompt us for a file name." start="00:03:21.440" video="mainVideo" id=subtitle]]
+[[!template text="So we need to pick out a name" start="00:03:23.680" video="mainVideo" id=subtitle]]
+[[!template text="for our new score." start="00:03:25.599" video="mainVideo" id=subtitle]]
+[[!template text="So I think I'm going to go ahead" start="00:03:26.799" video="mainVideo" id=subtitle]]
+[[!template text="and name ours `emacsconf2021`." start="00:03:28.239" video="mainVideo" id=subtitle]]
+[[!template text="So you can see here that we now have" start="00:03:33.280" video="mainVideo" id=subtitle]]
+[[!template text="a new `gabc` file with all of the" start="00:03:34.959" video="mainVideo" id=subtitle]]
+[[!template text="optional header fields added," start="00:03:36.879" video="mainVideo" id=subtitle]]
+[[!template text="and we can keep whichever of these" start="00:03:38.720" video="mainVideo" id=subtitle]]
+[[!template text="that we would like," start="00:03:40.400" video="mainVideo" id=subtitle]]
+[[!template text="and we can modify them as needed." start="00:03:41.120" video="mainVideo" id=subtitle]]
+[[!template text="So for right now, all I'm going to change" start="00:03:43.200" video="mainVideo" id=subtitle]]
+[[!template text="is this commentary; I'm going to update" start="00:03:45.360" video="mainVideo" id=subtitle]]
+[[!template text="this source of words to `emacsconf`," start="00:03:47.360" video="mainVideo" id=subtitle]]
+[[!template text="and then at the bottom here," start="00:03:52.560" video="mainVideo" id=subtitle]]
+[[!template text="this is where we'd go ahead" start="00:03:53.760" video="mainVideo" id=subtitle]]
+[[!template text="and add our score." start="00:03:55.040" video="mainVideo" id=subtitle]]
+[[!template text="So I don't have time today to typeset" start="00:03:56.959" video="mainVideo" id=subtitle]]
+[[!template text="an entire score, and I think that would" start="00:03:58.799" video="mainVideo" id=subtitle]]
+[[!template text="probably be rather boring" start="00:04:01.040" video="mainVideo" id=subtitle]]
+[[!template text="for most of you to watch," start="00:04:02.239" video="mainVideo" id=subtitle]]
+[[!template text="so I'll just demonstrate very briefly" start="00:04:03.760" video="mainVideo" id=subtitle]]
+[[!template text="with a few syllables and notes here." start="00:04:05.680" video="mainVideo" id=subtitle]]
+[[!template text="Okay, so now that we have our first few" start="00:04:15.840" video="mainVideo" id=subtitle]]
+[[!template text="syllables and notes down, let's take a" start="00:04:17.680" video="mainVideo" id=subtitle]]
+[[!template text="look at what our score actually looks" start="00:04:19.840" video="mainVideo" id=subtitle]]
+[[!template text="like so far." start="00:04:21.759" video="mainVideo" id=subtitle]]
+[[!template text="So in order to do this, we're going to" start="00:04:23.520" video="mainVideo" id=subtitle]]
+[[!template text="call the function `gregorian-build`," start="00:04:25.040" video="mainVideo" id=subtitle]]
+[[!template text="and what this function does is" start="00:04:29.600" video="mainVideo" id=subtitle]]
+[[!template text="it takes this score" start="00:04:31.199" video="mainVideo" id=subtitle]]
+[[!template text="and creates a LaTeX file for it" start="00:04:32.320" video="mainVideo" id=subtitle]]
+[[!template text="and then goes ahead and compiles it" start="00:04:33.680" video="mainVideo" id=subtitle]]
+[[!template text="into a PDF file that we can actually" start="00:04:36.080" video="mainVideo" id=subtitle]]
+[[!template text="take a look at." start="00:04:38.160" video="mainVideo" id=subtitle]]
+[[!template text="And this does take a few seconds to run..." start="00:04:39.840" video="mainVideo" id=subtitle]]
+[[!template text="and there it goes..." start="00:04:42.479" video="mainVideo" id=subtitle]]
+[[!template text="so we can see here we have a new buffer" start="00:04:44.320" video="mainVideo" id=subtitle]]
+[[!template text="with all of the output" start="00:04:47.040" video="mainVideo" id=subtitle]]
+[[!template text="from that build process," start="00:04:48.560" video="mainVideo" id=subtitle]]
+[[!template text="but what we really care about" start="00:04:50.320" video="mainVideo" id=subtitle]]
+[[!template text="is that PDF." start="00:04:51.840" video="mainVideo" id=subtitle]]
+[[!template text="So opening that up, you can see" start="00:04:56.080" video="mainVideo" id=subtitle]]
+[[!template text="we have a very short score." start="00:04:58.479" video="mainVideo" id=subtitle]]
+[[!template text="So far we haven't done a whole lot," start="00:05:00.560" video="mainVideo" id=subtitle]]
+[[!template text="but if you go ahead and compare the" start="00:05:02.320" video="mainVideo" id=subtitle]]
+[[!template text="score on the right" start="00:05:03.919" video="mainVideo" id=subtitle]]
+[[!template text="with the file on the left," start="00:05:05.000" video="mainVideo" id=subtitle]]
+[[!template text="you can really pretty clearly see that" start="00:05:06.479" video="mainVideo" id=subtitle]]
+[[!template text="those are, in fact, the lyrics" start="00:05:08.080" video="mainVideo" id=subtitle]]
+[[!template text="that we wrote." start="00:05:10.080" video="mainVideo" id=subtitle]]
+[[!template text="You can see at the top right there," start="00:05:11.199" video="mainVideo" id=subtitle]]
+[[!template text="the source has, in fact," start="00:05:13.280" video="mainVideo" id=subtitle]]
+[[!template text="changed to `emacsconf`" start="00:05:14.300" video="mainVideo" id=subtitle]]
+[[!template text="so at this point, we could go ahead" start="00:05:16.000" video="mainVideo" id=subtitle]]
+[[!template text="and just keep adding more lines," start="00:05:18.240" video="mainVideo" id=subtitle]]
+[[!template text="more notes, and so on," start="00:05:20.000" video="mainVideo" id=subtitle]]
+[[!template text="and we would end up with" start="00:05:22.240" video="mainVideo" id=subtitle]]
+[[!template text="a completed score." start="00:05:24.080" video="mainVideo" id=subtitle]]
+[[!template new="1" text="Now this process is great and all," start="00:05:25.919" video="mainVideo" id=subtitle]]
+[[!template text="but as you can imagine," start="00:05:27.919" video="mainVideo" id=subtitle]]
+[[!template text="more complex `gabc` files" start="00:05:29.120" video="mainVideo" id=subtitle]]
+[[!template text="can quickly become pretty difficult" start="00:05:30.880" video="mainVideo" id=subtitle]]
+[[!template text="to read with the notes and the syllables" start="00:05:32.720" video="mainVideo" id=subtitle]]
+[[!template text="all bunched together." start="00:05:34.479" video="mainVideo" id=subtitle]]
+[[!template text="So to get around this, I've been playing" start="00:05:36.080" video="mainVideo" id=subtitle]]
+[[!template text="around with an alternative format" start="00:05:37.840" video="mainVideo" id=subtitle]]
+[[!template text="called a `greg` file." start="00:05:39.840" video="mainVideo" id=subtitle]]
+[[!template text="I have an example of that" start="00:05:41.000" video="mainVideo" id=subtitle]]
+[[!template text="for you right here." start="00:05:42.160" video="mainVideo" id=subtitle]]
+[[!template text="So here we can see there are" start="00:05:43.919" video="mainVideo" id=subtitle]]
+[[!template text="two files side-by-side:" start="00:05:45.919" video="mainVideo" id=subtitle]]
+[[!template text="on the left, we have a `gabc` file," start="00:05:48.000" video="mainVideo" id=subtitle]]
+[[!template text="and then on the right," start="00:05:50.000" video="mainVideo" id=subtitle]]
+[[!template text="we have a `greg` file," start="00:05:51.022" video="mainVideo" id=subtitle]]
+[[!template text="both of them for the same score." start="00:05:52.000" video="mainVideo" id=subtitle]]
+[[!template text="Now in my opinion, the `gabc` on the left" start="00:05:53.360" video="mainVideo" id=subtitle]]
+[[!template text="is really rather difficult to read" start="00:05:55.600" video="mainVideo" id=subtitle]]
+[[!template text="at a glance." start="00:05:57.199" video="mainVideo" id=subtitle]]
+[[!template text="You can see there" start="00:05:58.319" video="mainVideo" id=subtitle]]
+[[!template text="the notes and the syllables" start="00:05:59.280" video="mainVideo" id=subtitle]]
+[[!template text="are really all grouped together" start="00:06:00.880" video="mainVideo" id=subtitle]]
+[[!template text="pretty tightly." start="00:06:02.160" video="mainVideo" id=subtitle]]
+[[!template text="Looking at the `greg` on the right," start="00:06:03.919" video="mainVideo" id=subtitle]]
+[[!template text="you can see that all of the" start="00:06:05.520" video="mainVideo" id=subtitle]]
+[[!template text="header information is the same," start="00:06:06.560" video="mainVideo" id=subtitle]]
+[[!template text="but the score itself" start="00:06:08.479" video="mainVideo" id=subtitle]]
+[[!template text="is split across several lines." start="00:06:09.680" video="mainVideo" id=subtitle]]
+[[!template text="The idea here is that" start="00:06:11.840" video="mainVideo" id=subtitle]]
+[[!template text="the notes and the corresponding syllables" start="00:06:13.039" video="mainVideo" id=subtitle]]
+[[!template text="will be on separate lines," start="00:06:15.039" video="mainVideo" id=subtitle]]
+[[!template text="one after the other," start="00:06:16.560" video="mainVideo" id=subtitle]]
+[[!template text="to help improve readability." start="00:06:17.600" video="mainVideo" id=subtitle]]
+[[!template new="1" text="Now the `greg` file format" start="00:06:20.639" video="mainVideo" id=subtitle]]
+[[!template text="is still a work-in-progress." start="00:06:21.906" video="mainVideo" id=subtitle]]
+[[!template text="It's really not" start="00:06:23.800" video="mainVideo" id=subtitle]]
+[[!template text="set in stone at all," start="00:06:24.960" video="mainVideo" id=subtitle]]
+[[!template text="but already I think this is a pretty" start="00:06:27.520" video="mainVideo" id=subtitle]]
+[[!template text="substantial quality-of-life improvement," start="00:06:29.840" video="mainVideo" id=subtitle]]
+[[!template text="and already `gregorian-mode` can, in fact," start="00:06:32.560" video="mainVideo" id=subtitle]]
+[[!template text="build scores from `greg` files" start="00:06:34.720" video="mainVideo" id=subtitle]]
+[[!template text="as long as they follow the conventions" start="00:06:36.720" video="mainVideo" id=subtitle]]
+[[!template text="that you see in this file here," start="00:06:38.300" video="mainVideo" id=subtitle]]
+[[!template text="and I'm planning to have that" start="00:06:40.400" video="mainVideo" id=subtitle]]
+[[!template text="quite a bit more well-defined" start="00:06:42.560" video="mainVideo" id=subtitle]]
+[[!template text="moving forward." start="00:06:44.240" video="mainVideo" id=subtitle]]
+[[!template text="Like I said, this is really still" start="00:06:45.360" video="mainVideo" id=subtitle]]
+[[!template text="a work-in-progress." start="00:06:47.360" video="mainVideo" id=subtitle]]
+[[!template new="1" text="Finally, I want to end today" start="00:06:49.520" video="mainVideo" id=subtitle]]
+[[!template text="by sharing some resources" start="00:06:51.039" video="mainVideo" id=subtitle]]
+[[!template text="where you can learn more." start="00:06:52.319" video="mainVideo" id=subtitle]]
+[[!template text="First, you can learn more about" start="00:06:53.840" video="mainVideo" id=subtitle]]
+[[!template text="the Gregorio project" start="00:06:55.039" video="mainVideo" id=subtitle]]
+[[!template text="on their official website," start="00:06:56.319" video="mainVideo" id=subtitle]]
+[[!template text="and I have the link for that" start="00:06:57.500" video="mainVideo" id=subtitle]]
+[[!template text="on this slide here," start="00:06:58.960" video="mainVideo" id=subtitle]]
+[[!template text="and this site has several detailed examples" start="00:07:00.720" video="mainVideo" id=subtitle]]
+[[!template text="and a lot of additional information" start="00:07:02.319" video="mainVideo" id=subtitle]]
+[[!template text="about the project" start="00:07:04.080" video="mainVideo" id=subtitle]]
+[[!template text="and about chant notation in general." start="00:07:05.840" video="mainVideo" id=subtitle]]
+[[!template text="It goes into much more depth" start="00:07:07.500" video="mainVideo" id=subtitle]]
+[[!template text="than what we covered in this presentation," start="00:07:09.500" video="mainVideo" id=subtitle]]
+[[!template text="and overall, it's really" start="00:07:12.000" video="mainVideo" id=subtitle]]
+[[!template text="a fantastic resource" start="00:07:13.199" video="mainVideo" id=subtitle]]
+[[!template text="for learning more about how to use" start="00:07:14.960" video="mainVideo" id=subtitle]]
+[[!template text="the Gregorio software and more about" start="00:07:16.560" video="mainVideo" id=subtitle]]
+[[!template text="the specifics of chant notation." start="00:07:19.360" video="mainVideo" id=subtitle]]
+[[!template text="Second, if you're interested in using" start="00:07:21.840" video="mainVideo" id=subtitle]]
+[[!template text="or contributing to `gregorian-mode`," start="00:07:23.680" video="mainVideo" id=subtitle]]
+[[!template text="you can check out the project on GitHub" start="00:07:25.840" video="mainVideo" id=subtitle]]
+[[!template text="with the link here on this slide." start="00:07:28.240" video="mainVideo" id=subtitle]]
+[[!template text="And if you're interested in helping out" start="00:07:30.400" video="mainVideo" id=subtitle]]
+[[!template text="in any way, feel free to open an issue," start="00:07:31.919" video="mainVideo" id=subtitle]]
+[[!template text="and we can discuss further." start="00:07:34.080" video="mainVideo" id=subtitle]]
+[[!template text="And finally, all of the examples" start="00:07:36.560" video="mainVideo" id=subtitle]]
+[[!template text="from today are also available on GitHub," start="00:07:38.160" video="mainVideo" id=subtitle]]
+[[!template text="and that's the last link on this slide," start="00:07:40.400" video="mainVideo" id=subtitle]]
+[[!template text="and you can feel free to experiment" start="00:07:42.479" video="mainVideo" id=subtitle]]
+[[!template text="with these and really just use them" start="00:07:44.160" video="mainVideo" id=subtitle]]
+[[!template text="in any way that you'd like." start="00:07:45.919" video="mainVideo" id=subtitle]]
+[[!template text="Now that's all that I had for today," start="00:07:48.560" video="mainVideo" id=subtitle]]
+[[!template text="but I do want to take a moment" start="00:07:50.319" video="mainVideo" id=subtitle]]
+[[!template text="to thank you all" start="00:07:51.360" video="mainVideo" id=subtitle]]
+[[!template text="for checking out my presentation," start="00:07:52.000" video="mainVideo" id=subtitle]]
+[[!template text="and I want to thank the organizers" start="00:07:54.160" video="mainVideo" id=subtitle]]
+[[!template text="for giving me some time" start="00:07:55.680" video="mainVideo" id=subtitle]]
+[[!template text="to speak with you all." start="00:07:56.400" video="mainVideo" id=subtitle]]
+[[!template text="I hope that this was at least" start="00:07:57.759" video="mainVideo" id=subtitle]]
+[[!template text="a little bit interesting to some of you," start="00:07:59.120" video="mainVideo" id=subtitle]]
+[[!template text="and I hope that you all enjoy" start="00:08:01.120" video="mainVideo" id=subtitle]]
+[[!template text="the rest of the conference." start="00:08:02.319" video="mainVideo" id=subtitle]]
+[[!template text="Thank you for your time today." start="00:08:02.800" video="mainVideo" id=subtitle]]
+[[!template text="captions by Hannah Miller" start="00:08:06.520" video="mainVideo" id=subtitle]]