bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/audio-stream-volume/styles.js
prlanzarin d6c7f23a0e feat(audio): local echo test and audio energy meter
New features:
  - A simplified echo test mode that only does a local loopback (instead of
  going to FS and back)
  - A volume meter for microphone streams to the AudioSettings view

Those two features are experimental and disabled by default; see
public.app.media.simplifiedEchoTest and public.app.media.showVolumeMeter configs

Collateral changes:
  - fix: localize fallback device strings in AudioSettings/DeviceSelector
  - Refactor on some media stream utils to be re-usable across components
  - Refactor in AudioSettings to keep gUM #uses stable.
    * TODO: need to pass streams through AudioManager to avoid the surplus gUM.
  - fix(audio): drop ScriptProcessorNode usage (deprecated)
    * Used in volume meter for tracking - use hark instead
2022-04-11 19:21:56 +00:00

13 lines
198 B
JavaScript

import styled from 'styled-components';
const VolumeMeter = styled.meter`
display: flex;
flex-flow: row;
justify-content: space-between;
width: 100%;
`;
export default {
VolumeMeter,
};