-
Notifications
You must be signed in to change notification settings - Fork 52
/
mkdocs.yml
56 lines (49 loc) · 1.22 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
site_name: python-ffmpeg
site_description: A python binding for FFmpeg which provides sync and async APIs
site_author: Jonghwan Hyeon
repo_url: https://github.com/jonghwanhyeon/python-ffmpeg
repo_name: jonghwanhyeon/python-ffmpeg
nav:
- Overview: index.md
- Examples:
- examples/transcoding.md
- examples/recording.md
- examples/mapping.md
- examples/using-output-to-stdout.md
- examples/feeding-data-to-stdin.md
- examples/monitoring-status.md
- examples/asynchronous-listeners.md
- examples/querying-metadata.md
- examples/handling-errors.md
- api.md
theme:
name: material
icon:
logo: fontawesome/solid/video
repo: fontawesome/brands/github
features:
- content.code.annotate
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- autorefs
- mkdocstrings:
handlers:
python:
options:
show_root_toc_entry: false
members_order: source
group_by_category: false
show_bases: true
show_source: true
watch:
- ffmpeg