forked from Breakthrough/PySceneDetect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
35 lines (31 loc) · 1.69 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
site_name: PySceneDetect
site_description: "Website and documentation for PySceneDetect, a program to automatically detect scene cuts and split videos. Written in Python, and also provides Python API in addition to command-line interface for use within other programs."
site_author: "Brandon Castellano"
repo_url: https://github.com/Breakthrough/PySceneDetect
repo_name: "PySceneDetect on Github"
copyright: 'Copyright © 2014-2021 Brandon Castellano. All rights reserved.<br />Licensed under BSD 3-Clause (see the <a href="https://github.com/Breakthrough/PySceneDetect/blob/master/LICENSE" alt="link to latest LICENSE file on Github">LICENSE file</a> for details).'
theme: readthedocs
google_analytics: ['UA-72551323-1', 'auto']
pages:
- 'PySceneDetect':
- 'Home': 'index.md'
- 'Features & Roadmap': 'features.md'
- 'Download': 'download.md'
- 'Releases (Changelog)': 'changelog.md'
- 'Frequently Asked Questions (FAQ)': 'faq.md'
- 'Bug Reports & Contributing': 'contributing.md'
- 'Supporting Development': 'supporting.md'
- 'Quickstart:':
- 'Usage Example': 'examples/usage-example.md'
- 'Command Line Interface': 'examples/usage.md'
- 'Video Splitting Support': 'examples/video-splitting.md'
- 'Python Interface': 'examples/usage-python.md'
- 'Documentation:':
- 'Command-Line Parameters': 'reference/command-line-params.md'
- 'Scene Detection Algorithms': 'reference/detection-methods.md'
- 'Python API & Integration': 'reference/python-api.md'
- 'Resources':
- 'Similar Programs & Tools': 'other/similar.md'
- 'Research & Literature': 'other/literature.md'
- 'License & Copyright Info': 'other/copyright.md'
markdown_extensions: [fenced_code]