-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebars.js
More file actions
113 lines (113 loc) · 2.8 KB
/
Copy pathsidebars.js
File metadata and controls
113 lines (113 loc) · 2.8 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
module.exports = {
ssaiSidebar: [
{
type: 'category',
label: 'Server-Side Ad Insertion',
items: [
'ssai/index',
'ssai/creating-a-configuration',
'ssai/ad-behavior',
'ssai/ad-tracking',
'ssai/manifest-audio-captions',
'ssai/manifest-dash',
'ssai/manifest-hls',
'ssai/monitoring',
'ssai/slate-management',
'ssai/variables',
'ssai/vast-vmap-vpaid',
],
},
],
videoGuidesSidebar: [
{
type: 'category',
label: 'Guides to Web Video',
items: [
{
type: 'doc',
id: 'video-guides/how-video-streaming-works',
label: 'Video Streaming',
},
{ type: 'doc', id: 'video-guides/cmaf-streaming', label: 'CMAF' },
{
type: 'doc',
id: 'video-guides/video-streaming-formats-device-support',
label: 'Streaming Formats',
},
{
type: 'doc',
id: 'video-guides/video-codec-types-device-support',
label: 'Video Codecs',
},
{
type: 'doc',
id: 'video-guides/video-container-types-device-support',
label: 'Video Containers',
},
{
type: 'doc',
id: 'video-guides/supported-media-by-device',
label: 'Device Media Support',
},
],
},
],
faqSidebar: [
{
type: 'category',
label: 'Veeplay FAQ',
items: [
{ type: 'doc', id: 'faq/transcoding-api', label: 'Transcoding API' },
{ type: 'doc', id: 'faq/video-player', label: 'Video Player' },
],
},
],
javascriptPlayerExamplesSidebar: [
{
type: 'category',
label: 'JS Video Player Examples',
items: [
{
type: 'doc',
id: 'examples/js/simple-vanilla',
label: 'Simple Setup Using Vanilla JS',
},
{
type: 'doc',
id: 'examples/js/simple-react',
label: 'Simple Setup Using React',
},
{
type: 'doc',
id: 'examples/js/playlist-ui',
label: 'Create a Playlist UI',
},
{
type: 'doc',
id: 'examples/js/playlist-internal',
label: 'Playback a Series of Videos',
},
{
type: 'doc',
id: 'examples/js/arbitrary-time',
label: 'Playback at Arbitrary Time',
},
{
type: 'doc',
id: 'examples/js/ads',
label: 'Preroll And Midroll Ads Via VAST',
},
{
type: 'doc',
id: 'examples/js/image-overlay',
label: 'Create an Image Overlay',
},
{
type: 'doc',
id: 'examples/js/custom-overlay',
label: 'Create a Custom Overlay',
},
],
},
],
};