mediasfu-angular 2.0.0 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -1
- package/dist/README.md +7 -1
- package/dist/fesm2022/mediasfu-angular.mjs +1 -1
- package/dist/fesm2022/mediasfu-angular.mjs.map +1 -1
- package/dist/lib/components/mediasfu-components/mediasfu-broadcast.component.d.ts +14 -14
- package/dist/lib/components/mediasfu-components/mediasfu-chat.component.d.ts +14 -14
- package/dist/lib/components/mediasfu-components/mediasfu-conference.component.d.ts +18 -18
- package/dist/lib/components/mediasfu-components/mediasfu-generic.component.d.ts +18 -18
- package/dist/lib/components/mediasfu-components/mediasfu-webinar.component.d.ts +18 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,6 +23,12 @@
|
|
|
23
23
|
|
|
24
24
|
MediaSFU offers a cutting-edge streaming experience that empowers users to customize their recordings and engage their audience with high-quality streams. Whether you're a content creator, educator, or business professional, MediaSFU provides the tools you need to elevate your streaming game.
|
|
25
25
|
|
|
26
|
+
<div style="text-align: center;">
|
|
27
|
+
|
|
28
|
+
<img src="https://mediasfu.com/images/header_1.jpg" alt="Preview Page" title="Preview Page" style="max-height: 600px;">
|
|
29
|
+
|
|
30
|
+
</div>
|
|
31
|
+
|
|
26
32
|
---
|
|
27
33
|
|
|
28
34
|
# MediaSFU Angular Module Documentation
|
|
@@ -30,7 +36,9 @@ MediaSFU offers a cutting-edge streaming experience that empowers users to custo
|
|
|
30
36
|
## Unlock the Power of MediaSFU Community Edition
|
|
31
37
|
|
|
32
38
|
**MediaSFU Community Edition is free and open-source**—perfect for developers who want to run their own media server without upfront costs. With robust features and simple setup, you can launch your media solution in minutes. **Ready to scale?** Upgrade seamlessly to **MediaSFU Cloud** for enterprise-grade performance and global scalability.
|
|
39
|
+
|
|
33
40
|
**[Get started now on GitHub!](https://github.com/MediaSFU/MediaSFUOpen)**
|
|
41
|
+
|
|
34
42
|
---
|
|
35
43
|
|
|
36
44
|
## Table of Contents
|
|
@@ -641,7 +649,7 @@ export class PreJoinPage implements OnInit {
|
|
|
641
649
|
|
|
642
650
|
if (response && response.success && response.data && 'roomName' in response.data) {
|
|
643
651
|
createData.eventID = response.data.roomName;
|
|
644
|
-
createData.secureCode = response.data.
|
|
652
|
+
createData.secureCode = response.data.secureCode;
|
|
645
653
|
createData.mediasfuURL = response.data.publicURL;
|
|
646
654
|
await this.createLocalRoom({ createData: createData, link: response.data.link });
|
|
647
655
|
} else {
|
package/dist/README.md
CHANGED
|
@@ -23,6 +23,12 @@
|
|
|
23
23
|
|
|
24
24
|
MediaSFU offers a cutting-edge streaming experience that empowers users to customize their recordings and engage their audience with high-quality streams. Whether you're a content creator, educator, or business professional, MediaSFU provides the tools you need to elevate your streaming game.
|
|
25
25
|
|
|
26
|
+
<div style="text-align: center;">
|
|
27
|
+
|
|
28
|
+
<img src="https://mediasfu.com/images/header_1.jpg" alt="Preview Page" title="Preview Page" style="max-height: 600px;">
|
|
29
|
+
|
|
30
|
+
</div>
|
|
31
|
+
|
|
26
32
|
---
|
|
27
33
|
|
|
28
34
|
# MediaSFU Angular Module Documentation
|
|
@@ -640,7 +646,7 @@ export class PreJoinPage implements OnInit {
|
|
|
640
646
|
|
|
641
647
|
if (response && response.success && response.data && 'roomName' in response.data) {
|
|
642
648
|
createData.eventID = response.data.roomName;
|
|
643
|
-
createData.secureCode = response.data.
|
|
649
|
+
createData.secureCode = response.data.secureCode;
|
|
644
650
|
createData.mediasfuURL = response.data.publicURL;
|
|
645
651
|
await this.createLocalRoom({ createData: createData, link: response.data.link });
|
|
646
652
|
} else {
|
|
@@ -7287,7 +7287,7 @@ class PreJoinPage {
|
|
|
7287
7287
|
});
|
|
7288
7288
|
if (response && response.success && response.data && 'roomName' in response.data) {
|
|
7289
7289
|
createData.eventID = response.data.roomName;
|
|
7290
|
-
createData.secureCode = response.data.
|
|
7290
|
+
createData.secureCode = response.data.secureCode;
|
|
7291
7291
|
createData.mediasfuURL = response.data.publicURL;
|
|
7292
7292
|
await this.createLocalRoom({ createData: createData, link: response.data.link });
|
|
7293
7293
|
}
|