The noise-suppression processor is now imported on demand with a dynamic import() instead of a top-level static import, so it lands in its own code-split chunk rather than the main bundle. Why this is necessary: * @libreaudio/la-call is fully self-contained. It inlines *everything* as JavaScript: two WASM binaries (SIMD and non-SIMD variants), the Emscripten glue, the worklet processor source, and the noise model plus its weights — the model is compiled into the .wasm, so we ship effectively two copies of it. * The WASM is inlined as numeric array literals (new Uint8Array([...])), the least compact representation possible (~2-4 source chars/byte) and not meaningfully minifiable. The result is a large module that also can't be stream-compiled the way an external .wasm asset would be. * A static import would pull all of that into the initial bundle, inflating critical-path download size and lengthening build time (parsing/minifying the big literal) — for a feature that's only used when the user actually turns on noise suppression. * Dynamic import() isolates the whole payload in a separate, content-hashed, browser-cached chunk. The cost (chunk fetch + WASM instantiation) becomes a one-time hit deferred to first activation, and is fully off the page's initial load path. Notes: * The library self-bundles its AudioWorklet at runtime from a Blob URL and inlines the WASM, so it needs no build-tool asset plumbing (no ?worker&url / ?url, no Vite asset config). The dynamic import is therefore the only splitting mechanism required. * Audio processing still runs off the main thread on the AudioWorklet path (desktop/most browsers); only the Android ScriptProcessor fallback runs on the main thread. Import style does not affect this. * To hide the first-activation latency, the chunk can be prefetched (e.g. import() on idle or <link rel="modulepreload">) so it's warm before the user enables suppression.
LiveKit - Chat with us - Roadmap - Changelog - Bug reports
La Suite Meet: Simple Video Conferencing
Powered by LiveKit, La Suite Meet offers Zoom-level performance with high-quality video and audio. No installation required—simply join calls directly from your browser. Check out LiveKit's impressive optimizations in their blog post.
Features
- Optimized for stability in large meetings (+100 p.)
- Support for multiple screen sharing streams
- Non-persistent, secure chat
- End-to-end encryption (coming soon)
- Meeting recording
- Meeting transcription & Summary (currently in beta)
- Telephony integration
- Secure participation with robust authentication and access control
- Customizable frontend style
- LiveKit Advances features including :
- speaker detection
- simulcast
- end-to-end optimizations
- selective subscription
- SVC codecs (VP9, AV1)
La Suite Meet is fully self-hostable and released under the MIT License, ensuring complete control and flexibility. It's simple to get started or request a demo.
We’re continuously adding new features to enhance your experience, with the latest updates coming soon!
🚀 Major roll out to all French public servants
On the 25th of January 2026, David Amiel, France’s Minister for Civil Service and State Reform, announced the full deployment of Visio—the French government’s dedicated Meet platform—to all public servants. (Source in French)
Table of Contents
Get started
Docs
We're currently working on both technical and user documentation for La Suite Meet. In the meantime, many of the essential aspects are already well covered by the LiveKit documentation and their self-hosting guide. Stay tuned for more updates!
Self-host
La Suite Meet is easy to install on your own servers
We use Kubernetes for our production instance but also support Docker Compose. The community contributed a couple other methods (Nix, YunoHost etc.) check out the docs to get detailed instructions and examples.
Questions? Open an issue on GitHub or join our Matrix community.
Note
Some advanced features (ex: recording, transcription) lack detailed documentation. We're working hard to provide comprehensive guides soon.
Known instances
We hope to see many more, here is an incomplete list of public La Suite Meet instances. Feel free to make a PR to add ones that are not listed below🙏
| Url | Org | Access |
|---|---|---|
| visio.numerique.gouv.fr | DINUM | French public agents working for the central administration and the extended public sphere. ProConnect is required to login in or sign up |
| visio.suite.anct.gouv.fr | ANCT | French public agents working for the territorial administration and the extended public sphere. ProConnect is required to login in or sign up |
| visio.lasuite.coop | lasuite.coop | Free and open demo to all. Content and accounts are reset after one month |
| mosacloud.cloud | mosa.cloud | Demo instance of mosa.cloud, a dutch company providing services around La Suite apps. |
Contributing
We <3 contributions of any kind, big and small:
- Vote on features or get early access to beta functionality in our roadmap
- Open a PR (see our instructions on developing La Suite Meet locally)
- Submit a feature request or bug report
Philosophy
We’re relentlessly focused on building the best open-source video conferencing product—La Suite Meet. Growth comes from creating something people truly need, not just from chasing metrics.
Our users come first. We’re committed to making La Suite Meet as accessible and easy to use as proprietary solutions, ensuring it meets the highest standards.
Most of the heavy engineering is handled by the incredible LiveKit team, allowing us to focus on delivering a top-tier product. We follow extreme programming practices, favoring pair programming and quick, iterative releases. Challenge our tech and architecture—simplicity is always our top priority.
Open-source
Gov 🇫🇷 supports open source! This project is available under MIT license.
All features we develop will always remain open-source, and we are committed to contributing back to the LiveKit community whenever feasible. To learn more, don't hesitate to reach out.
Help us!
Come help us make La Suite Meet even better. We're growing fast and would love some help.
Contributors 🧞
Credits
We're using the awesome LiveKit implementation. We're also thankful to the teams behind Django Rest Framework, Vite.js, and React Aria — Thanks for your amazing work! This project is tested with BrowserStack.
License
Code in this repository is published under the MIT license by DINUM (Direction interministériel du numérique). Documentation (in the docs/) directory is released under the Etalab-2.0 license.
