Michał Słomkowski cfec9f354c Fix irrelevant stack dump when no commandline arguments specified. | 8 years ago | |
---|---|---|
.gitignore | 9 years ago | |
AudioFramesMixer.cpp | 9 years ago | |
AudioFramesMixer.hpp | 9 years ago | |
CMakeLists.txt | 9 years ago | |
Configuration.cpp | 9 years ago | |
Configuration.hpp | 9 years ago | |
IncomingConnectionValidator.cpp | 9 years ago | |
IncomingConnectionValidator.hpp | 9 years ago | |
LICENSE | 9 years ago | |
MumbleChannelJoiner.cpp | 9 years ago | |
MumbleChannelJoiner.hpp | 9 years ago | |
MumbleCommunicator.cpp | 9 years ago | |
MumbleCommunicator.hpp | 9 years ago | |
PjsuaCommunicator.cpp | 9 years ago | |
PjsuaCommunicator.hpp | 9 years ago | |
README.md | 9 years ago | |
config.ini.example | 9 years ago | |
main.cpp | 8 years ago |
SIP to Mumble gateway based on PJSIP stack and mumlib library. It registers to SIP registrar and listens for incoming connections on the SIP account.
This enables the user to participate in Mumble conference using SIP client or perhaps ordinary telephone, by VoIP provider.
Install all needed dependencies
Clone and compile Mumlib library. Since it doesn't have any installer, clone it to common directory:
mkdir mumsi-dist && cd mumsi-dist
git clone https://github.com/slomkowski/mumlib.git
mkdir mumlib/build && cd mumlib/build
cmake ..
make
cd -
Then clone and build Mumsi:
git clone https://github.com/slomkowski/mumsi.git
mkdir mumsi/build && cd mumsi/build
cmake ..
make
Copy example config.ini file and edit it according to your needs:
cp config.ini.example config.ini
Remember to add URIs which you want to make calls from. Calls from other URIs won't be answered.
To run the service, type:
./mumsi config.ini
remember to allow incoming connections on port 5060 UDP in your firewall
PJSIP packages in some distributions require to have a sound card in your system, which can be an issue on the server. In this case, use snd-dummy sound module.
2015 Michał Słomkowski. The code is published under the terms of Apache License 2.0.