Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Mtillmann committed Aug 13, 2023
1 parent 3d4d02a commit 27dab0c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,7 @@ be 00:00.
[mkvmergesimple](https://savvyadmin.com/adding-chapters-to-videos-using-mkv-containers/#:~:text=chapter.txt.-,CHAPTER01,-%3D00%3A00%3A00.000) apparently pads the chapter index to 2 digits, while [vorbis comment](https://wiki.xiph.org/Chapter_Extension#:~:text=two%20sequential%20chapters%3A-,CHAPTER001,-%3D00%3A00%3A00.000) uses 3 digits.

## How to use the apple chapters?
I honestly don't know as the only reference I could find is [NVEnc's documentation](https://github.com/rigaya/NVEnc/blob/master/NVEncC_Options.en.md#--chapter-string:~:text=CHAPTER03NAME%3Dchapter%2D3-,apple%20format,-(should%20be%20in.)
I honestly don't know as the only reference I could find is [NVEnc's documentation](https://github.com/rigaya/NVEnc/blob/master/NVEncC_Options.en.md#--chapter-string:~:text=CHAPTER03NAME%3Dchapter%2D3-,apple%20format,-(should%20be%20in.)

## What does "chapter/timeline lock" do?
When enabled, clicking anywhere on the timeline will select the chapter below. When disabled you can click on the timeline without the chapter below being selected and scrolled into view.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chaptertool",
"version": "0.3.3",
"version": "0.4.0",
"description": "Manage and generate chapters for podcasts and other media via cli or web",
"keywords": [
"podcast",
Expand Down
2 changes: 1 addition & 1 deletion src/views/partials/chapterEditPanel.pug
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ template(x-if="currentChapterIndex !== null")
div.row.p-1.mb-1
label.col-3.col-form-label(for="chapterTitle") Title
div.col-9
input.form-control#chapterTitle(x-model="data.chapters[currentChapterIndex].title", :placeholder="`Chapter ${currentChapterIndex + 1}`")
input.form-control#chapterTitle(x-model="data.chapters[currentChapterIndex].title", :placeholder="`Untitled Chapter ${currentChapterIndex + 1}`")
div.row(x-show="currentChapterIndex === 0 && data.chapters[currentChapterIndex].startTime !== 0")
div.col
p.small.alert.alert-info This is the first chapter but it doesn't start at 00:00:
Expand Down

0 comments on commit 27dab0c

Please sign in to comment.