forked from mhashim6/PySceneDetect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
37 lines (33 loc) · 1.86 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
36
37
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
repo_name: "PySceneDetect on Github"
copyright: 'Copyright © 2014-2019 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: mkdocs
theme: readthedocs
google_analytics: ['UA-72551323-1', 'auto']
pages:
- 'PySceneDetect':
- 'Introduction': 'index.md'
- 'Features & Roadmap': 'features.md'
- 'Download': 'download.md'
- 'Changelog': 'changelog.md'
- 'Bug Reports and Contributing': 'contributing.md'
- 'License & Copyright Information': 'copyright.md'
- 'Getting Started:':
- 'Usage Example': 'examples/usage-example.md'
- 'Command Line Interface': 'examples/usage.md'
- 'Python Interface': 'examples/usage-python.md'
- 'Video Splitting Support': 'examples/video-splitting.md'
- 'Documentation & Reference:':
- 'Command-Line Parameters': 'reference/command-line-params.md'
- 'Scene Detection Method Details': 'reference/detection-methods.md'
- 'Python Interface & Integration With Other Applications': 'reference/python-usage.md'
- 'Python API Reference': 'reference/python-api.md'
- 'Creating New Scene Detection Methods': 'reference/creating-new-scene-detectors.md'
- 'Other Links':
- 'Third-Party Tools & Utilities': 'other/thirdparty.md'
- 'Other Similar Programs': 'other/similar.md'
- 'Useful Resources & Reading Material': 'other/resources.md'
markdown_extensions: [fenced_code]