There are two parts:
- "fubble" is a conferencing solution. It extends the matrix standard with a many-to-many webrtc solution.
- "libfubble" is a library that can be used in other products as webrtc-as-a-service. It solves the signaling and the communication challenges.
Unlike other solutions it's implemented in a realtime language, so it can be used on low-powered devices, like phones and Raspberry Pis.
Get the prebuild binaries at fubble.io.
- Gitlab gitlab.com/acof/fubble
- Github github.com/freckled-dev/fubble
Fubble uses mainly these heavy frameworks:
The build system uses:
- meson for building fubble. (build system)
- aqtinstall for installing qt5
- conan for intalling all other dependencies, including webrtc.
sudo apt install python3 python-is-python3 python3-pip ninja-build cmake ccachecurl -LO 'https://raw.githubusercontent.com/chromium/chromium/master/build/install-build-deps.sh'
chmod u+x install-build-deps.sh
./install-build-deps.sh --no-arm --no-chromeos-fonts --no-naclpip3 install --user conan meson aqtinstall
# ensure `$HOME/.local/bin/` is in your `PATH`
which conan./scripts/make_build.py --profile ./scripts/conan_profiles/linux64_gcc9_releaseThis command will result in a ready to use fubble client. The binaries can be found in ../fubble_build/install/bin.
Run it using LD_LIBRARY_PATH=../fubble_build/qt/5.15.1/gcc_64/lib/ ../fubble_build/install/bin/fubble.
You need to install the newest XCode on Mojave. Next install the build helpers
brew install cmake ninja ccache python
pip3 install --user conan meson aqtinstall
./scripts/make_build.py --profile ./scripts/conan_profiles/mac_releaseThe MacOS version is a work-in-progress. There is currently no video support.
To run it you have to use --use-video 0, like this:
../fubble_build/install/bin/fubble --use-video 0Set up your PC according to the Chrome Building Instructions. You need at least Visual Studio 2019.
Install python3, cmake and pkgconfiglite using chocolatey in a powershell with Administration Rights
choco install python pkgconfiglite cmake --installargs 'ADD_CMAKE_TO_PATH=System'
# load PATH
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
pip install conan aqtinstallAt last install Qt to C:\Qt using the script install_qt.py
python scripts/install_qt.pypython scripts/make_build.py --profile scripts/conan_profiles/windows_releaseYou can find the resulting client at ..\fubble_build\install\bin
The only supported platform for the servers is Docker. Install it using apt install docker.io.
To run your own instances of the servers, build fubble then run
cd docker
docker-compose upUse docker-compose up --build to update the containers.
Use docker-compose up --detach to detach and run the services in the background.
Connect to them using fubble:
../fubble_build/install/bin/fubble --host localhost --service http --use-ssl 0To change port of the backend edit ./docker/docker-compose.yml file and adapt
the first value of the ports entry "80:80" to your liking.
For example change to "8000:80".
