forked from OpenVidu/openvidu.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpricing.html
1194 lines (1099 loc) · 92.1 KB
/
pricing.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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
layout: pagetop-layout
title: Check out our videoconferencing plans - OpenVidu Pricing
active: pricing
top-title: OPENVIDU PRICING
top-subtitle: Choose your preferred tier according to your needs
description: Check out OpenVidu's pricing plans and decide which one suits best your needs
---
<!-- Start Pricing -->
<section id="padding-top-bottom">
<div class="container">
<div class="features-row" id="cards-container">
<ul style="list-style-type: none; text-align: center">
<li><h4><a href="#openvidu-editions">OpenVidu Editions</a></h4></li>
<li><h4><a href="#openvidu-pricing">OpenVidu Pricing</a></h4></li>
<li><h4><a href="#pricing-examples">Pricing Examples</a></h4></li>
<!--<li><h4><a href="#openvidu-vs-other-alternatives">OpenVidu vs Other alternatives</a></h4></li>-->
<li><h4><a href="#pricing-faqs">Pricing FAQs</a></h4></li>
</ul>
<br><hr><br>
<div class="col-md-12 text-center">
<h2 id="openvidu-editions" class="section-title pricing-section-title">OpenVidu Editions</h2>
<p class="subheading"></p>
</div>
<div class="row" style="overflow-x: auto;">
<table class="table table-striped table-pricing" style="background: #e7e7e7;">
<colgroup>
<col span="1">
<col span="1" style="width: 30px;">
<col span="1">
<col span="1">
</colgroup>
<thead>
<tr>
<th scope="col" style="background: #fff; border-bottom: 0px;"></th>
<th scope="col" style="background: #fff; border-bottom: 0px;"></th>
<th scope="col" style="border-bottom: 2px solid #049145;"><span style="white-space: nowrap">OpenVidu
<div id="openvidu-pro-tag"
style=" pointer-events: none; display: inline-block; margin-right: 12px; background-color: #06d362; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 13px; line-height:21px; font-family: Montserrat, sans-serif;">
CE</div></span></th>
</th>
<th scope="col" style="border-bottom: 2px solid #005f76;"><span style="white-space: nowrap">OpenVidu
<div id="openvidu-pro-tag"
style=" pointer-events: none; display: inline-block; margin-right: 12px; background-color: rgb(0, 136, 170); color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 13px; line-height:21px; font-family: Montserrat, sans-serif;">
PRO</div></span></th>
<th scope="col" style="border-bottom: 2px solid #005f76;"><span style="white-space: nowrap">OpenVidu
<div id="openvidu-pro-tag"
style=" pointer-events: none; display: inline-block; margin-right: 12px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 13px; line-height:21px; font-family: Montserrat, sans-serif;">
ENTERPRISE</div></span></th>
</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">WebRTC media streams</th>
<td scope="row"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="WebRTC provides high quality and low latency real time video over the Internet"></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Recording</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/advanced-features/recording/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Record your video sessions with multiple configurations"></a></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Screen sharing</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/advanced-features/screen-share/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Easily integrate screen-sharing in your application"></a></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Audio and video filters</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/advanced-features/filters/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Apply real-time audio and video filters to media streams"></a></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">IP cameras</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/advanced-features/ip-cameras/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Integrate IP cameras with RTSP effortlessly"></a></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Clients: JS, Angular, React, Vue, Ionic, Electron, React Native, Android</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/full-control-ui/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Use your preferred client framework. Check our tutorials"></a></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Deployment on Premises</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/deployment/#openvidu-for-production-on-premises"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Deploy OpenVidu in your own Linux server"></a></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Deployment on Cloud</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/deployment/#openvidu-for-production-on-aws"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Deploy OpenVidu in Amazon Web Services" style="text-align: right;"></a></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">OpenVidu Inspector</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/openvidu-pro/openvidu-inspector/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="A powerful, easy-to-use and visually attractive dashboard to help with session monitoring, management and historical data"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Advanced session monitoring</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/openvidu-pro/monitoring-elastic-stack/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Elastic stack integration. Elasticsearch and Kibana provide advanced analysis capabilities"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Manual scalability</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/openvidu-pro/scalability/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Increment or decrement the number of Media Nodes manually"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Elasticity</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/openvidu-pro/scalability/#autoscaling"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Increment or decrement the number of Media Nodes automatically according to CPU load"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">S3 recording storage</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/advanced-features/recording/#uploading-recordings-to-s3"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Store your recordings in AWS S3"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Network quality API</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/advanced-features/network-quality/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Monitor the network quality of your clients"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Virtual Background</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/advanced-features/virtual-background/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Apply a blur effect or background images to video streams"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Speech To Text</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/advanced-features/speech-to-text/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Transcribe the conversations of your video sessions in multiple languages, even in real time"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Broadcasting</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/advanced-features/broadcast/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Broadcast your OpenVidu Sessions to YouTube, Twitch or any other RTMP ingestion service"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Fault Tolerance</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/openvidu-pro/fault-tolerance/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Detect crashed nodes and manually rebuild your video sessions"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Media Server</th>
<td scope="row"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Supported Media Servers"></td>
<td><a href="https://www.kurento.org/" target="_blank"><strong>Kurento</strong></a></td>
<td><a href="https://www.kurento.org/" target="_blank"><strong>Kurento</strong></a></td>
<td><a href="https://www.kurento.org/" target="_blank"><strong>Kurento</strong></a> / <a href="https://mediasoup.org/" target="_blank"><strong>mediasoup</strong></a></td>
</tr>
<tr>
<th scope="row">Streams per core</th>
<td scope="row"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Increment the performance of your hardware with OpenVidu ENTERPRISE"></td>
<td>100</td>
<td>100</td>
<td>500</td>
</tr>
<tr>
<th scope="row">High Availability</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/openvidu-enterprise/high-availability/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Replication and decentralization of all nodes in AWS. Load balancing of clients"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">Simulcast</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/openvidu-enterprise/simulcast/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="To provide improved quality"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">VP9</th>
<td scope="row"><a href="https://docs.openvidu.io/en/stable/advanced-features/media-codecs/"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Advanced codec by supported devices"></a></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-checkmark pricing-table-icon"></i></td>
</tr>
<tr>
<th scope="row">E2E encryption</th>
<td scope="row"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="End-to-End encryption with WebRTC Insertable Streams"></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-hammer pricing-table-icon" data-toggle="tooltip"
data-placement="right" title="Work in progress"></i></td>
</tr>
<tr>
<th scope="row">Large scale sessions</th>
<td scope="row"><i
class="icon ion-information-circled pricing-table-icon-info"
data-toggle="tooltip" data-placement="right"
title="Support for sessions with hundreds or even thousands of users"></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-close pricing-table-icon"></i></td>
<td><i class="icon ion-hammer pricing-table-icon" data-toggle="tooltip"
data-placement="right" title="Work in progress"></i></td>
</tr>
<tr>
<th scope="row">License</th>
<td scope="row"></td>
<td>Apache 2.0</td>
<td>Commercial</td>
<td>Commercial</td>
</tr>
<tr>
<th scope="row">Support</th>
<td scope="row"></td>
<td>Community support on forums</td>
<td>Email support in business hours</td>
<td>Email support in business hours</td>
</tr>
<tr>
<th scope="row">Price</th>
<td scope="row"></td>
<td><span style="font-size: 2em">Free</span></td>
<td><span style="font-size: 2em">0.0006$ <span style="font-size: 20px">core/minute</span></span><br>
<div style="font-size: 1em; margin-top: 8px"></div>
</td>
<td><span style="font-size: 2em">0.0018$ <span style="font-size: 20px">core/minute</span></span><br>
<div style="font-size: 1em; margin-top: 8px"></div>
</td>
</tr>
<tr>
<th scope="row"></th>
<td scope="row"></td>
<td><a href="https://docs.openvidu.io/en/stable/" class="btn-primary btn-scroll try-now-btn" target="_blank">Docs</a></td>
<td><a href="https://docs.openvidu.io/en/stable/openvidu-pro/" class="btn-primary btn-scroll pro-btn" target="_blank">Docs</a></td>
<td><a href="https://docs.openvidu.io/en/stable/openvidu-enterprise/" class="btn-primary btn-scroll pro-btn" style="background-color: #9c27b0" target="_blank">Docs</a></td>
</tr>
</tbody>
</table>
</div>
<a href="#" id="ov-pricing" style="visibility: hidden">Anchor tag</a>
<div style="font-size: 18px; color: #7a7a7a; margin-top: 30px; padding: 4px;">
<b style="font-family: Montserrat, sans-serif">OpenVidu <div id="openvidu-pro-tag"
style=" pointer-events: none; display: inline-block; margin-right: 6px; background-color: #06d362; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
CE</div></b> has an unrestricted Apache 2 open source license. You can deploy it anywhere (in a cloud
provider or on premises) and make modifications on your own to adapt the software to your
needs. It is <b>COMPLETELY FREE</b>.<br><br>
<b style="font-family: Montserrat, sans-serif">OpenVidu <div id="openvidu-pro-tag"
style=" pointer-events: none; display: inline-block; margin-right: 6px; background-color: #0088aa; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
PRO</div></b> is the middle-range commercial version of
OpenVidu with advanced features like scalability, elasticity, monitoring and
much more. Take a look to the table of features above to compare with other OpenVidu editions.
You can build an application using OpenVidu CE and, if you need it, you can purchase an OpenVidu
Pro license and start using it without any change in your code.<br><br>
<b style="font-family: Montserrat, sans-serif">OpenVidu <div id="openvidu-pro-tag"
style=" pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
ENTERPRISE</div></b> is the higher-end commercial version of
OpenVidu, bringing the best performance, improved media quality, better scalability and high availability for enterprise environments.
Take a look to the table of features above to compare with other OpenVidu editions.
Any application built for OpenVidu CE or OpenVidu Pro is compatible with OpenVidu Enterprise.
<div style="margin: 3em; text-align: center; color: #000000;">
<div style="font-size: 1.3em;">Any application built for OpenVidu CE is compatible with
OpenVidu Pro and OpenVidu Enterprise.<br>Any application built for OpenVidu Pro is compatible with OpenVidu Enterprise.</div>
</div>
<br><hr><br><br>
<div class="col-md-12 text-center">
<h2 id="openvidu-pricing" class="section-title pricing-section-title">OpenVidu Pricing</h2>
<p class="subheading"></p>
</div>
<span>OpenVidu <div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #0088aa; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
PRO</div></span> and <span>OpenVidu <div id="openvidu-pro-tag"
style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
ENTERPRISE</div></span> are deployed as a cluster following a Master-Worker model. Below are some examples of OpenVidu clusters.
<div class="row price-row" style="margin: 40px 0 40px 0">
<div class="col-md-4 col-xs-12">
<img class="pricing-cluster-img" src="/img/pricing/pro-architecture.png"/>
<div style="font-size: 14px; margin: 10px; text-align: center;">OpenVidu Pro cluster with 1 Master Node and 3 Media Nodes</div>
</div>
<div class="col-md-4 col-xs-12">
<img class="pricing-cluster-img" src="/img/pricing/enterprise-no-ha-architecture.png"/>
<div style="font-size: 14px; margin: 10px; text-align: center;">OpenVidu Enterprise cluster with 1 Master Node and 3 Media Nodes</div>
</div>
<div class="col-md-4 col-xs-12">
<img class="pricing-cluster-img" src="/img/pricing/enterprise-ha-architecture.png"/>
<div style="font-size: 14px; margin: 10px; text-align: center;">OpenVidu Enterprise cluster with 2 Master Nodes and 3 Media Nodes</div>
</div>
</div>
Every minute of an OpenVidu cluster is charged based on how many CPU cores are available for your cluster in total. Therefore, the unit to charge is cores per minute, and the unit price is:
<div class="row price-row">
<div class="col-sm-6 col-xs-12">
<div style="margin: 1em 0em 4em 0em; text-align: center; color: #000000;">
<div style="font-size: 4em;">$0.0006</div>
<div style="font-size: 1.5em;">per core per minute available for your <span style="white-space: nowrap">OpenVidu <div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #0088aa; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
PRO</div></span> cluster</div>
</div>
</div>
<div class="col-sm-6 col-xs-12">
<div style="margin: 1em 0em 4em 0em; text-align: center; color: #000000;">
<div style="font-size: 4em;">$0.0018</div>
<div style="font-size: 1.5em;">per core per minute available for your <span style="white-space: nowrap">OpenVidu <div id="openvidu-pro-tag"
style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
ENTERPRISE</div></span> cluster</div>
</div>
</div>
</div>
Taking into account the following information:<br><br>
<ol>
<li>You only pay for your OpenVidu cluster(s) for the time they are running. Usage will be
registered the moment you start your cluster and will stop as soon as you shut your cluster
down. When turned on, your cluster will be charged even in idle state (without active OpenVidu sessions).</li>
<li>You pay for every available core at any given time: if you cluster grows for one hour, that hour
you will pay more. If your cluster decreases the next hour, next hour will be cheaper. Master Nodes and
Media Nodes have the same core per minute price.</li>
<li>Your cluster (specifically your <a
href="https://docs.openvidu.io/en/stable/openvidu-pro/scalability/#openvidu-pro-architecture"
target="_blank">Master Nodes</a>) needs Internet access at all times. If your specific use case
doesn't allow your cluster to have Internet access, please contact us through <a href="/support"
target="_blank">Commercial page</a>.</li>
</ol>
<div style="
display: table;
border: 2px solid #ffb600;
border-radius: 5px;
width: 100%;
margin-top: 30px;
background-color: #FFFBF1;
margin-bottom: 25px;
padding: 5px 0 5px 0;">
<div style="display: table-cell; vertical-align: middle;">
<i class="icon ion-android-alert" style="
font-size: 50px;
color: #ffb600;
display: inline-block;
padding-left: 25%;
"></i></div>
<div style="
vertical-align: middle;
display: table-cell;
padding: 10px 20px;">
These prices only include the cost of an OpenVidu commercial license. If you are deploying your
OpenVidu Pro/Enterprise cluster in a cloud provider, you must take into account the
cost of the cloud resources you will be consuming (basically servers and bandwidth)
</div>
</div>
<div style="margin-top: 3em; margin-bottom: 1em; text-align: center; color: #7a7a7a;">
<div style="font-size: 1.5em;">There is a 15-day free trial period waiting for you!</div>
</div>
<p style="text-align: center">
<a href="/account" class="btn btn-xs btn-primary"
style="font-size: 15px; display: table; margin: auto" title="OpenVidu Pro"><span
style="display: table-cell; vertical-align:middle">Get an OpenVidu license</span></a>
</p>
<br><br><hr><br><br>
<div class="col-md-12 text-center">
<h2 id="pricing-examples" class="section-title pricing-section-title">Pricing Examples</h2>
<p class="subheading"></p>
</div>
As explained above, every minute of an OpenVidu Pro / Enterprise cluster is charged according to the number of cores
available for the cluster. So let's see some actual examples, first noting the following points:<br><br>
<ul>
<li>The examples represent a <strong>continuous usage</strong> of the cluster, but remember that you can shut it down whenever you are not using it
and that you can drop nodes to save resources.</li>
<li>Each example shows in a table the price for <strong>8 hours</strong>, <strong>1 day</strong> and <strong>1 month</strong> of continuous usage, as well as the
<strong>approximated amount of media streams</strong> and <strong>sessions of 5 participants</strong> the cluster would support. This is done to provide a basic
insight into the capacity of each cluster. These 5:5 sessions assume 25 media streams in total for each one of them (1 publisher and 4 subscribers per participant),
with no recording and no screen-sharing.</li>
<li>In every example <a target="_blank" href="https://docs.openvidu.io/en/stable/openvidu-enterprise/#kurento-vs-mediasoup"><strong>mediasoup</strong></a>
is assumed for Enterprise edition.</li>
</ul>
<br>
<hr>
<div class="row price-row">
<div class="col-sm-6 col-xs-12">
<h4 style="text-align: left">Cluster with 6 cores in total</h4>
<span>Let's suppose we have our Master Node running in a
2-core server and a single Media Node running in a 4-core server. This topology should be
enough for many use cases that do not expect tons of media streams established at the same
time.<br><br>
<table class="table table-striped table-pricing" style="background: #e7e7e7; margin-bottom: 12px;">
<thead>
<tr>
<th scope="col" style="border-bottom: 2px solid #005f76;"></th>
<th scope="col" style="border-bottom: 2px solid #005f76;"><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #0088aa; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
PRO</div></th>
<th scope="col" style="border-bottom: 2px solid #005f76;"><div id="openvidu-pro-tag"
style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
ENTERPRISE</div></th>
</tr>
</thead>
<tbody>
<tr>
<th>Number of media streams</th>
<td>400</td>
<td>2000</td>
</tr>
<tr>
<th>Number of sessions with 5 participants</th>
<td>16</td>
<td>80</td>
</tr>
<tr>
<th>8 hours</th>
<td>$1.73 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 6 cores * $0.0006 = 1.73"></td>
<td>$5.18 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 6 cores * $0.0018 = 5.18"></td>
</tr>
<tr>
<th>24 hours <span style="font-weight: normal">(1 day of uninterrupted use)</span></th>
<td>$5.18 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="24 hours * 60 minutes/hour * 6 cores * $0.0006 = 5.18"></td>
<td>$15.55 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="24 hours * 60 minutes/hour * 6 cores * $0.0018 = 15.55"></td>
</tr>
<tr>
<th>720 hours <span style="font-weight: normal">(1 month of uninterrupted use)</span></th>
<td>$155.52 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="720 hours * 60 minutes/hour * 6 cores * $0.0006 = 155.52"></td>
<td>$466.56 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="720 hours * 60 minutes/hour * 6 cores * $0.0018 = 466.56"></td>
</tr>
</tbody>
</table>
</span>
</div>
<div class="col-sm-6 col-xs-12 feature-img-col">
<img class="pricing-cluster-img" src="/img/docs/openvidu-pro/openvidu-cluster-6.png" />
</div>
</div>
<hr>
<div class="row price-row">
<div class="col-sm-6 col-xs-12">
<h4 style="text-align: left">Cluster with 10 cores in total</h4>
<span>If we have our Master Node running in a
2-core server and 2 Media Nodes running in 4-core servers, prices will be the following
ones.<br><br>
<table class="table table-striped table-pricing" style="background: #e7e7e7; margin-bottom: 12px;">
<thead>
<tr>
<th scope="col" style="border-bottom: 2px solid #005f76;"></th>
<th scope="col" style="border-bottom: 2px solid #005f76;"><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #0088aa; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
PRO</div></th>
<th scope="col" style="border-bottom: 2px solid #005f76;"><div id="openvidu-pro-tag"
style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
ENTERPRISE</div></th>
</tr>
</thead>
<tbody>
<tr>
<th>Number of media streams</th>
<td>800</td>
<td>4000</td>
</tr>
<tr>
<th>Number of sessions with 5 participants</th>
<td>32</td>
<td>160</td>
</tr>
<tr>
<th>8 hours</th>
<td>$2.88 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 10 cores * $0.0006 = 2.88"></td>
<td>$8.64 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 10 cores * $0.0018 = 8.64"></td>
</tr>
<tr>
<th>24 hours <span style="font-weight: normal">(1 day of uninterrupted use)</span></th>
<td>$8.64 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="24 hours * 60 minutes/hour * 10 cores * $0.0006 = 8.64"></td>
<td>$25.92 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="24 hours * 60 minutes/hour * 10 cores * $0.0018 = 25.92"></td>
</tr>
<tr>
<th>720 hours <span style="font-weight: normal">(1 month of uninterrupted use)</span></th>
<td>$259.2 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="720 hours * 60 minutes/hour * 10 cores * $0.0006 = 259.2"></td>
<td>$777.6 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="720 hours * 60 minutes/hour * 10 cores * $0.0018 = 777.6"></td>
</tr>
</tbody>
</table>
</span>
</div>
<div class="col-sm-6 col-xs-12 feature-img-col">
<img class="pricing-cluster-img" src="/img/docs/openvidu-pro/openvidu-cluster-10.png" />
</div>
</div>
<hr>
<div class="row price-row">
<div class="col-sm-6 col-xs-12">
<h4 style="text-align: left">Cluster with 18 cores in total</h4>
<span>Let's suppose we have our Master Node running in a
2-core server and 2 Media Nodes running in 8-core servers. This cluster is pretty powerful
and should be able to handle a considerable amount of users.<br><br>
<table class="table table-striped table-pricing" style="background: #e7e7e7; margin-bottom: 12px;">
<thead>
<tr>
<th scope="col" style="border-bottom: 2px solid #005f76;"></th>
<th scope="col" style="border-bottom: 2px solid #005f76;"><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #0088aa; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
PRO</div></th>
<th scope="col" style="border-bottom: 2px solid #005f76;"><div id="openvidu-pro-tag"
style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
ENTERPRISE</div></th>
</tr>
</thead>
<tbody>
<tr>
<th>Number of media streams</th>
<td>1600</td>
<td>8000</td>
</tr>
<tr>
<th>Number of sessions with 5 participants</th>
<td>64</td>
<td>320</td>
</tr>
<tr>
<th>8 hours</th>
<td>$5.18 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 18 cores * $0.0006 = 5.18"></td>
<td>$15.55 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 18 cores * $0.0018 = 15.55"></td>
</tr>
<tr>
<th>24 hours <span style="font-weight: normal">(1 day of uninterrupted use)</span></th>
<td>$15.55 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="24 hours * 60 minutes/hour * 18 cores * $0.0006 = 15.55"></td>
<td>$46.66 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="24 hours * 60 minutes/hour * 18 cores * $0.0018 = 46.66"></td>
</tr>
<tr>
<th>720 hours <span style="font-weight: normal">(1 month of uninterrupted use)</span></th>
<td>$466.56 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="720 hours * 60 minutes/hour * 18 cores * $0.0006 = 466.56"></td>
<td>$1399.68 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="720 hours * 60 minutes/hour * 18 cores * $0.0018 = 1399.68"></td>
</tr>
</tbody>
</table>
</span>
</div>
<div class="col-sm-6 col-xs-12 feature-img-col">
<img class="pricing-cluster-img" src="/img/docs/openvidu-pro/openvidu-cluster-18.png" />
</div>
</div>
<hr>
<div class="row price-row">
<div class="col-sm-6 col-xs-12">
<h4 style="text-align: left">OpenVidu Enterprise HA cluster with 12 cores in total</h4>
<span>OpenVidu Enterprise HA (<a href="https://docs.openvidu.io/en/stable/openvidu-enterprise/high-availability/">High Availability</a>)
provides Master Node replication. This ensures load balancing for clients and advanced fault tolerance, getting rid of any single
point of failure. <br><br>
<table class="table table-striped table-pricing" style="background: #e7e7e7; margin-bottom: 12px;">
<thead>
<tr>
<th scope="col" style="border-bottom: 2px solid #005f76;"></th>
<th scope="col" style="border-bottom: 2px solid #005f76;"><div id="openvidu-pro-tag"
style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
ENTERPRISE</div></th>
</tr>
</thead>
<tbody>
<tr>
<th>Number of media streams</th>
<td>4000</td>
</tr>
<tr>
<th>Number of sessions with 5 participants</th>
<td>160</td>
</tr>
<tr>
<th>8 hours</th>
<td>$10.37 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 12 cores * $0.0018 = 10.37"></td>
</tr>
<tr>
<th>24 hours <span style="font-weight: normal">(1 day of uninterrupted use)</span></th>
<td>$31.10 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="24 hours * 60 minutes/hour * 12 cores * $0.0018 = 31.10"></td>
</tr>
<tr>
<th>720 hours <span style="font-weight: normal">(1 month of uninterrupted use)</span></th>
<td>$933.12 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="720 hours * 60 minutes/hour * 12 cores * $0.0018 = 933.12"></td>
</tr>
</tbody>
</table>
</span>
</div>
<div class="col-sm-6 col-xs-12 feature-img-col">
<img class="pricing-cluster-img" src="/img/pricing/pricing-enterprise-ha.png" />
</div>
</div>
<hr>
<div class="row price-row">
<div class="col-sm-6 col-xs-12">
<h4 id="cluster-with-a-variable-number-of-cores" style="text-align: left">Cluster with a
variable number of cores</h4>
<span>This use case takes advantage of OpenVidu scalability features. Let's suppose we
deploy a cluster with the Master Node running in a 2-core server and a single
Media Node running in a 4-core server.<br><br>
We are fine running this cluster configuration during 8 hours. But suddenly we see a peak in
the demand, so we add 2 new Media Nodes to the cluster in 8-core servers to attend the
demand (see <a href="https://docs.openvidu.io/en/stable/openvidu-pro/scalability" target="_blank">Scalability</a>).<br><br>
This high usage level lasts for 8 hours, and then we are fine reducing the cluster size to
its initial state. So the last 8 hours of the day we would be running again just a single
Media Node in a 4-core server. The price for the full day would be:<br><br>
<table class="table table-striped table-pricing" style="background: #e7e7e7; margin-bottom: 12px;">
<thead>
<tr>
<th scope="col" style="border-bottom: 2px solid #005f76;"></th>
<th style="border-bottom: 2px solid #005f76;"></th>
<th scope="col" style="border-bottom: 2px solid #005f76;"><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #0088aa; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
PRO</div></th>
<th scope="col" style="border-bottom: 2px solid #005f76;"><div id="openvidu-pro-tag"
style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">
ENTERPRISE</div></th>
</tr>
</thead>
<tbody>
<tr style="background-color: #f9f9f9;">
<th rowspan="3">First 8 hours wit low demand <span style="font-weight: normal">(6 cores)</span></th>
<td style="border-left: 1px solid #ddd;">Price</td>
<td>$1.73 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 6 cores * $0.0006 = 1.73"></td>
<td>$5.18 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 6 cores * $0.0018 = 5.18"></td>
</tr>
<tr style="background-color: #f9f9f9;">
<td style="border-left: 1px solid #ddd;">Media streams</td>
<td>400</td>
<td>2000</td>
</tr>
<tr style="background-color: #f9f9f9;">
<td style="border-left: 1px solid #ddd;">Sessions with 5 participants</td>
<td>16</td>
<td>80</td>
</tr>
<tr style="background-color: #e7e7e7;">
<th rowspan="3">Next 8 hours with high demand <span style="font-weight: normal">(22 cores)</span></th>
<td style="border-left: 1px solid #ddd;">Price</td>
<td>$6.33 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 22 cores * $0.0006 = 6.33"></td>
<td>$19.00 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 22 cores * $0.0018 = 19.00"></td>
</tr>
<tr style="background-color: #e7e7e7;">
<td style="border-left: 1px solid #ddd;">Media streams</td>
<td>2000</td>
<td>10000</td>
</tr>
<tr style="background-color: #e7e7e7;">
<td style="border-left: 1px solid #ddd;">Sessions with 5 participants</td>
<td>80</td>
<td>400</td>
</tr>
<tr style="background-color: #f9f9f9;">
<th rowspan="3">Last 8 hours with low demand <span style="font-weight: normal">(6 cores)</span></th>
<td style="border-left: 1px solid #ddd;">Price</td>
<td>$1.73 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 6 cores * $0.0006 = 1.73"></td>
<td>$5.18 <i class="icon ion-information-circled pricing-table-icon-info icon-info-right" data-toggle="tooltip"
data-container="body" data-placement="right" title="8 hours * 60 minutes/hour * 6 cores * $0.0018 = 5.18"></td>
</tr>
<tr style="background-color: #f9f9f9;">
<td style="border-left: 1px solid #ddd;">Media streams</td>
<td>400</td>
<td>2000</td>
</tr>
<tr style="background-color: #f9f9f9;">
<td style="border-left: 1px solid #ddd;">Sessions with 5 participants</td>
<td>16</td>
<td>80</td>
</tr>
<tr style="background-color: #e7e7e7;">
<th>Total at the end of the day</th>
<td style="border-left: 1px solid #ddd;"></td>
<td>$9.79</td>
<td>$29.36</td>
</tr>
<tr style="background-color: #f9f9f9;">
<th>Total after a month</th>
<td style="border-left: 1px solid #ddd;"></td>
<td>$293.7</td>
<td>$881.1</td>
</tr>
</tbody>
</table>
</span>
</div>
<div class="col-sm-6 col-xs-12 feature-img-col">
<img class="pricing-cluster-img" src="/img/docs/openvidu-pro/openvidu-cluster-variable.png" />
</div>
</div>
<hr>
<br>
This table summarizes all of the examples above. It shows:<br><br>
<ul>
<li>The approximated maximum number of simultaneous media streams and 5:5 sessions supported by the cluster, based on the number of Media Node cores.
This numbers assume no recording, no screen-sharing and using <a href="https://docs.openvidu.io/en/stable/openvidu-enterprise/#kurento-vs-mediasoup">mediasoup</a> for Enterprise edition.</li>
<li>The price for each configuration, based on the total number of cores and the running time.</li>
</ul>
<br><br>
<div style="overflow-x: auto;">
<table class="table table-striped table-pricing" style="background: #e7e7e7; margin-bottom: 12px;">
<thead>
<tr>
<th scope="col" style="background-color: white; border: none"></th>
<th scope="col" style="border-bottom: 2px solid #005f76;" colspan="2" class="table-pricing-bordered">6 cores</th>
<th scope="col" style="border-bottom: 2px solid #005f76;" colspan="2" class="table-pricing-bordered">10 cores</th>
<th scope="col" style="border-bottom: 2px solid #005f76;" colspan="2" class="table-pricing-bordered">18 cores</th>
<th scope="col" style="border-bottom: 2px solid #005f76;" colspan="2" class="table-pricing-bordered">12 cores <a href="https://docs.openvidu.io/en/stable/openvidu-enterprise/high-availability/" target="_blank">HA</a></th>
<th scope="col" style="border-bottom: 2px solid #005f76;" colspan="2">Variable number of cores *</th>
</tr>
</thead>
<tbody>
<tr>
<th style="background-color: white; border: none"></th>
<td><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #0088aa; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">PRO</div></td>
<td class="table-pricing-bordered"><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">ENTERPRISE</div></td>
<td><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #0088aa; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">PRO</div></td>
<td class="table-pricing-bordered"><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">ENTERPRISE</div></td>
<td><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #0088aa; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">PRO</div></td>
<td class="table-pricing-bordered"><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">ENTERPRISE</div></td>
<td colspan="2" class="table-pricing-bordered"><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">ENTERPRISE</div></td>
<td><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #0088aa; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">PRO</div></td>
<td><div id="openvidu-pro-tag" style="font-family: Montserrat, sans-serif; pointer-events: none; display: inline-block; margin-right: 6px; background-color: #9c27b0; color: white; font-weight: bold; padding: 0px 5px; margin-left: 4px; border-radius: 3px; font-size: 18px; line-height:26px">ENTERPRISE</div></td>
</tr>
<tr>
<th class="table-pricing-bordered"><span style="white-space: nowrap">Media streams</th>
<td>400</td>
<td class="table-pricing-bordered">2000</td>
<td>800</td>
<td class="table-pricing-bordered">4000</td>
<td>1600</td>
<td class="table-pricing-bordered">8000</td>
<td colspan="2" class="table-pricing-bordered">4000</td>
<td><span style="white-space: nowrap">400 - 2000</span></td>
<td><span style="white-space: nowrap">2000 - 10000</span></td>
</tr>
<tr>
<th class="table-pricing-bordered"><span style="white-space: nowrap">Sessions with</span> <span style="white-space: nowrap">5 participants</span></th>
<td>16</td>
<td class="table-pricing-bordered">80</td>
<td>32</td>
<td class="table-pricing-bordered">160</td>
<td>64</td>
<td class="table-pricing-bordered">320</td>
<td colspan="2" class="table-pricing-bordered">160</td>
<td><span style="white-space: nowrap">16 - 80</span></td>
<td><span style="white-space: nowrap">80 - 400</span></td>
</tr>
<tr>
<th class="table-pricing-bordered">8 hours</th>
<td>$1.73</td>
<td class="table-pricing-bordered">$5.18</td>
<td>$2.88</td>
<td class="table-pricing-bordered">$8.64</td>
<td>$5.18</td>
<td class="table-pricing-bordered">$15.55</td>
<td colspan="2" class="table-pricing-bordered">$10.37</td>
<td><span style="white-space: nowrap">$1.73 - $6.33</span></td>
<td><span style="white-space: nowrap">$5.18 - $29.36</span></td>
</tr>
<tr>
<th class="table-pricing-bordered">24 hours</th>
<td>$5.18</td>
<td class="table-pricing-bordered">$15.55</td>
<td>$8.64</td>
<td class="table-pricing-bordered">$25.92</td>
<td>$15.55</td>
<td class="table-pricing-bordered">$46.66</td>
<td colspan="2" class="table-pricing-bordered">$31.10</td>
<td><span style="white-space: nowrap">$9.79</span></td>
<td><span style="white-space: nowrap">$29.36</span></td>
</tr>
<tr>
<th class="table-pricing-bordered">720 hours</th>
<td>$155.52</td>
<td class="table-pricing-bordered">$466.56</td>
<td>$259.2</td>
<td class="table-pricing-bordered">$777.6</td>
<td>$466.56</td>
<td class="table-pricing-bordered">$1399.68</td>
<td colspan="2" class="table-pricing-bordered">$933.12</td>
<td><span style="white-space: nowrap">$293.7</span></td>
<td><span style="white-space: nowrap">$881.1</span></td>
</tr>
</tbody>
</table>
</div>
<span style="font-size: 16px; display: block; text-align: right;"><strong>(*) See the scenario <a
href="#cluster-with-a-variable-number-of-cores">here</a></strong></span>
<div style="
display: table;
border: 2px solid #ffb600;
border-radius: 5px;
width: 100%;
margin-top: 40px;
background-color: #FFFBF1;
padding: 5px 0 5px 0;">
<div style="display: table-cell; vertical-align: middle;">
<i class="icon ion-android-alert" style="
font-size: 50px;
color: #ffb600;
display: inline-block;
padding-left: 25%;
"></i></div>
<div style="
vertical-align: middle;
display: table-cell;
padding: 10px 20px;">
These prices only include the cost of an OpenVidu commercial license. If you are deploying your
OpenVidu Pro/Enterprise cluster in a cloud provider, you must take into account the
cost of the cloud resources you will be consuming (basically servers and bandwidth)
</div>
</div>
<!--<br><br><hr><br><br>
<div class="col-md-12 text-center">
<h2 id="openvidu-vs-other-alternatives" class="section-title pricing-section-title">OpenVidu vs Other alternatives</h2>
<p class="subheading"></p>
</div>
OpenVidu commercial editions have been designed to offer a price that is not only fair, but rather inexpensive compared to other alternatives.
Of course, OpenVidu requires you to manage your own infrastructure, either on your own servers or on any cloud provider. But even taking into
account these infrastructure costs, the platform offers a pretty good deal. Let's perform a quick comparison study with the most known alternatives in the industry.
<br><br>
Let's set up a specific scenario to be able to handle real numbers. We will be considering the total cost of 100 sessions with 5 participants each,
with an average duration of 30 minutes per session.
<br><br>
<h4>OpenVidu cluster cost</h4>
The cost of an OpenVidu Pro or OpenVidu Enterprise cluster is calculated considering three main elements:<br><br>
<ul>
<li><b>License cost:</b> depending on the size of your cluster and your OpenVidu edition.</li>
<li><b>Infrastructure cost:</b> depending on your cloud provider.</li>
<li><b>Data bandwidth cost:</b> depending on the amount of video data passing through your OpenVidu cluster.
Video calls are very intensive in data bandwidth, and it varies according to video quality.</li>
</ul>
As OpenVidu allows on premises installations, both the infrastructure and data bandwidth cost could be considered 0
for those organizations which already own their infrastructure.
Of course all of the CPaaS platforms charge extra fees for other common features, such as recording and firewall traversal.
NOTE: all of these prices ignore volume discounts that companies usually offer for clients with-->
<br><br><hr><br><br>