agora-electron-sdk 4.4.0-dev.2 → 4.4.0
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/CHANGELOG.md +2 -7
- package/js/Private/AgoraBase.js +22 -22
- package/js/Private/AgoraMediaBase.js +1 -1
- package/js/Private/IAgoraRtcEngine.js +64 -64
- package/package.json +3 -3
- package/ts/Private/AgoraBase.ts +23 -23
- package/ts/Private/AgoraMediaBase.ts +19 -15
- package/ts/Private/IAgoraMediaPlayer.ts +11 -12
- package/ts/Private/IAgoraMusicContentCenter.ts +13 -1
- package/ts/Private/IAgoraRtcEngine.ts +193 -154
- package/ts/Private/IAgoraRtcEngineEx.ts +16 -18
- package/types/Private/AgoraBase.d.ts +23 -23
- package/types/Private/AgoraMediaBase.d.ts +19 -15
- package/types/Private/AgoraMediaBase.d.ts.map +1 -1
- package/types/Private/IAgoraMediaPlayer.d.ts +11 -12
- package/types/Private/IAgoraMediaPlayer.d.ts.map +1 -1
- package/types/Private/IAgoraMusicContentCenter.d.ts +13 -1
- package/types/Private/IAgoraMusicContentCenter.d.ts.map +1 -1
- package/types/Private/IAgoraRtcEngine.d.ts +193 -154
- package/types/Private/IAgoraRtcEngine.d.ts.map +1 -1
- package/types/Private/IAgoraRtcEngineEx.d.ts +16 -18
- package/types/Private/IAgoraRtcEngineEx.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
# [4.4.0
|
|
3
|
+
# [4.4.0](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.3.2...v4.4.0) (2024-08-29)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Features
|
|
7
7
|
|
|
8
|
-
*
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
### Reverts
|
|
12
|
-
|
|
13
|
-
* Revert "chore: optimize" ([49423ec](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/49423ec648392be27862afd8358b8b5fbaa5b127))
|
|
8
|
+
* support 4.4.0 ([#1197](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/1197)) ([490192f](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/490192ff7c2a6120ff56838191b8788b1a5599f1))
|
|
14
9
|
|
|
15
10
|
## [4.3.2](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.3.1...v4.3.2) (2024-06-06)
|
|
16
11
|
|
package/js/Private/AgoraBase.js
CHANGED
|
@@ -1597,7 +1597,7 @@ var VideoApplicationScenarioType;
|
|
|
1597
1597
|
*/
|
|
1598
1598
|
VideoApplicationScenarioType[VideoApplicationScenarioType["ApplicationScenarioGeneral"] = 0] = "ApplicationScenarioGeneral";
|
|
1599
1599
|
/**
|
|
1600
|
-
* ApplicationScenarioMeeting (1) is suitable for meeting scenarios.
|
|
1600
|
+
* ApplicationScenarioMeeting (1) is suitable for meeting scenarios. The SDK automatically enables the following strategies:
|
|
1601
1601
|
* In meeting scenarios where low-quality video streams are required to have a high bitrate, the SDK automatically enables multiple technologies used to deal with network congestions, to enhance the performance of the low-quality streams and to ensure the smooth reception by subscribers.
|
|
1602
1602
|
* The SDK monitors the number of subscribers to the high-quality video stream in real time and dynamically adjusts its configuration based on the number of subscribers.
|
|
1603
1603
|
* If nobody subscribers to the high-quality stream, the SDK automatically reduces its bitrate and frame rate to save upstream bandwidth.
|
|
@@ -1614,7 +1614,7 @@ var VideoApplicationScenarioType;
|
|
|
1614
1614
|
*/
|
|
1615
1615
|
VideoApplicationScenarioType[VideoApplicationScenarioType["ApplicationScenarioMeeting"] = 1] = "ApplicationScenarioMeeting";
|
|
1616
1616
|
/**
|
|
1617
|
-
*
|
|
1617
|
+
* ApplicationScenario1v1 (2) is suitable for 1v1 video call scenarios. To meet the requirements for low latency and high-quality video in this scenario, the SDK optimizes its strategies, improving performance in terms of video quality, first frame rendering, latency on mid-to-low-end devices, and smoothness under weak network conditions. 2: 1v1 video call scenario.
|
|
1618
1618
|
*/
|
|
1619
1619
|
VideoApplicationScenarioType[VideoApplicationScenarioType["ApplicationScenario1v1"] = 2] = "ApplicationScenario1v1";
|
|
1620
1620
|
})(VideoApplicationScenarioType = exports.VideoApplicationScenarioType || (exports.VideoApplicationScenarioType = {}));
|
|
@@ -1867,23 +1867,23 @@ var LocalVideoStreamReason;
|
|
|
1867
1867
|
*/
|
|
1868
1868
|
LocalVideoStreamReason[LocalVideoStreamReason["LocalVideoStreamReasonScreenCaptureWindowNotSupported"] = 20] = "LocalVideoStreamReasonScreenCaptureWindowNotSupported";
|
|
1869
1869
|
/**
|
|
1870
|
-
*
|
|
1870
|
+
* 21: (Windows only) The screen has not captured any data available for window sharing.
|
|
1871
1871
|
*/
|
|
1872
1872
|
LocalVideoStreamReason[LocalVideoStreamReason["LocalVideoStreamReasonScreenCaptureFailure"] = 21] = "LocalVideoStreamReasonScreenCaptureFailure";
|
|
1873
1873
|
/**
|
|
1874
|
-
*
|
|
1874
|
+
* 22: No permission for screen capture.
|
|
1875
1875
|
*/
|
|
1876
1876
|
LocalVideoStreamReason[LocalVideoStreamReason["LocalVideoStreamReasonScreenCaptureNoPermission"] = 22] = "LocalVideoStreamReasonScreenCaptureNoPermission";
|
|
1877
1877
|
/**
|
|
1878
|
-
*
|
|
1878
|
+
* 24: (Windows only) An unexpected error occurred during screen sharing (possibly due to window blocking failure), resulting in decreased performance, but the screen sharing process itself was not affected.
|
|
1879
1879
|
*/
|
|
1880
1880
|
LocalVideoStreamReason[LocalVideoStreamReason["LocalVideoStreamReasonScreenCaptureAutoFallback"] = 24] = "LocalVideoStreamReasonScreenCaptureAutoFallback";
|
|
1881
1881
|
/**
|
|
1882
|
-
*
|
|
1882
|
+
* 25: (Windows only) The window for the current screen capture is hidden and not visible on the current screen.
|
|
1883
1883
|
*/
|
|
1884
1884
|
LocalVideoStreamReason[LocalVideoStreamReason["LocalVideoStreamReasonScreenCaptureWindowHidden"] = 25] = "LocalVideoStreamReasonScreenCaptureWindowHidden";
|
|
1885
1885
|
/**
|
|
1886
|
-
*
|
|
1886
|
+
* 26: (Windows only) The window for screen capture has been restored from hidden state.
|
|
1887
1887
|
*/
|
|
1888
1888
|
LocalVideoStreamReason[LocalVideoStreamReason["LocalVideoStreamReasonScreenCaptureWindowRecoverFromHidden"] = 26] = "LocalVideoStreamReasonScreenCaptureWindowRecoverFromHidden";
|
|
1889
1889
|
/**
|
|
@@ -1891,15 +1891,15 @@ var LocalVideoStreamReason;
|
|
|
1891
1891
|
*/
|
|
1892
1892
|
LocalVideoStreamReason[LocalVideoStreamReason["LocalVideoStreamReasonScreenCaptureWindowRecoverFromMinimized"] = 27] = "LocalVideoStreamReasonScreenCaptureWindowRecoverFromMinimized";
|
|
1893
1893
|
/**
|
|
1894
|
-
*
|
|
1894
|
+
* 28: (Windows only) Screen capture has been paused. Common scenarios reporting this error code: The current screen may have been switched to a secure desktop, such as a UAC dialog box or Winlogon desktop.
|
|
1895
1895
|
*/
|
|
1896
1896
|
LocalVideoStreamReason[LocalVideoStreamReason["LocalVideoStreamReasonScreenCapturePaused"] = 28] = "LocalVideoStreamReasonScreenCapturePaused";
|
|
1897
1897
|
/**
|
|
1898
|
-
*
|
|
1898
|
+
* 29: (Windows only) Screen capture has resumed from paused state.
|
|
1899
1899
|
*/
|
|
1900
1900
|
LocalVideoStreamReason[LocalVideoStreamReason["LocalVideoStreamReasonScreenCaptureResumed"] = 29] = "LocalVideoStreamReasonScreenCaptureResumed";
|
|
1901
1901
|
/**
|
|
1902
|
-
*
|
|
1902
|
+
* 30: The displayer used for screen capture is disconnected.
|
|
1903
1903
|
*/
|
|
1904
1904
|
LocalVideoStreamReason[LocalVideoStreamReason["LocalVideoStreamReasonScreenCaptureDisplayDisconnected"] = 30] = "LocalVideoStreamReasonScreenCaptureDisplayDisconnected";
|
|
1905
1905
|
})(LocalVideoStreamReason = exports.LocalVideoStreamReason || (exports.LocalVideoStreamReason = {}));
|
|
@@ -2703,7 +2703,7 @@ var NetworkType;
|
|
|
2703
2703
|
var VideoViewSetupMode;
|
|
2704
2704
|
(function (VideoViewSetupMode) {
|
|
2705
2705
|
/**
|
|
2706
|
-
* 0: (Default)
|
|
2706
|
+
* 0: (Default) Clear all added views and replace with a new view.
|
|
2707
2707
|
*/
|
|
2708
2708
|
VideoViewSetupMode[VideoViewSetupMode["VideoViewSetupReplace"] = 0] = "VideoViewSetupReplace";
|
|
2709
2709
|
/**
|
|
@@ -3248,48 +3248,48 @@ var HeadphoneEqualizerPreset;
|
|
|
3248
3248
|
HeadphoneEqualizerPreset[HeadphoneEqualizerPreset["HeadphoneEqualizerInear"] = 67108866] = "HeadphoneEqualizerInear";
|
|
3249
3249
|
})(HeadphoneEqualizerPreset = exports.HeadphoneEqualizerPreset || (exports.HeadphoneEqualizerPreset = {}));
|
|
3250
3250
|
/**
|
|
3251
|
-
*
|
|
3251
|
+
* Voice AI tuner sound types.
|
|
3252
3252
|
*/
|
|
3253
3253
|
var VoiceAiTunerType;
|
|
3254
3254
|
(function (VoiceAiTunerType) {
|
|
3255
3255
|
/**
|
|
3256
|
-
*
|
|
3256
|
+
* 0: Mature male voice. A deep and magnetic male voice.
|
|
3257
3257
|
*/
|
|
3258
3258
|
VoiceAiTunerType[VoiceAiTunerType["VoiceAiTunerMatureMale"] = 0] = "VoiceAiTunerMatureMale";
|
|
3259
3259
|
/**
|
|
3260
|
-
*
|
|
3260
|
+
* 1: Fresh male voice. A fresh and slightly sweet male voice.
|
|
3261
3261
|
*/
|
|
3262
3262
|
VoiceAiTunerType[VoiceAiTunerType["VoiceAiTunerFreshMale"] = 1] = "VoiceAiTunerFreshMale";
|
|
3263
3263
|
/**
|
|
3264
|
-
*
|
|
3264
|
+
* 2: Elegant female voice. A deep and charming female voice.
|
|
3265
3265
|
*/
|
|
3266
3266
|
VoiceAiTunerType[VoiceAiTunerType["VoiceAiTunerElegantFemale"] = 2] = "VoiceAiTunerElegantFemale";
|
|
3267
3267
|
/**
|
|
3268
|
-
*
|
|
3268
|
+
* 3: Sweet female voice. A high-pitched and cute female voice.
|
|
3269
3269
|
*/
|
|
3270
3270
|
VoiceAiTunerType[VoiceAiTunerType["VoiceAiTunerSweetFemale"] = 3] = "VoiceAiTunerSweetFemale";
|
|
3271
3271
|
/**
|
|
3272
|
-
*
|
|
3272
|
+
* 4: Warm male singing. A warm and melodious male voice.
|
|
3273
3273
|
*/
|
|
3274
3274
|
VoiceAiTunerType[VoiceAiTunerType["VoiceAiTunerWarmMaleSinging"] = 4] = "VoiceAiTunerWarmMaleSinging";
|
|
3275
3275
|
/**
|
|
3276
|
-
*
|
|
3276
|
+
* 5: Gentle female singing. A soft and delicate female voice.
|
|
3277
3277
|
*/
|
|
3278
3278
|
VoiceAiTunerType[VoiceAiTunerType["VoiceAiTunerGentleFemaleSinging"] = 5] = "VoiceAiTunerGentleFemaleSinging";
|
|
3279
3279
|
/**
|
|
3280
|
-
*
|
|
3280
|
+
* 6: Husky male singing. A unique husky male voice.
|
|
3281
3281
|
*/
|
|
3282
3282
|
VoiceAiTunerType[VoiceAiTunerType["VoiceAiTunerHuskyMaleSinging"] = 6] = "VoiceAiTunerHuskyMaleSinging";
|
|
3283
3283
|
/**
|
|
3284
|
-
*
|
|
3284
|
+
* 7: Warm elegant female singing. A warm and mature female voice.
|
|
3285
3285
|
*/
|
|
3286
3286
|
VoiceAiTunerType[VoiceAiTunerType["VoiceAiTunerWarmElegantFemaleSinging"] = 7] = "VoiceAiTunerWarmElegantFemaleSinging";
|
|
3287
3287
|
/**
|
|
3288
|
-
*
|
|
3288
|
+
* 8: Powerful male singing. A strong and powerful male voice.
|
|
3289
3289
|
*/
|
|
3290
3290
|
VoiceAiTunerType[VoiceAiTunerType["VoiceAiTunerPowerfulMaleSinging"] = 8] = "VoiceAiTunerPowerfulMaleSinging";
|
|
3291
3291
|
/**
|
|
3292
|
-
*
|
|
3292
|
+
* 9: Dreamy female singing. A dreamy and soft female voice.
|
|
3293
3293
|
*/
|
|
3294
3294
|
VoiceAiTunerType[VoiceAiTunerType["VoiceAiTunerDreamyFemaleSinging"] = 9] = "VoiceAiTunerDreamyFemaleSinging";
|
|
3295
3295
|
})(VoiceAiTunerType = exports.VoiceAiTunerType || (exports.VoiceAiTunerType = {}));
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.RecorderInfo = exports.MediaRecorderConfiguration = exports.RecorderReasonCode = exports.RecorderState = exports.MediaRecorderStreamType = exports.MediaRecorderContainerFormat = exports.ExternalVideoSourceType = exports.VideoFrameProcessMode = exports.UserAudioSpectrumInfo = exports.AudioSpectrumData = exports.AudioParams = exports.AudioFramePosition = exports.AudioFrame = exports.AudioFrameType = exports.VideoModulePosition = exports.MediaPlayerSourceType = exports.VideoFrame = exports.ExternalVideoFrame = exports.VideoBufferType = exports.EglContextType = exports.AlphaStitchMode = exports.Hdr10MetadataInfo = exports.ColorSpace = exports.TransferID = exports.MatrixID = exports.RangeID = exports.PrimaryID = exports.IVideoFrameMetaInfo = exports.MetaInfoKey = exports.CameraVideoSourceType = exports.RenderModeType = exports.VideoPixelFormat = exports.AudioDualMonoMode = exports.AudioPcmFrame = exports.AudioEncodedFrameInfo = exports.PacketOptions = exports.ContentInspectConfig = exports.ContentInspectModule = exports.ContentInspectType = exports.ContentInspectResult = exports.MediaSourceType = exports.RawAudioFrameOpModeType = exports.AudioParameters = exports.BytesPerSample = exports.AudioRoute = exports.VideoSourceType = exports.ExtensionContext = void 0;
|
|
4
4
|
require("./extension/AgoraMediaBaseExtension");
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* The context information of the extension.
|
|
7
7
|
*/
|
|
8
8
|
class ExtensionContext {
|
|
9
9
|
}
|
|
@@ -665,132 +665,132 @@ var MediaDeviceStateType;
|
|
|
665
665
|
MediaDeviceStateType[MediaDeviceStateType["MediaDeviceStateUnplugged"] = 8] = "MediaDeviceStateUnplugged";
|
|
666
666
|
})(MediaDeviceStateType = exports.MediaDeviceStateType || (exports.MediaDeviceStateType = {}));
|
|
667
667
|
/**
|
|
668
|
-
*
|
|
668
|
+
* @ignore
|
|
669
669
|
*/
|
|
670
670
|
var VideoProfileType;
|
|
671
671
|
(function (VideoProfileType) {
|
|
672
672
|
/**
|
|
673
|
-
*
|
|
673
|
+
* @ignore
|
|
674
674
|
*/
|
|
675
675
|
VideoProfileType[VideoProfileType["VideoProfileLandscape120p"] = 0] = "VideoProfileLandscape120p";
|
|
676
676
|
/**
|
|
677
|
-
*
|
|
677
|
+
* @ignore
|
|
678
678
|
*/
|
|
679
679
|
VideoProfileType[VideoProfileType["VideoProfileLandscape120p3"] = 2] = "VideoProfileLandscape120p3";
|
|
680
680
|
/**
|
|
681
|
-
*
|
|
681
|
+
* @ignore
|
|
682
682
|
*/
|
|
683
683
|
VideoProfileType[VideoProfileType["VideoProfileLandscape180p"] = 10] = "VideoProfileLandscape180p";
|
|
684
684
|
/**
|
|
685
|
-
*
|
|
685
|
+
* @ignore
|
|
686
686
|
*/
|
|
687
687
|
VideoProfileType[VideoProfileType["VideoProfileLandscape180p3"] = 12] = "VideoProfileLandscape180p3";
|
|
688
688
|
/**
|
|
689
|
-
*
|
|
689
|
+
* @ignore
|
|
690
690
|
*/
|
|
691
691
|
VideoProfileType[VideoProfileType["VideoProfileLandscape180p4"] = 13] = "VideoProfileLandscape180p4";
|
|
692
692
|
/**
|
|
693
|
-
*
|
|
693
|
+
* @ignore
|
|
694
694
|
*/
|
|
695
695
|
VideoProfileType[VideoProfileType["VideoProfileLandscape240p"] = 20] = "VideoProfileLandscape240p";
|
|
696
696
|
/**
|
|
697
|
-
*
|
|
697
|
+
* @ignore
|
|
698
698
|
*/
|
|
699
699
|
VideoProfileType[VideoProfileType["VideoProfileLandscape240p3"] = 22] = "VideoProfileLandscape240p3";
|
|
700
700
|
/**
|
|
701
|
-
*
|
|
701
|
+
* @ignore
|
|
702
702
|
*/
|
|
703
703
|
VideoProfileType[VideoProfileType["VideoProfileLandscape240p4"] = 23] = "VideoProfileLandscape240p4";
|
|
704
704
|
/**
|
|
705
|
-
*
|
|
705
|
+
* @ignore
|
|
706
706
|
*/
|
|
707
707
|
VideoProfileType[VideoProfileType["VideoProfileLandscape360p"] = 30] = "VideoProfileLandscape360p";
|
|
708
708
|
/**
|
|
709
|
-
*
|
|
709
|
+
* @ignore
|
|
710
710
|
*/
|
|
711
711
|
VideoProfileType[VideoProfileType["VideoProfileLandscape360p3"] = 32] = "VideoProfileLandscape360p3";
|
|
712
712
|
/**
|
|
713
|
-
*
|
|
713
|
+
* @ignore
|
|
714
714
|
*/
|
|
715
715
|
VideoProfileType[VideoProfileType["VideoProfileLandscape360p4"] = 33] = "VideoProfileLandscape360p4";
|
|
716
716
|
/**
|
|
717
|
-
*
|
|
717
|
+
* @ignore
|
|
718
718
|
*/
|
|
719
719
|
VideoProfileType[VideoProfileType["VideoProfileLandscape360p6"] = 35] = "VideoProfileLandscape360p6";
|
|
720
720
|
/**
|
|
721
|
-
*
|
|
721
|
+
* @ignore
|
|
722
722
|
*/
|
|
723
723
|
VideoProfileType[VideoProfileType["VideoProfileLandscape360p7"] = 36] = "VideoProfileLandscape360p7";
|
|
724
724
|
/**
|
|
725
|
-
*
|
|
725
|
+
* @ignore
|
|
726
726
|
*/
|
|
727
727
|
VideoProfileType[VideoProfileType["VideoProfileLandscape360p8"] = 37] = "VideoProfileLandscape360p8";
|
|
728
728
|
/**
|
|
729
|
-
*
|
|
729
|
+
* @ignore
|
|
730
730
|
*/
|
|
731
731
|
VideoProfileType[VideoProfileType["VideoProfileLandscape360p9"] = 38] = "VideoProfileLandscape360p9";
|
|
732
732
|
/**
|
|
733
|
-
*
|
|
733
|
+
* @ignore
|
|
734
734
|
*/
|
|
735
735
|
VideoProfileType[VideoProfileType["VideoProfileLandscape360p10"] = 39] = "VideoProfileLandscape360p10";
|
|
736
736
|
/**
|
|
737
|
-
*
|
|
737
|
+
* @ignore
|
|
738
738
|
*/
|
|
739
739
|
VideoProfileType[VideoProfileType["VideoProfileLandscape360p11"] = 100] = "VideoProfileLandscape360p11";
|
|
740
740
|
/**
|
|
741
|
-
*
|
|
741
|
+
* @ignore
|
|
742
742
|
*/
|
|
743
743
|
VideoProfileType[VideoProfileType["VideoProfileLandscape480p"] = 40] = "VideoProfileLandscape480p";
|
|
744
744
|
/**
|
|
745
|
-
*
|
|
745
|
+
* @ignore
|
|
746
746
|
*/
|
|
747
747
|
VideoProfileType[VideoProfileType["VideoProfileLandscape480p3"] = 42] = "VideoProfileLandscape480p3";
|
|
748
748
|
/**
|
|
749
|
-
*
|
|
749
|
+
* @ignore
|
|
750
750
|
*/
|
|
751
751
|
VideoProfileType[VideoProfileType["VideoProfileLandscape480p4"] = 43] = "VideoProfileLandscape480p4";
|
|
752
752
|
/**
|
|
753
|
-
*
|
|
753
|
+
* @ignore
|
|
754
754
|
*/
|
|
755
755
|
VideoProfileType[VideoProfileType["VideoProfileLandscape480p6"] = 45] = "VideoProfileLandscape480p6";
|
|
756
756
|
/**
|
|
757
|
-
*
|
|
757
|
+
* @ignore
|
|
758
758
|
*/
|
|
759
759
|
VideoProfileType[VideoProfileType["VideoProfileLandscape480p8"] = 47] = "VideoProfileLandscape480p8";
|
|
760
760
|
/**
|
|
761
|
-
*
|
|
761
|
+
* @ignore
|
|
762
762
|
*/
|
|
763
763
|
VideoProfileType[VideoProfileType["VideoProfileLandscape480p9"] = 48] = "VideoProfileLandscape480p9";
|
|
764
764
|
/**
|
|
765
|
-
*
|
|
765
|
+
* @ignore
|
|
766
766
|
*/
|
|
767
767
|
VideoProfileType[VideoProfileType["VideoProfileLandscape480p10"] = 49] = "VideoProfileLandscape480p10";
|
|
768
768
|
/**
|
|
769
|
-
*
|
|
769
|
+
* @ignore
|
|
770
770
|
*/
|
|
771
771
|
VideoProfileType[VideoProfileType["VideoProfileLandscape720p"] = 50] = "VideoProfileLandscape720p";
|
|
772
772
|
/**
|
|
773
|
-
*
|
|
773
|
+
* @ignore
|
|
774
774
|
*/
|
|
775
775
|
VideoProfileType[VideoProfileType["VideoProfileLandscape720p3"] = 52] = "VideoProfileLandscape720p3";
|
|
776
776
|
/**
|
|
777
|
-
*
|
|
777
|
+
* @ignore
|
|
778
778
|
*/
|
|
779
779
|
VideoProfileType[VideoProfileType["VideoProfileLandscape720p5"] = 54] = "VideoProfileLandscape720p5";
|
|
780
780
|
/**
|
|
781
|
-
*
|
|
781
|
+
* @ignore
|
|
782
782
|
*/
|
|
783
783
|
VideoProfileType[VideoProfileType["VideoProfileLandscape720p6"] = 55] = "VideoProfileLandscape720p6";
|
|
784
784
|
/**
|
|
785
|
-
*
|
|
785
|
+
* @ignore
|
|
786
786
|
*/
|
|
787
787
|
VideoProfileType[VideoProfileType["VideoProfileLandscape1080p"] = 60] = "VideoProfileLandscape1080p";
|
|
788
788
|
/**
|
|
789
|
-
*
|
|
789
|
+
* @ignore
|
|
790
790
|
*/
|
|
791
791
|
VideoProfileType[VideoProfileType["VideoProfileLandscape1080p3"] = 62] = "VideoProfileLandscape1080p3";
|
|
792
792
|
/**
|
|
793
|
-
*
|
|
793
|
+
* @ignore
|
|
794
794
|
*/
|
|
795
795
|
VideoProfileType[VideoProfileType["VideoProfileLandscape1080p5"] = 64] = "VideoProfileLandscape1080p5";
|
|
796
796
|
/**
|
|
@@ -810,127 +810,127 @@ var VideoProfileType;
|
|
|
810
810
|
*/
|
|
811
811
|
VideoProfileType[VideoProfileType["VideoProfileLandscape4k3"] = 72] = "VideoProfileLandscape4k3";
|
|
812
812
|
/**
|
|
813
|
-
*
|
|
813
|
+
* @ignore
|
|
814
814
|
*/
|
|
815
815
|
VideoProfileType[VideoProfileType["VideoProfilePortrait120p"] = 1000] = "VideoProfilePortrait120p";
|
|
816
816
|
/**
|
|
817
|
-
*
|
|
817
|
+
* @ignore
|
|
818
818
|
*/
|
|
819
819
|
VideoProfileType[VideoProfileType["VideoProfilePortrait120p3"] = 1002] = "VideoProfilePortrait120p3";
|
|
820
820
|
/**
|
|
821
|
-
*
|
|
821
|
+
* @ignore
|
|
822
822
|
*/
|
|
823
823
|
VideoProfileType[VideoProfileType["VideoProfilePortrait180p"] = 1010] = "VideoProfilePortrait180p";
|
|
824
824
|
/**
|
|
825
|
-
*
|
|
825
|
+
* @ignore
|
|
826
826
|
*/
|
|
827
827
|
VideoProfileType[VideoProfileType["VideoProfilePortrait180p3"] = 1012] = "VideoProfilePortrait180p3";
|
|
828
828
|
/**
|
|
829
|
-
*
|
|
829
|
+
* @ignore
|
|
830
830
|
*/
|
|
831
831
|
VideoProfileType[VideoProfileType["VideoProfilePortrait180p4"] = 1013] = "VideoProfilePortrait180p4";
|
|
832
832
|
/**
|
|
833
|
-
*
|
|
833
|
+
* @ignore
|
|
834
834
|
*/
|
|
835
835
|
VideoProfileType[VideoProfileType["VideoProfilePortrait240p"] = 1020] = "VideoProfilePortrait240p";
|
|
836
836
|
/**
|
|
837
|
-
*
|
|
837
|
+
* @ignore
|
|
838
838
|
*/
|
|
839
839
|
VideoProfileType[VideoProfileType["VideoProfilePortrait240p3"] = 1022] = "VideoProfilePortrait240p3";
|
|
840
840
|
/**
|
|
841
|
-
*
|
|
841
|
+
* @ignore
|
|
842
842
|
*/
|
|
843
843
|
VideoProfileType[VideoProfileType["VideoProfilePortrait240p4"] = 1023] = "VideoProfilePortrait240p4";
|
|
844
844
|
/**
|
|
845
|
-
*
|
|
845
|
+
* @ignore
|
|
846
846
|
*/
|
|
847
847
|
VideoProfileType[VideoProfileType["VideoProfilePortrait360p"] = 1030] = "VideoProfilePortrait360p";
|
|
848
848
|
/**
|
|
849
|
-
*
|
|
849
|
+
* @ignore
|
|
850
850
|
*/
|
|
851
851
|
VideoProfileType[VideoProfileType["VideoProfilePortrait360p3"] = 1032] = "VideoProfilePortrait360p3";
|
|
852
852
|
/**
|
|
853
|
-
*
|
|
853
|
+
* @ignore
|
|
854
854
|
*/
|
|
855
855
|
VideoProfileType[VideoProfileType["VideoProfilePortrait360p4"] = 1033] = "VideoProfilePortrait360p4";
|
|
856
856
|
/**
|
|
857
|
-
*
|
|
857
|
+
* @ignore
|
|
858
858
|
*/
|
|
859
859
|
VideoProfileType[VideoProfileType["VideoProfilePortrait360p6"] = 1035] = "VideoProfilePortrait360p6";
|
|
860
860
|
/**
|
|
861
|
-
*
|
|
861
|
+
* @ignore
|
|
862
862
|
*/
|
|
863
863
|
VideoProfileType[VideoProfileType["VideoProfilePortrait360p7"] = 1036] = "VideoProfilePortrait360p7";
|
|
864
864
|
/**
|
|
865
|
-
*
|
|
865
|
+
* @ignore
|
|
866
866
|
*/
|
|
867
867
|
VideoProfileType[VideoProfileType["VideoProfilePortrait360p8"] = 1037] = "VideoProfilePortrait360p8";
|
|
868
868
|
/**
|
|
869
|
-
*
|
|
869
|
+
* @ignore
|
|
870
870
|
*/
|
|
871
871
|
VideoProfileType[VideoProfileType["VideoProfilePortrait360p9"] = 1038] = "VideoProfilePortrait360p9";
|
|
872
872
|
/**
|
|
873
|
-
*
|
|
873
|
+
* @ignore
|
|
874
874
|
*/
|
|
875
875
|
VideoProfileType[VideoProfileType["VideoProfilePortrait360p10"] = 1039] = "VideoProfilePortrait360p10";
|
|
876
876
|
/**
|
|
877
|
-
*
|
|
877
|
+
* @ignore
|
|
878
878
|
*/
|
|
879
879
|
VideoProfileType[VideoProfileType["VideoProfilePortrait360p11"] = 1100] = "VideoProfilePortrait360p11";
|
|
880
880
|
/**
|
|
881
|
-
*
|
|
881
|
+
* @ignore
|
|
882
882
|
*/
|
|
883
883
|
VideoProfileType[VideoProfileType["VideoProfilePortrait480p"] = 1040] = "VideoProfilePortrait480p";
|
|
884
884
|
/**
|
|
885
|
-
*
|
|
885
|
+
* @ignore
|
|
886
886
|
*/
|
|
887
887
|
VideoProfileType[VideoProfileType["VideoProfilePortrait480p3"] = 1042] = "VideoProfilePortrait480p3";
|
|
888
888
|
/**
|
|
889
|
-
*
|
|
889
|
+
* @ignore
|
|
890
890
|
*/
|
|
891
891
|
VideoProfileType[VideoProfileType["VideoProfilePortrait480p4"] = 1043] = "VideoProfilePortrait480p4";
|
|
892
892
|
/**
|
|
893
|
-
*
|
|
893
|
+
* @ignore
|
|
894
894
|
*/
|
|
895
895
|
VideoProfileType[VideoProfileType["VideoProfilePortrait480p6"] = 1045] = "VideoProfilePortrait480p6";
|
|
896
896
|
/**
|
|
897
|
-
*
|
|
897
|
+
* @ignore
|
|
898
898
|
*/
|
|
899
899
|
VideoProfileType[VideoProfileType["VideoProfilePortrait480p8"] = 1047] = "VideoProfilePortrait480p8";
|
|
900
900
|
/**
|
|
901
|
-
*
|
|
901
|
+
* @ignore
|
|
902
902
|
*/
|
|
903
903
|
VideoProfileType[VideoProfileType["VideoProfilePortrait480p9"] = 1048] = "VideoProfilePortrait480p9";
|
|
904
904
|
/**
|
|
905
|
-
*
|
|
905
|
+
* @ignore
|
|
906
906
|
*/
|
|
907
907
|
VideoProfileType[VideoProfileType["VideoProfilePortrait480p10"] = 1049] = "VideoProfilePortrait480p10";
|
|
908
908
|
/**
|
|
909
|
-
*
|
|
909
|
+
* @ignore
|
|
910
910
|
*/
|
|
911
911
|
VideoProfileType[VideoProfileType["VideoProfilePortrait720p"] = 1050] = "VideoProfilePortrait720p";
|
|
912
912
|
/**
|
|
913
|
-
*
|
|
913
|
+
* @ignore
|
|
914
914
|
*/
|
|
915
915
|
VideoProfileType[VideoProfileType["VideoProfilePortrait720p3"] = 1052] = "VideoProfilePortrait720p3";
|
|
916
916
|
/**
|
|
917
|
-
*
|
|
917
|
+
* @ignore
|
|
918
918
|
*/
|
|
919
919
|
VideoProfileType[VideoProfileType["VideoProfilePortrait720p5"] = 1054] = "VideoProfilePortrait720p5";
|
|
920
920
|
/**
|
|
921
|
-
*
|
|
921
|
+
* @ignore
|
|
922
922
|
*/
|
|
923
923
|
VideoProfileType[VideoProfileType["VideoProfilePortrait720p6"] = 1055] = "VideoProfilePortrait720p6";
|
|
924
924
|
/**
|
|
925
|
-
*
|
|
925
|
+
* @ignore
|
|
926
926
|
*/
|
|
927
927
|
VideoProfileType[VideoProfileType["VideoProfilePortrait1080p"] = 1060] = "VideoProfilePortrait1080p";
|
|
928
928
|
/**
|
|
929
|
-
*
|
|
929
|
+
* @ignore
|
|
930
930
|
*/
|
|
931
931
|
VideoProfileType[VideoProfileType["VideoProfilePortrait1080p3"] = 1062] = "VideoProfilePortrait1080p3";
|
|
932
932
|
/**
|
|
933
|
-
*
|
|
933
|
+
* @ignore
|
|
934
934
|
*/
|
|
935
935
|
VideoProfileType[VideoProfileType["VideoProfilePortrait1080p5"] = 1064] = "VideoProfilePortrait1080p5";
|
|
936
936
|
/**
|
|
@@ -950,7 +950,7 @@ var VideoProfileType;
|
|
|
950
950
|
*/
|
|
951
951
|
VideoProfileType[VideoProfileType["VideoProfilePortrait4k3"] = 1072] = "VideoProfilePortrait4k3";
|
|
952
952
|
/**
|
|
953
|
-
*
|
|
953
|
+
* @ignore
|
|
954
954
|
*/
|
|
955
955
|
VideoProfileType[VideoProfileType["VideoProfileDefault"] = 30] = "VideoProfileDefault";
|
|
956
956
|
})(VideoProfileType = exports.VideoProfileType || (exports.VideoProfileType = {}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agora-electron-sdk",
|
|
3
|
-
"version": "4.4.0
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"description": "agora-electron-sdk",
|
|
5
5
|
"main": "js/AgoraSdk",
|
|
6
6
|
"types": "types/AgoraSdk.d.ts",
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"yuv-canvas": "1.2.6"
|
|
143
143
|
},
|
|
144
144
|
"agora_electron": {
|
|
145
|
-
"iris_sdk_win": "https://download.agora.io/sdk/release/iris_4.4.0-build.
|
|
146
|
-
"iris_sdk_mac": "https://download.agora.io/sdk/release/iris_4.4.0-build.
|
|
145
|
+
"iris_sdk_win": "https://download.agora.io/sdk/release/iris_4.4.0-build.6_DCG_Windows_Video_Standalone_20240823_1146_504.zip",
|
|
146
|
+
"iris_sdk_mac": "https://download.agora.io/sdk/release/iris_4.4.0-build.6_DCG_Mac_Video_Standalone_20240823_1146_468.zip",
|
|
147
147
|
"native_sdk_win": "https://download.agora.io/sdk/release/Agora_Native_SDK_for_Windows_v4.4.0_FULL.zip",
|
|
148
148
|
"native_sdk_mac": "https://download.agora.io/sdk/release/Agora_Native_SDK_for_Mac_v4.4.0_FULL.zip"
|
|
149
149
|
}
|