Skip to content

Commit

Permalink
Set blurred background from external api.
Browse files Browse the repository at this point in the history
Add setBlurredBackground command to external api.
  • Loading branch information
Axel Prola committed Sep 19, 2024
1 parent 936fa55 commit 9aa4e65
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 0 deletions.
13 changes: 13 additions & 0 deletions conference.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ import { AudioMixerEffect } from './react/features/stream-effects/audio-mixer/Au
import { createRnnoiseProcessor } from './react/features/stream-effects/rnnoise';
import { handleToggleVideoMuted } from './react/features/toolbox/actions.any';
import { muteLocal } from './react/features/video-menu/actions.any';
import { toggleBlurredBackgroundEffect } from './react/features/virtual-background/actions';

const logger = Logger.getLogger(__filename);
let room;
Expand Down Expand Up @@ -874,6 +875,18 @@ export default {
APP.store.dispatch(handleToggleVideoMuted(mute, showUI, ensureTrack));
},

/**
* Simulates blurred background selection/removal on video background. Used by API only.
* @param {string} [blurType] Blur type to apply. Accepted values are 'slight-blur', 'blur' or 'none'
*/
setBlurredBackground(blurType) {
const tracks = APP.store.getState()['features/base/tracks'];
const videoTrack = getLocalVideoTrack(tracks)?.jitsiTrack;
const muted = this.isLocalVideoMuted();

APP.store.dispatch(toggleBlurredBackgroundEffect(videoTrack, blurType, muted));
},

/**
* Retrieve list of ids of conference participants (without local user).
* @returns {string[]}
Expand Down
3 changes: 3 additions & 0 deletions modules/API/API.js
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,9 @@ function initCommands() {

APP.store.dispatch(setAssumedBandwidthBps(value));
},
'set-blurred-background': blurType => {
APP.conference.setBlurredBackground(blurType);
},
'set-follow-me': value => {

if (value) {
Expand Down
1 change: 1 addition & 0 deletions modules/API/external/external_api.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ const commands = {
sendParticipantToRoom: 'send-participant-to-room',
sendTones: 'send-tones',
setAssumedBandwidthBps: 'set-assumed-bandwidth-bps',
setBlurredBackground: 'set-blurred-background',
setFollowMe: 'set-follow-me',
setLargeVideoParticipant: 'set-large-video-participant',
setMediaEncryptionKey: 'set-media-encryption-key',
Expand Down
32 changes: 32 additions & 0 deletions react/features/virtual-background/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { IStore } from '../app/types';
import { createVirtualBackgroundEffect } from '../stream-effects/virtual-background';

import { BACKGROUND_ENABLED, SET_VIRTUAL_BACKGROUND } from './actionTypes';
import { VIRTUAL_BACKGROUND_TYPE } from './constants';
import logger from './logger';
import { IVirtualBackground } from './reducer';

Expand Down Expand Up @@ -71,3 +72,34 @@ export function backgroundEnabled(backgroundEffectEnabled?: boolean) {
backgroundEffectEnabled
};
}

/**
* Simulates blurred background selection/removal on video background. Used by API only.
*
* @param {JitsiLocalTrack} videoTrack - The targeted video track.
* @param {string} [blurType] - Blur type to apply. Accepted values are 'slight-blur', 'blur' or 'none'.
* @param {boolean} muted - Muted state of the video track.
* @returns {Promise}
*/
export function toggleBlurredBackgroundEffect(videoTrack: any, blurType: 'slight-blur' | 'blur' | 'none',
muted: boolean) {
return async function(dispatch: IStore['dispatch'], _getState: IStore['getState']) {
if (muted || !videoTrack || !blurType) {
return;
}

if (blurType === 'none') {
dispatch(toggleBackgroundEffect({
backgroundEffectEnabled: false,
selectedThumbnail: blurType
}, videoTrack));
} else {
dispatch(toggleBackgroundEffect({
backgroundEffectEnabled: true,
backgroundType: VIRTUAL_BACKGROUND_TYPE.BLUR,
blurValue: blurType === 'blur' ? 25 : 8,
selectedThumbnail: blurType
}, videoTrack));
}
};
}

0 comments on commit 9aa4e65

Please sign in to comment.