PotPlayer: Создать субтитры

Обучающий урок по Unity содержал .PDF-файл с аннотациями по проекту. Поскольку я скачал видео-урок к себе на компьютер, то решил добавить эти аннотации прямо в видео. Вообще в PotPlayer есть функция ручного ввода субтитров, только я так и не разобрался, как сохранять созданные субтитры, поэтому решил создать файл субтитров вручную.
К уроку прилагался файл PDF с аннотациями:

03:00 Please delete the default Directional Light from the Hierarchy
03:30 Once you have dragged the Environment Prefab into the Hierarchy,
you might notice that Unity will automatically start to build your
scene’s lighting. You can monitor its progress with the blue bar in the
lower right of the screen but otherwise should be able to carry on the
tutorial as normal.

и т.д.
Чтобы его переделать на SRT, нужно немного изменить содержимое и сохранить файл с расширением .SRT:

001
00:03:00,000 --> 00:03:05,000
Please <b>delete</b> the default <b>Directional Light</b> from the Hierarchy

002
00:03:30,000 --> 00:03:35,000
Once you have dragged the Environment Prefab into the Hierarchy,
you might notice that Unity will automatically start to build your
scene’s lighting. You can monitor its progress with the blue bar in the
lower right of the screen but otherwise should be able to carry on the
tutorial as normal.

Форматирование как в HTML:
Жирный шрифт – <b> … </b> или {b} … {/b}
Курсив – <i> … </i> или {i} … {/i}
Подчеркнутый – <u> …</u> или {u} … {/u}
Цвет шрифта – <font color="название_цвета или #код">… </font>

Пример с цветом:

006
00:10:56.000 --> 00:11:01.000
You must also <b>uncheck Has Exit Time</b> for the animations to work
correctly or you will see the error: "<font color="#be3844">Asset ‘PlayerAC’: Transition in state
‘AnyState’ doesn’t have an Exit Time or any condition, transition will be
ignored</font>".