@3dsource/angular-unreal-module 0.0.54 → 0.0.55
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.
|
@@ -633,28 +633,28 @@ class VideoService extends SubService {
|
|
|
633
633
|
// store each type of codec we can get stats on
|
|
634
634
|
newStat.codecs = {};
|
|
635
635
|
newStat.currentRoundTripTime = -1;
|
|
636
|
-
stats.forEach((
|
|
636
|
+
stats.forEach((report) => {
|
|
637
637
|
// Get the inbound-rtp for video
|
|
638
|
-
if (
|
|
639
|
-
Object.assign(newStat,
|
|
638
|
+
if (report.type === 'inbound-rtp' && report.kind === 'video') {
|
|
639
|
+
Object.assign(newStat, report);
|
|
640
640
|
newStat.bytesReceivedStart =
|
|
641
641
|
this.aggregatedStats && this.aggregatedStats.bytesReceivedStart
|
|
642
642
|
? this.aggregatedStats.bytesReceivedStart
|
|
643
|
-
:
|
|
643
|
+
: report.bytesReceived;
|
|
644
644
|
newStat.framesDecodedStart =
|
|
645
645
|
this.aggregatedStats && this.aggregatedStats.framesDecodedStart
|
|
646
646
|
? this.aggregatedStats.framesDecodedStart
|
|
647
|
-
:
|
|
647
|
+
: report.framesDecoded;
|
|
648
648
|
newStat.timestampStart =
|
|
649
649
|
this.aggregatedStats && this.aggregatedStats.timestampStart
|
|
650
650
|
? this.aggregatedStats.timestampStart
|
|
651
|
-
:
|
|
651
|
+
: report.timestamp;
|
|
652
652
|
if (this.aggregatedStats && this.aggregatedStats.timestamp) {
|
|
653
653
|
// Get the mimetype of the video codec being used
|
|
654
|
-
if (
|
|
654
|
+
if (report.codecId &&
|
|
655
655
|
this.aggregatedStats.codecs &&
|
|
656
|
-
Object.hasOwn(this.aggregatedStats.codecs,
|
|
657
|
-
newStat.videoCodec = this.aggregatedStats.codecs[
|
|
656
|
+
Object.hasOwn(this.aggregatedStats.codecs, report.codecId)) {
|
|
657
|
+
newStat.videoCodec = this.aggregatedStats.codecs[report.codecId];
|
|
658
658
|
}
|
|
659
659
|
if (this.aggregatedStats.bytesReceived) {
|
|
660
660
|
// bitrate = bits received since last time / number of ms since last time
|
|
@@ -677,17 +677,27 @@ class VideoService extends SubService {
|
|
|
677
677
|
}
|
|
678
678
|
}
|
|
679
679
|
}
|
|
680
|
-
if (
|
|
681
|
-
Object.hasOwn(
|
|
682
|
-
newStat.currentRoundTripTime =
|
|
680
|
+
if (report.type === 'candidate-pair' &&
|
|
681
|
+
Object.hasOwn(report, 'currentRoundTripTime')) {
|
|
682
|
+
newStat.currentRoundTripTime = report.currentRoundTripTime ?? 0;
|
|
683
|
+
}
|
|
684
|
+
if (report.type === 'transport' &&
|
|
685
|
+
Object.hasOwn(report, 'selectedCandidatePairId')) {
|
|
686
|
+
const selectedPair = stats.get(report.selectedCandidatePairId);
|
|
687
|
+
const local = stats.get(selectedPair.localCandidateId);
|
|
688
|
+
const remote = stats.get(selectedPair.remoteCandidateId);
|
|
689
|
+
newStat.selectedPair = {
|
|
690
|
+
local: { type: local?.candidateType, url: local?.url },
|
|
691
|
+
remote: { type: remote?.candidateType, url: remote?.url },
|
|
692
|
+
};
|
|
683
693
|
}
|
|
684
694
|
// Store mimetype of each codec
|
|
685
695
|
if (Object.hasOwn(newStat, 'codecs') &&
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
const codecId =
|
|
690
|
-
newStat.codecs[codecId] =
|
|
696
|
+
report.type === 'codec' &&
|
|
697
|
+
report.mimeType &&
|
|
698
|
+
report.id) {
|
|
699
|
+
const codecId = report.id;
|
|
700
|
+
newStat.codecs[codecId] = report.mimeType
|
|
691
701
|
.replace('video/', '')
|
|
692
702
|
.replace('audio/', '');
|
|
693
703
|
}
|
|
@@ -3536,7 +3546,7 @@ function OnOpenHandler() {
|
|
|
3536
3546
|
* Keeps the max of numbers seen so far; resets to 0 whenever `reset$` emits.
|
|
3537
3547
|
* Emits `0` immediately on reset.
|
|
3538
3548
|
*/
|
|
3539
|
-
const
|
|
3549
|
+
const keepMaxUntilReset = (reset$) => {
|
|
3540
3550
|
return (source$) => merge(source$.pipe(map((value) => ({ type: 'value', value }))), reset$.pipe(map(() => ({ type: 'reset' })))).pipe(scan((max, evt) => (evt.type === 'reset' ? 0 : Math.max(max, evt.value)), 0));
|
|
3541
3551
|
};
|
|
3542
3552
|
|
|
@@ -4307,6 +4317,7 @@ class VideoStatsComponent {
|
|
|
4307
4317
|
'kind',
|
|
4308
4318
|
'type',
|
|
4309
4319
|
'codecs',
|
|
4320
|
+
'selectedPair',
|
|
4310
4321
|
//'pliCount',
|
|
4311
4322
|
//'sliCount',
|
|
4312
4323
|
//'transportId',
|
|
@@ -4383,7 +4394,7 @@ class UnrealStatusComponent {
|
|
|
4383
4394
|
/**
|
|
4384
4395
|
* An observable that emits smoothed percentage values from 0 to 100.
|
|
4385
4396
|
*/
|
|
4386
|
-
this.messagePercents = toSignal(this.store.select(selectTotalProgress).pipe(
|
|
4397
|
+
this.messagePercents = toSignal(this.store.select(selectTotalProgress).pipe(keepMaxUntilReset(this.resetPercentageSignal$), floatToSmoothPercents(), distinctUntilChanged(), map$1((progress) => progress || 0)));
|
|
4387
4398
|
}
|
|
4388
4399
|
ngOnInit() {
|
|
4389
4400
|
/**
|
|
@@ -4908,5 +4919,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImpor
|
|
|
4908
4919
|
* Generated bundle index. Do not edit.
|
|
4909
4920
|
*/
|
|
4910
4921
|
|
|
4911
|
-
export { AFKService, AfkRestartScreenLockerComponent, AggregatorService, AnswerHandler, CONSOLE_COMMAND_DISABLE_MESSAGES, CONSOLE_COMMAND_ENABLE_MESSAGES, CONSOLE_COMMAND_PIXEL_QUALITY, ClickableOverlayComponent, CommandTelemetryService, ConfigHandler, ConsoleExtensionsService, DATA_CHANNEL_CONNECTION_TIMEOUT, DEBOUNCE_TO_MANY_RESIZE_CALLS, DEFAULT_AFK_TIMEOUT, DEFAULT_AFK_TIMEOUT_PERIOD, DataFlowMonitor, DevModeService, DisconnectReason, EControlSchemeType, EMessageType, EToClientMessageType, FULL_HD_HEIGHT, FULL_HD_WIDTH, FilterSettingsComponent, FreezeFrameComponent, FreezeFrameService, IceCandidateHandler, InputOptions, InputService, InstanceReadyHandler, InstanceReservedHandler, KalmanFilter1D, LatencyTimings, LowBandwidthDetectorComponent, LowBandwidthModalComponent, MINIMAL_FPS, MouseButton, MouseButtonsMask, OnCloseHandler, OnErrorHandler, OnMessageHandler, OnOpenHandler, OrchestrationMessageTypes, POLLING_TIME, PingHandler, PlayerCountHandler, RegionsPingService, ResetTelemetry, SAME_SIZE_THRESHOLD, SCREEN_LOCKER_CONTAINER_ID, SIGNALLING_PERCENT_VALUE, SSInfoHandler, STREAMING_VIDEO_ID, SafePipe, SignallingService, SpecialKeyCodes, StatGraphComponent, StreamStatusTelemetryService, SubService, TelemetryStart, TelemetryStop, UNREAL_CONFIG, UnrealCommunicatorService, UnrealEffects, UnrealInternalSignalEvents, UnrealSceneComponent, UnrealStatusMessage, VideoLockerComponent, VideoRecorder, VideoService, VideoStatsComponent, WSCloseCode_CIRRUS_ABNORMAL_CLOSURE, WSCloseCode_CIRRUS_MAX_PLAYERS_ERROR, WSCloseCode_CIRRUS_PLAYER_DISCONNECTED, WSCloseCode_CIRRUS_STREAMER_KIKED_PLAYER, WSCloseCode_FORCE_CIRRUS_CLOSE, WSCloseCode_NORMAL_AFK_TIMEOUT, WSCloseCode_NORMAL_CLOSURE, WSCloseCode_NORMAL_MANUAL_DISCONNECT, WSCloseCodes, WS_OPEN_STATE, WS_TIMEOUT, WebRtcPlayerService, WebrtcErrorModalComponent, abortEstablishingConnection, alignProductsToPlaneCommand, changeLowBandwidth, changeStatusMainVideoOnScene, changeStreamResolutionAction, changeStreamResolutionSuccessAction,
|
|
4922
|
+
export { AFKService, AfkRestartScreenLockerComponent, AggregatorService, AnswerHandler, CONSOLE_COMMAND_DISABLE_MESSAGES, CONSOLE_COMMAND_ENABLE_MESSAGES, CONSOLE_COMMAND_PIXEL_QUALITY, ClickableOverlayComponent, CommandTelemetryService, ConfigHandler, ConsoleExtensionsService, DATA_CHANNEL_CONNECTION_TIMEOUT, DEBOUNCE_TO_MANY_RESIZE_CALLS, DEFAULT_AFK_TIMEOUT, DEFAULT_AFK_TIMEOUT_PERIOD, DataFlowMonitor, DevModeService, DisconnectReason, EControlSchemeType, EMessageType, EToClientMessageType, FULL_HD_HEIGHT, FULL_HD_WIDTH, FilterSettingsComponent, FreezeFrameComponent, FreezeFrameService, IceCandidateHandler, InputOptions, InputService, InstanceReadyHandler, InstanceReservedHandler, KalmanFilter1D, LatencyTimings, LowBandwidthDetectorComponent, LowBandwidthModalComponent, MINIMAL_FPS, MouseButton, MouseButtonsMask, OnCloseHandler, OnErrorHandler, OnMessageHandler, OnOpenHandler, OrchestrationMessageTypes, POLLING_TIME, PingHandler, PlayerCountHandler, RegionsPingService, ResetTelemetry, SAME_SIZE_THRESHOLD, SCREEN_LOCKER_CONTAINER_ID, SIGNALLING_PERCENT_VALUE, SSInfoHandler, STREAMING_VIDEO_ID, SafePipe, SignallingService, SpecialKeyCodes, StatGraphComponent, StreamStatusTelemetryService, SubService, TelemetryStart, TelemetryStop, UNREAL_CONFIG, UnrealCommunicatorService, UnrealEffects, UnrealInternalSignalEvents, UnrealSceneComponent, UnrealStatusMessage, VideoLockerComponent, VideoRecorder, VideoService, VideoStatsComponent, WSCloseCode_CIRRUS_ABNORMAL_CLOSURE, WSCloseCode_CIRRUS_MAX_PLAYERS_ERROR, WSCloseCode_CIRRUS_PLAYER_DISCONNECTED, WSCloseCode_CIRRUS_STREAMER_KIKED_PLAYER, WSCloseCode_FORCE_CIRRUS_CLOSE, WSCloseCode_NORMAL_AFK_TIMEOUT, WSCloseCode_NORMAL_CLOSURE, WSCloseCode_NORMAL_MANUAL_DISCONNECT, WSCloseCodes, WS_OPEN_STATE, WS_TIMEOUT, WebRtcPlayerService, WebrtcErrorModalComponent, abortEstablishingConnection, alignProductsToPlaneCommand, changeLowBandwidth, changeStatusMainVideoOnScene, changeStreamResolutionAction, changeStreamResolutionSuccessAction, clampPanToProductsCommand, commandCompleted, commandStarted, decodeData, destroyRemoteConnections, destroyUnrealScene, disconnectStream, dispatchResize, dropConnection, floatToSmoothPercents, forceResizeUnrealVideo, fromResizeObserver, fromSignal, fromUnrealCallBackSignal, getActiveUrl, getApplyCameraPresetCommand, getApplyZoomCommand, getCameraBoxCommand, getCameraRecenterCommand, getCameraSettingsCommand, getChangeGizmoTypeCommand, getChangeResolutionCommand, getClickSnapCommand, getControlSensitivityCommand, getDebugModeCommand, getDragCommand, getDragSequenceCommand, getDropCommand, getEnableComposureCommand, getEnableControlsCommand, getEnableSceneStateCallbackCommand, getEnableSpinnerModeCommand, getEnableTeleportCommand, getExecuteConsoleCommand, getFitToObjectsCommand, getFreezeFrameCommand, getFreezeFrameNative, getImageFromVideoStream, getInitSequenceByObjectNameCommand, getJumpToSequenceCommand, getLoadLevelCommand, getLoadProductCommand, getLoadSceneStateCommand, getLoopBackCommand, getMoveSelectedCommand, getPauseSequenceCommand, getPlaySequenceCommand, getRequestCameraPresetCommand, getResetControlClampsCommand, getRotateSelectedCommand, getRtcErrorMessage, getSelectProductByObjectNameCommand, getSetCameraControlClampsCommand, getSetControlCameraModeCommand, getSetFpsCommand, getSetMaterialCommand, getSetPawnMovementModeCommand, getSetSettingsSequenceCommand, getStopSequenceCommand, getTakeRenderCommand, getTakeSpinnerRenderCommand, getTakeSpinnerRenderPreviewCommand, getUnLoadAllProductsCommand, getUnLoadProductByObjectNameCommand, getUnfreezeFrameNative, getUnselectAllProductsCommand, getWeatherCommand, initSignalling, initialState, isLoaderScreenVisible, keepMaxUntilReset, mapQpToQuality, observeCommandResponse, provideAngularUnrealModule, removeExileCommands, resetAfk, resetAfkAction, resetConfig, resetIntroSrc, resetWarnTimeout, selectClientAndViewIds, selectCommandProgress, selectCommandsInProgress, selectFreezeFrameCombinedDataUrl, selectFreezeFrameDataUrl, selectFreezeFrameDataUrlFromVideo, selectFreezeFrameProgressMessageFromVideo, selectIsAutostart, selectIsExistMatchUrls, selectIsFreezeFrameLoading, selectIsVideoPlayingAndDataChannelConnected, selectLastCommandInProgress, selectLoaderCommands, selectShowLoader, selectShowReconnectPopup, selectSignalingParameters, selectStreamConfig, selectTotalProgress, selectWarnTimeout, sendSignal, setAwsInstance, setCirrusConnected, setCirrusDisconnected, setConfig, setDataChannelConnected, setEstablishingConnection, setFreezeFrame, setFreezeFrameFromVideo, setIntroImageSrc, setIntroVideoSrc, setLoadingImageSrc, setLoopBackCommandIsCompleted, setMatchUrls, setMaxFps, setProductsLocationCommand, setSignalingName, setStatusMessage, setStatusPercentSignallingServer, setStreamClientCompanyId, setStreamViewId, setViewportNotReady, setViewportReady, showPopupWithoutAutoStart, showUnrealErrorMessage, smoothTransition, startStream, trackMixpanelEvent, unLoadAllLevelsCommand, unrealFeature, unrealReducer, updateCirrusInfo };
|
|
4912
4923
|
//# sourceMappingURL=3dsource-angular-unreal-module.mjs.map
|