-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
489 lines (461 loc) · 24.8 KB
/
index.html
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
---
title: Video Cloud Studio Documentation
parent: null
layout: landing_page
---
<div class="row justify-content-center">
<div class="col-12 col-lg-4 py-3">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-solid fa-map-pin"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Getting Started</span>
</h5>
<div class="card-text">
Just getting started with Video Cloud Studio?
</div>
<a class="card-link-mask" href="/get-started/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-solid fa-photo-film"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Managing Videos</span>
</h5>
<div class="card-text">
Learn how to upload and manage videos.
</div>
<a class="card-link-mask" href="/media/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-solid fa-play"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Managing Players</span>
</h5>
<div class="card-text">
Learn how to create and style players.
</div>
<a class="card-link-mask" href="/players/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-solid fa-laptop-code"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Publishing Videos & Players</span>
</h5>
<div class="card-text">
Learn different ways of publishing your videos and players.
</div>
<a class="card-link-mask" href="/publish/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-solid fa-gear"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Reviewing Analytics</span>
</h5>
<div class="card-text">
Learn about the types of analytics that are available.
</div>
<a class="card-link-mask" href="/analytics/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-solid fa-share-nodes"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Social Sharing</span>
</h5>
<div class="card-text">
Learn how to share videos out to social media accounts.
</div>
<a class="card-link-mask" href="/social/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-solid fa-satellite-dish"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Live Streaming</span>
</h5>
<div class="card-text">
The Live module is used to broadcast live events to both desktop and mobile devices.
</div>
<a class="card-link-mask" href="/live/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-regular fa-hand"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Interactivity</span>
</h5>
<div class="card-text">Brightcove Interactivity allows you to add interactivity to videos, including calls to action, chapters, click-to-buy, branching, and polls.</div>
<a class="card-link-mask" href="/interactivity/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
</i><i class="fa-regular fa-calendar"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Managing Channels</span>
</h5>
<div class="card-text">
Learn how to create and manage linear channels of video and live programs.
</div>
<a class="card-link-mask" href="/channels/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<!-- <i class="fa-solid fa-robot"></i> -->
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-sparkles"><path d="M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z"/><path d="M20 3v4"/><path d="M22 5h-4"/><path d="M4 17v2"/><path d="M5 18H3"/></svg>
</span><!--//card-icon-holder-->
<span class="card-title-text">Optimizing with AI</span>
</h5>
<div class="card-text">
Learn how to optimize your content with the Brightcove AI Suite.
</div>
<a class="card-link-mask" href="/ai-features/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3 collapse multi-collapse">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-solid fa-chart-simple"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Marketing Automation 1.0</span>
</h5>
<div class="card-text">
Learn how to connect Video Cloud with popular marketing automation platforms.
</div>
<a class="card-link-mask" href="/campaign/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3 collapse multi-collapse">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-solid fa-chart-line"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Marketing Automation 2.0 </span>
</h5>
<div class="card-text">
Learn how to connect Video Cloud with popular marketing automation platforms to track viewer engagement.
</div>
<a class="card-link-mask" href="/marketing-automation/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3 collapse multi-collapse">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-solid fa-puzzle-piece"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Integrations</span>
</h5>
<div class="card-text">
Learn about Video Cloud integrations with other platforms.
</div>
<a class="card-link-mask" href="/integrations/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3 collapse multi-collapse">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-solid fa-gears"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Administration</span>
</h5>
<div class="card-text">
Learn how to connect Video Cloud with popular marketing automation platforms to track viewer engagement.
</div>
<a class="card-link-mask" href="/admin/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3 collapse multi-collapse">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-solid fa-circle-info"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">General Information</span>
</h5>
<div class="card-text">
General information about Video Cloud Studio and working with videos in Video Cloud
</div>
<a class="card-link-mask" href="/general/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-lg-4 py-3 collapse multi-collapse">
<div class="card card-hover shadow-sm">
<div class="card-body">
<h5 class="card-title mb-3">
<span class="span-icon card-icon-holder icon-theme me-2" >
<i class="fa-regular fa-clipboard"></i>
</span><!--//card-icon-holder-->
<span class="card-title-text">Release Notes</span>
</h5>
<div class="card-text">
Learn how to connect Video Cloud with popular marketing automation platforms to track viewer engagement.
</div>
<a class="card-link-mask" href="/release-notes/index.html"></a>
</div><!--//card-body-->
</div><!--//card-->
</div><!--//col-->
</div><!--//row-->
<div class="row justify-content-center" style="width: 100%;">
<button class="btn btn-outline-dark" id="show_more_btn" type="button" data-bs-toggle="collapse" data-bs-target=".multi-collapse" aria-expanded="false" aria-controls="multiCollapseExample1 multiCollapseExample2" style="border: 2px solid black; width: 200px; border-radius: 50px;">SHOW MORE</button>
</div>
<script>
const btn = document.getElementById('show_more_btn');
let flag = true;
btn.addEventListener('click', () => {
if (flag === true) {
btn.textContent = 'SHOW LESS'
flag = false;
} else {
btn.textContent = 'SHOW MORE'
flag = true;
}
});
</script>
<!-- <h1>Video Cloud Studio Documentation</h1>
<article class="bcls-article">
<section class="card-wrapper">
<section onclick="window.location.pathname = '/get-started/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/get-started/index.html">Getting Started</a></h2>
<p>Just getting started with Video Cloud Studio?</p>
<ul>
<li><a href="/get-started/getting-started-video-cloud-studio.html">Getting Started with Video Cloud Studio</a></li>
<li><a href="/get-started/step-step-video-cloud-studio-publishing-workflow.html">Step-by-Step: Video Cloud Studio Publishing Workflow</a></li>
<li><a href="get-started/training/register-training.html">Instructor-led Training</a></li>
</ul>
<p><a href="/get-started/index.html">View All...</a></p>
</div>
</section>
<section onclick="window.location.pathname = '/media/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/media/index.html">Managing Videos</a></h2>
<p>Learn how to upload and manage videos.</p>
<ul>
<li><a href="/media/getting-started-media-module.html">Getting Started with the Media Module</a></li>
<li><a href="/media/editing-video-properties-using-media-module.html">Editing Video Properties</a></li>
<li><a href="/media/organizing-videos-using-folders.html">Organizing Videos Using Folders</a></li>
<li><a href="/media/uploading-poster-and-thumbnail-images.html">Uploading Poster and Thumbnail Images</a></li>
</ul>
<p><a href="/media/index.html">View All...</a></p>
</div>
</section>
<section onclick="window.location.pathname = '/cloud-playout/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="{{ site.cloud_playout_path }}index.html">Managing Cloud Playout Channels</a></h2>
<p>Learn how to create and manage linear channels using Cloud Playout.</p>
<ul>
<li><a href="{{ site.cloud_playout_path }}cloud-playout-overview.html">Overview: Cloud Playout</a></li>
<li><a href="{{ site.cloud_playout_path }}cloud-playout-stream-vod.html">Creating a Cloud Playout Channel</a></li>
<li><a href="{{ site.cloud_playout_path }}publishing/using-channel-actions.html">Using Channel Actions</a></li>
</ul>
<p><a href="{{ site.cloud_playout_path }}index.html">View All...</a></p>
</div>
</section>
<section onclick="window.location.pathname = '/players/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/players/index.html">Managing Players</a></h2>
<p>Learn how to create and style players.</p>
<ul>
<li><a href="/players/getting-started-players-module.html">Getting Started with the Players Module</a></li>
<li><a href="/players/styling-players.html">Styling Players</a></li>
<li><a href="/players/configuring-player-controls.html">Configuring Player Controls</a></li>
<li><a href="/players/configuring-social-properties-player.html">Configuring the Social Properties</a></li>
</ul>
<p><a href="/players/index.html">View All...</a></p>
</div>
</section>
<section onclick="window.location.pathname = '/publish/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/publish/index.html">Publishing Videos & Players</a></h2>
<p>Learn how to publish videos to the web and to social media.</p>
<ul>
<li><a href="/publish/publishing-videos-and-playlists-media-module.html">Publishing Videos and Playlists</a></li>
<li><a href="/publish/publishing-video-email.html">Publishing a Video to Email</a></li>
<li><a href="/publish/choosing-correct-embed-code.html">Choosing the Correct Embed Code</a></li>
</ul>
<p><a href="/publish/index.html">View All...</a></p>
</div>
</section>
<section onclick="window.location.pathname = '/social/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/social/index.html">Social Sharing</a></h2>
<p>Learn how to share videos out to social media accounts.</p>
<ul>
<li><a href="/social/creating-social-media-publishing-destinations.html">Creating Social Media Publishing Destinations</a></li>
<li><a href="/social/publishing-videos-social-media-platforms.html">Publishing Videos to Social Media Platforms</a></li>
<li><a href="/social/using-auto-sync-synchronize-videos-social-media-accounts.html">Using Auto Sync to Synchronize Videos to Social Media Accounts</a></li>
</ul>
<p><a href="/social/index.html">View All...</a></p>
</div>
</section>
<section onclick="window.location.pathname = '/live/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/live/index.html">Live Streaming</a></h2>
<p>Learn how to deliver live streaming video.</p>
<ul>
<li><a href="/live/get-started/delivering-live-streams.html">Delivering Live Streams</a></li>
<li><a href="/live/live-module/creating-and-managing-live-events-using-live-module.html">Creating and Managing Live Events using the Live Module</a></li>
<li><a href="/live/live-module/creating-video-clip-using-live-module.html">Creating a Video Clip</a></li>
</ul>
<p><a href="/live/index.html">View All...</a></p>
</div>
</section>
<section onclick="window.location.pathname = '/interactivity/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/interactivity/index.html">Interactivity</a></h2>
<p>Learn how to add interactivity to videos.</p>
<ul>
<li><a href="/interactivity/getting-started/configuring-player-plugin.html">Configuring a Player with the HapYak plugin</a></li>
<li><a href="/interactivity/getting-started/getting-started-interactivity.html">Getting Started with Interactivity</a></li>
<li><a href="/interactivity/getting-started/interactive-video-types.html">Interactive Video Types</a></li>
</ul>
<p><a href="/interactivity/index.html">View All...</a></p>
</div>
</section>
<section onclick="window.location.pathname = '/campaign/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/campaign/index.html">Marketing Automation</a></h2>
<p>Learn how to track video engagement and integrate with marketing automation platforms.</p>
<ul>
<li><a href="/campaign/get-started/getting-started-campaign-module.html">Getting Started with the Campaign Module</a></li>
<li><a href="/campaign/general/creating-campaign-enabled-player.html">Creating a Campaign-enabled Player</a></li>
<li><a href="/campaign/integrations/index.html">Marketing Automation Platform Integrations</a></li>
</ul>
<p><a href="/campaign/index.html">View All...</a></p>
</div>
</section>
<section onclick="window.location.pathname = '/analytics/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/analytics/index.html">Reviewing Analytics</a></h2>
<p>Learn how to view video analytics to see how your videos are performing.</p>
<ul>
<li><a href="/analytics/performance-report-reference.html">Performance Report Reference</a></li>
<li><a href="/analytics/engagement-report-reference.html">Engagement Report Reference</a></li>
<li><a href="/analytics/creating-custom-analytics-reports.html">Creating Custom Analytics Reports</a></li>
</ul>
<p><a href="/analytics/index.html">View All...</a></p>
</div>
</section>
<section onclick="window.location.pathname = '/admin/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/admin/index.html">Administering Accounts</a></h2>
<p>Learn how to administer a Video Cloud account.</p>
<ul>
<li><a href="/admin/managing-users.html">Managing Users</a></li>
<li><a href="/admin/managing-account-settings.html">Managing Account Settings</a></li>
<li><a href="/admin/creating-custom-metadata-fields.html">Creating Custom Metadata Fields</a></li>
</ul>
<p><a href="/admin/index.html">View All...</a></p>
</div>
</section>
<section onclick="window.location.pathname = '/general/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/general/index.html">General Information</a></h2>
<p>General information about Video Cloud Studio.</p>
<ul>
<li><a href="/general/architecture/overview-dynamic-delivery.html">Overview of Dynamic Delivery</a></li>
<li><a href="/general/architecture/overview-context-aware-encoding.html">Overview of Context Aware Encoding</a></li>
<li><a href="/general/architecture/video-cloud-architecture-overview.html">Video Cloud Architecture Overview</a></li>
<li><a href="/general/references/video-source-file-specifications-and-recommendations.html">Video Source File Recommendations</a></li>
</ul>
<p><a href="/general/index.html">View All...</a></p>
</div>
</section>
<section onclick="window.location.pathname = '/get-started/training/index.html';" class="bcls-card">
<div class="card-content">
<h2 id="training"><a href="/get-started/training/index.html">Training</a></h2>
<p>On-Demand training and product training videos.</p>
<ul>
<li><a href="/get-started/training/training-demand-video-cloud-basics.html">Training on Demand: Video Cloud Basics</a></li>
<li><a href="/get-started/training/training-demand-introduction-video-cloud.html">Training on Demand: Introduction to Video Cloud</a></li>
<li><a href="/get-started/training/training-demand-introduction-video-cloud-analytics.html">Training on Demand: Introduction to Video Cloud Analytics</a></li>
<li><a href="/get-started/training/video-cloud-studio-training-videos.html">Video Cloud Studio Training Videos</a></li>
</ul>
</div>
</section>
<section onclick="window.location.pathname = '/release-notes/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/release-notes/index.html">Release Notes</a></h2>
<p>Learn about new product features and updates.</p>
<ul>
<li><a href="https://support.brightcove.com/product-updates.html#video_cloud">Video Cloud Studio Release Notes</a></li>
</ul>
</div>
</section>
<section onclick="window.location.pathname = '/support/index.html';" class="bcls-card">
<div class="card-content">
<h2><a href="/support/index.html">Support</a></h2>
<p>Have a question or need help?</p>
<ul>
<li><a href="/support/viewing-brightcove-system-status-page.html">View Brightcove System Status</a></li>
<li><a href="/support/opening-case-with-brightcove-support.html">Open a Support Case</a></li>
</ul>
</div>
</section>
</section>
</article> -->