-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
55 lines (53 loc) · 1.71 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
# 站点名称
site_name: 'Stream'
# 仓库链接
repo_url: https://github.com/ZJDoc/Stream
# 作者
site_author: 'zhujian'
# 版权信息
copyright: '2021, zhujian'
# 源文件目录
docs_dir: 'docs'
# 生成静态文件目录
site_dir: 'site'
# 额外信息
extra:
# 版本号
version: 0.1.0
# 主题
theme:
# name: 'readthedocs'
# name: 'mkdocs'
name: 'material'
# markdown扩展
markdown_extensions:
# 参考[MathJax](https://squidfunk.github.io/mkdocs-material/reference/mathjax/),支持数学公式渲染
- pymdownx.arithmatex:
generic: true
# 参考[Icons + Emojis](https://squidfunk.github.io/mkdocs-material/reference/icons-emojis/),执行Markdown Emoji
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
# mathjax
extra_javascript:
- javascripts/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# 导航
nav:
- Home: index.md
- 基础:
- '点播 vs. 直播': base/点播-直播.md
- 'RTMP vs. RTSP vs. HLS': base/rtmp-rtsp-hls.md
- 浏览器支持编解码器类型: base/supported_video_type.md
- FFMPEG:
- '[FFMPEG]安装': ffmpeg/ffmpeg-install.md
- '[FFMPEG]转换MPEG4为H264格式': ffmpeg/ffmpeg-mpeg4-to-h264.md
- 流服务器:
- nginx-rtmp-module: server/nginx-rtmp-module.md
- '[Docker]rtmp-hls-server': server/rtmp-hls-server.md
- 基于HTTP的点播服务器: server/nginx-http.md
- EasyDarwin: server/easydarwin.md
- 推流:
- '[FFMPEG]RTSP/RTMP推流': push/ffmpeg-rtsp-rtmp.md
- 问题解答: troubleshooting.md