All Projects → BelledonneCommunications → Linphone Desktop

BelledonneCommunications / Linphone Desktop

Licence: gpl-3.0
Linphone is a free VoIP and video softphone based on the SIP protocol. Mirror of git://git.linphone.org/linphone-desktop.git

Projects that are alternatives of or similar to Linphone Desktop

Linphone Iphone
Linphone is a free VoIP and video softphone based on the SIP protocol. Mirror of linphone-iphone (git://git.linphone.org/linphone-iphone.git)
Stars: ✭ 462 (+117.92%)
Mutual labels:  conference, phone, chat, voip, message, sip, call
Linphone Android
Linphone.org mirror for linphone-android (https://gitlab.linphone.org/BC/public/linphone-android)
Stars: ✭ 740 (+249.06%)
Mutual labels:  conference, phone, voip, sip, call
Soup
☎️ Original open source call flooder using Twilio's API.
Stars: ✭ 267 (+25.94%)
Mutual labels:  phone, sip, call
Katari
Katari - Python Session Initiated Protocol Framework
Stars: ✭ 29 (-86.32%)
Mutual labels:  sip, phone, voip
Docker Freepbx
Dockerized FreePBX 15 w/Asterisk 17, Seperate MySQL Database support, and Data Persistence and UCP
Stars: ✭ 331 (+56.13%)
Mutual labels:  phone, voip, sip
Ejabberd
Robust, Ubiquitous and Massively Scalable Messaging Platform (XMPP, MQTT, SIP Server)
Stars: ✭ 5,077 (+2294.81%)
Mutual labels:  chat, voip, sip
Flutter Webrtc
WebRTC plugin for Flutter Mobile/Desktop/Web
Stars: ✭ 2,764 (+1203.77%)
Mutual labels:  voip, sip, desktop
Lax
IRC client built with Electron & React
Stars: ✭ 95 (-55.19%)
Mutual labels:  chat, desktop
Vsaudit
VOIP Security Audit Framework
Stars: ✭ 97 (-54.25%)
Mutual labels:  voip, sip
Applozic Ios Sdk
iOS Real Time Chat & Messaging SDK
Stars: ✭ 104 (-50.94%)
Mutual labels:  chat, message
Ivozprovider
IVOZ Provider - Multitenant solution for VoIP telephony providers
Stars: ✭ 127 (-40.09%)
Mutual labels:  voip, sip
Browser Phone
A fully featured browser based WebRTC SIP phone for Asterisk
Stars: ✭ 95 (-55.19%)
Mutual labels:  voip, sip
Homer App
HOMER 7.x Front-End and API Server
Stars: ✭ 88 (-58.49%)
Mutual labels:  voip, sip
Kamailio
Kamailio - The Open Source SIP Server for large VoIP and real-time communication platforms -
Stars: ✭ 1,358 (+540.57%)
Mutual labels:  voip, sip
Sip.js
A simple, intuitive, and powerful JavaScript signaling library
Stars: ✭ 1,282 (+504.72%)
Mutual labels:  voip, sip
Sippts
Set of tools to audit SIP based VoIP Systems
Stars: ✭ 116 (-45.28%)
Mutual labels:  voip, sip
Awesome Voip
🤙Learning VoIP, RTP, pjsip and SIP
Stars: ✭ 83 (-60.85%)
Mutual labels:  voip, sip
Heplify Server
HEP Capture Server
Stars: ✭ 110 (-48.11%)
Mutual labels:  voip, sip
Dart Sip Ua
A dart-lang version of the SIP UA stack.
Stars: ✭ 132 (-37.74%)
Mutual labels:  voip, sip
Venom
Venom is the most complete javascript library for Whatsapp, 100% Open Source.
Stars: ✭ 3,457 (+1530.66%)
Mutual labels:  chat, message

pipeline status

Linphone Desktop

Linphone is an open source softphone for voice and video over IP calling and instant messaging.

It is fully SIP-based, for all calling, presence and IM features.

General description is available from Linphone web site

License

Copyright © Belledonne Communications

Linphone is dual licensed, and is available either :

  • under a GNU/GPLv3 license, for free (open source). Please make sure that you understand and agree with the terms of this license before using it (see LICENSE file for details).

  • under a proprietary license, for a fee, to be used in closed source applications. Contact Belledonne Communications for any question about costs and services.

Documentation

Getting started

Here are the general instructions to build Linphone for desktop. The specific instructions for each build platform is described just below. You will need the tools :

For Desktop : you will need Qt5 (5.12 or newer). C++11 support is required!

Set your environment

  1. It's necessary to install the pip command and to execute:

     pip install pystache
    
  2. You have to set the environment variable Qt5_DIR to point to the path containing the cmake folders of Qt5, and the PATH to the Qt5 bin. Example:

     Qt5_DIR="~/Qt/5.12.5/gcc_64/lib/cmake"
     PATH="~/Qt/5.12.5/gcc_64/bin/:$PATH"
    

Note: If you have qtchooser set in your PATH, the best use is :

    eval "$(qtchooser -print-env)"
    export Qt5_DIR=${QTLIBDIR}/cmake/Qt5
    export PATH=${QTTOOLDIR}:$PATH
  1. For specific requirements, see platform instructions sections below.

Summary of Building steps

    `git clone https://gitlab.linphone.org/BC/public/linphone-desktop.git --recursive`
    `cd linphone-desktop`
    `mkdir build`
    `cd build`
    `cmake .. -DCMAKE_BUILD_PARALLEL_LEVEL=10 -DCMAKE_BUILD_TYPE=RelWithDebInfo`
    `cmake --build . --target install --parallel 10 --config RelWithDebInfo`
    `./OUTPUT/bin/linphone --verbose` or `./OUTPUT/Linphone.app/Contents/MacOS/linphone --verbose`

Get sources

  1. Clone repository:

     git clone https://gitlab.linphone.org/BC/public/linphone-desktop.git --recursive        
    
  2. Update sub-modules

     git submodule update --init --recursive
    

Building : General Steps

The build is done by building the SDK and the application. Their targets are sdk and linphone-qt.

  1. Create your build folder at the root of the project : mkdir build Go to this new folder and begin the build process : cd build

  2. Prepare your options : cmake ... By default, it will try compile all needed dependencies. You can remove some by adding -DENABLE_<COMPONENT>=NO to the command. You can use cmake-gui .. if you want to have a better access to them. You can add -DCMAKE_BUILD_PARALLEL_LEVEL=<count> to do <count> parallel builds for speeding up the process. Also, you can add -DENABLE_BUILD_VERBOSE=ON to get more feedback while generating the project.

Note : For Makefile or Ninja, you have to add -DCMAKE_BUILD_TYPE=<your_config> if you wish to build in a specific configuration (for example RelWithDebInfo).

  1. Build and install the whole project : cmake --build . --target <target> --parallel <count> (replace <target> with the target name and <count> by the number of parallel builds).

Note : For XCode or Visual Studio, you have to add --config <your_config> if you wish to build in a specific configuration (for example RelWithDebInfo).

When all are over, the files will be in the OUTPUT folder in the build directory. When rebuilding, you have to use cmake --build . --target install (or cmake --install .) to put the application in the correct configuration.

  1. When doing some modifications in the SDK, you can rebuild only the SDK with the target sdk and the same for the application with linphone-qt-only

  2. In order to get packages, you can use cmake .. -DENABLE_APP_PACKAGING=YES. The files will be in OUTPUT/packages folder.

Update your project

  1. Update your project with :

     git fetch
     git pull --rebase
    
  2. Update sub-modules from your current branch

     git submodule update --init --recursive
    

Then simply re-build using cmake.

General Troubleshooting

  • The latest version of Doxygen may not work with the SDK. If you some build issues and have a specific version of Doxygen that is not in your PATH, you can use -DLINPHONESDK_DOXYGEN_PROGRAM.

Eg on Mac : -DLINPHONESDK_DOXYGEN_PROGRAM=/Applications/Doxygen.app/Contents/Resources/doxygen

  • If the build of the SDK crash with something like "cmd.exe failed" and no more info, it can be a dependency that is not available. You have to check if all are in your PATH. Usually, if it is about VPX or Decaf, this could come from your Perl installation.

  • If the application doesn't start and create an empty file with a random name, it could be come from a bad configuration between your application and others sub-modules. Check your configurations and force them with -DCMAKE_BUILD_TYPE=<your_config> or --config <your_config>.

Specific instructions for the Mac Os X platform

To install the required dependencies on Mac OS X, you can use Homebrew. Before you install packages with Brew, you may have to change directories permissions (if you can't change permissions with sudo on a MacOS >= High Sierra, get a look at this StackOverflow answer).

  1. Install XCode from the Apple store. Run it at least once to allow it to install its tools.

  2. Install Homebrew by following the instructions here https://brew.sh/

  3. Install dependencies:

     brew install cmake qt git
    
  4. First ensure you have installed pip. You can get it for python 2.7 there.

  5. Then, you can install a pip package with the following command:

     pip install [package]
    

For instance, if you don't have pystache and the dot package (contained in graphviz), enter the following commands:

    pip install pystache
    pip install graphviz
  1. Build as usual (General Steps) :
  • cmake .. -DCMAKE_BUILD_PARALLEL_LEVEL=10 -DCMAKE_BUILD_TYPE=RelWithDebInfo
  • cmake --build . --target all --parallel 10 --config RelWithDebInfo
  1. The project folder will be in the build directory and binaries should be in the OUTPUT folder.

  2. When updating the project, the next build steps are a bit different:

    • cmake --build . --target all --parallel 10 --config RelWithDebInfo
    • cmake --install . OR
    • cmake --build . --target install --parallel 10 --config RelWithDebInfo

Specific instructions for the Windows platform

  1. Ensure that you have downloaded the Qt msvc2015 version or Qt msvc2017 version (32-bit). (64-bit version is not supported at this moment by Linphone Desktop.)
  • MinGW : download
    • Select all installer options except Ada and Fortran
    • Install it in the default location (C:/Mingw), this is important as there are hard-links on it.
    • The gcc version should be 6.3.0. It wasn't tested for other versions. It seems that MinGW from osdn.net try to install gcc 9 that breaks the build.
  • Yasm
    • download yasm-1.3.0-win32.exe
    • copy it to a bin directory of your user directory
    • rename yasm-1.3.0-win32.exe as yasm.exe
  • nasm : download
  • git : download

Visual Studio must also be properly configured with addons. Under "Tools"->"Obtain tools and features", make sure that the following components are installed:

  • Tasks: Select Windows Universal Platform development, Desktop C++ Development, .NET Development
  • Under "Installation details". Go to "Desktop C++ Development" and add "SDK Windows 8.1 and SDK UCRT"
  • Individual component: Windows 8.1 SDK
  1. Or open a Command line with Visual Studio Developer Command Prompt for VS 2017 and call qtenv2.bat that is in your qt binaries eg: C:\Qt\<version>\msvc2017\bin\qtenv2.bat

  2. Install msys-coreutils : mingw-get install msys-coreutils

  3. Build as usual with adding -A Win32 to cmake .. (General Steps) :

  • cmake .. -DCMAKE_BUILD_PARALLEL_LEVEL=10 -DCMAKE_BUILD_TYPE=RelWithDebInfo -A Win32
  • cmake --build . --target ALL_BUILD --parallel 10 --config RelWithDebInfo
  1. The project folder will be in the build directory and binaries should be in the OUTPUT folder.

  2. When updating the project, the next build steps are a bit different:

    • cmake --build . --target ALL_BUILD --parallel 10 --config RelWithDebInfo
    • cmake --install . OR
    • cmake --build . --target install --parallel 10 --config RelWithDebInfo

Specific instructions for the Mac Os X platform

  1. Build as usual (General Steps) :
  • cmake .. -DCMAKE_BUILD_PARALLEL_LEVEL=10 -DCMAKE_BUILD_TYPE=RelWithDebInfo
  • cmake --build . --target all --parallel 10 --config RelWithDebInfo
  1. The project folder will be in the build directory and binaries should be in the OUTPUT folder.

  2. When updating the project, the next build steps are a bit different:

    • cmake --build . --target all --parallel 10 --config RelWithDebInfo
    • cmake --install . OR
    • cmake --build . --target install --parallel 10 --config RelWithDebInfo

Installing Linux dependencies

Dependencies from 4.1 version of Desktop (refer it only if you have issues):

apt-get install libqt53dcore5:amd64 libqt53dextras5:amd64 libqt53dinput5:amd64 libqt53dlogic5:amd64 libqt53dquick5:amd64 libqt53dquickextras5:amd64 libqt53dquickinput5:amd64 libqt53dquickrender5:amd64 libqt53drender5:amd64 libqt5concurrent5:amd64 libqt5core5a:amd64 libqt5dbus5:amd64 libqt5designer5:amd64 libqt5designercomponents5:amd64 libqt5gui5:amd64 libqt5help5:amd64 libqt5multimedia5:amd64 libqt5multimedia5-plugins:amd64 libqt5multimediawidgets5:amd64 libqt5network5:amd64 libqt5opengl5:amd64 libqt5opengl5-dev:amd64 libqt5positioning5:amd64 libqt5printsupport5:amd64 libqt5qml5:amd64 libqt5quick5:amd64 libqt5quickcontrols2-5:amd64 libqt5quickparticles5:amd64 libqt5quicktemplates2-5:amd64 libqt5quicktest5:amd64 libqt5quickwidgets5:amd64 libqt5script5:amd64 libqt5scripttools5:amd64 libqt5sensors5:amd64 libqt5serialport5:amd64 libqt5sql5:amd64 libqt5sql5-sqlite:amd64 libqt5svg5:amd64 libqt5svg5-dev:amd64 libqt5test5:amd64 libqt5webchannel5:amd64 libqt5webengine-data libqt5webenginecore5:amd64 libqt5webenginewidgets5:amd64 libqt5webkit5:amd64 libqt5widgets5:amd64 libqt5x11extras5:amd64 libqt5xml5:amd64 libqt5xmlpatterns5:amd64 qt5-default:amd64 qt5-doc qt5-gtk-platformtheme:amd64 qt5-qmake:amd64 qt5-qmltooling-plugins:amd64

Contributing

Code

In order to submit a patch for inclusion in Linphone's source code:

  1. First make sure that your patch applies to the latest Git sources before submitting : patches made to old versions can't and won't be merged.

  2. Fill out and send the contributor agreement for your patch to be included in the Git tree by following links there. The goal of this agreement is to grant us the peaceful exercise of our rights to the Linphone source code, without losing your rights over your contribution.

  3. Then go to the github repository and make a Pull Requests based on your code.

Please note that we don't offer free support and these contributions will be addressed on our free-time.

Languages

Linphone is getting a full internationalization support, using Transifex platform. If you want you can contribute at: https://www.transifex.com/belledonne-communications/linphone-desktop/languages/

Feedback or bug reporting

Launch the application with --verbose parameter to get full logs and send it with your request. You can use the "Send logs" button in settings to upload log files and share it by email or with a post in the corresponding Github project :

On some OS (like Fedora 22 and later), they disable Qt debug output by default. To get full output, you need to create ~/.config/QtProject/qtlogging.ini and add :

    [Rules]
    *.debug=true
    qt.*.debug=false
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].