-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from ndm13/chapter-support
Chapter support
- Loading branch information
Showing
7 changed files
with
82 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
batch: # Every file has a root batch element | ||
- watch: # Watch as many folders as you want | ||
folder: Season 1 # Folder name is static | ||
files: S01E\d{2}\.mkv # but file name is a RegExp | ||
files: S01E\d{2}\.mkv$ # but file name is a RegExp | ||
edits: # Edits are per-track | ||
- edit: track:a2 # Specify using mkvpropedit syntax | ||
set: # Set values to update | ||
flag-commentary: 1 # Booleans are 1/0 as per spec | ||
name: Director's Commentary # Strings don't need any special formatting | ||
name: Director's Commentary # Strings don't need any special formatting | ||
chapters: # Chapters will only be mapped if there is | ||
- Opening Credits # an entry for each chapter. | ||
- Episode # automkv files may include chapters, edits, | ||
- Ending Credits # both, or neither (but why neither?) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters