Welcome to MkDocs
For full documentation visit mkdocs.org.
Commands
mkdocs new [dir-name] - Create a new project.
mkdocs serve - Start the live-reloading docs server.
mkdocs build - Build the documentation site.
mkdocs -h - Print help message and exit.
Project layout
| mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.
|
Codeblock
| from NKCommon import *
no_filter = []
credit = []
AMZN = FileInfo(GlobSearch(f"Ninja*S01E{ep}*AMZN CBR*.mkv"), trim=(96, None))
HMAX = FileInfo(GlobSearch(f"Ninja*S01E{ep}*.HMAX*VARYG*.mkv"), force_bs=True)
src: vs.VideoNode = HMAX.init().std.AssumeFPS(fpsnum=24000, fpsden=1001)[98:]
|
Tabs
File embed sample
Also see this documentation on more features related to this.
| test.py |
|---|
| from vsmuxtools import Setup, mux
setup = Setup("01")
mux(
video_hevc.to_track(name="Vodes Encode", lang="jpn", default=True),
audio.to_track("Japanese 2.0 (Amazon)", "jpn", True),
subtitle.to_track("English (CR)", "en", True),
*fonts, # The * is necessary to unpack the list into multiple "tracks"
chapters
)
|