한국어

스마트폰앱

온누리070 플레이스토어 다운로드
    acrobits softphone
     온누리 070 카카오 프러스 친구추가온누리 070 카카오 프러스 친구추가친추
     카카오톡 채팅 상담 카카오톡 채팅 상담카톡
    
     라인상담
     라인으로 공유

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


http://sagar.se/linphone-3.7.0-wheezy.html


Compiling linphone 3.7.0 on Debian Wheezy

Linphone is a free (as in speech, GPLv2), open source Voice over IP (VoIP) software for Linux, Windows, MacOSX as well as Android, iPhone and Blackberry. It is a secure, encrypted, standards compliant alternative to proprietary alternatives like Skype.

The latest version of Linphone, as of this writing, is 3.7.0. This version is not available in the Debian Wheezy repositories, which have v3.5.2. That version lacks some features of 3.7.0, like integrated text messaging.

This guide explains how to compile linphone version 3.7.0 on Wheezy, with strong encryption support.

Sources: These instructions were prepared from the README file in the linphone sources and this blog post.

  • Install all the linphone dependencies which we can from the debian repositories
    sudo apt-get install libtool intltool libgtk2.0-dev libspeexdsp-dev libavcodec-dev libswscale-dev libx11-dev libxv-dev libgl1-mesa-dev libglew1.6-dev libv4l-dev libxml2-dev libvpx-dev libasound2-dev libpulse-dev libpolarssl-dev antlr3 libantlr3c-dev libreadline-dev libgsm1-dev libtheora-dev libsoup2.4-dev libsqlite3-dev libupnp6-dev libx264-dev cmake
  • Install srtp for call encryption
    git clone git://git.linphone.org/srtp.git  
    cd srtp && autoconf && ./configure && make  
    sudo make install  
  • Install belle-sip
    git clone git://git.linphone.org/belle-sip  
    cd belle-sip  
    git checkout tags/1.3.0  
    ./autogen.sh  
    ./configure --enable-tls  
    make  
    sudo make install  
  • Install zrtpcpp for unbreakable call encryption
    git clone https://github.com/wernerd/ZRTPCPP.git
    cd ZRTPCPP  
    cmake -DCORE_LIB=true -DSDES=false . && make  
    sudo make install  
  • Download and install linphone 3.7.0
    wget http://download-mirror.savannah.gnu.org/releases/linphone/3.7.x/sources/linphone-3.7.0.tar.gz
    tar zxvf linphone-3.7.0.tar.gz  
    cd linphone-3.7.0  
    ./configure --enable-ipv6 --enable-alsa --enable-zrtp  
    make  
    sudo make install  
    sudo ldconfig
  • To compile the h264 video plugin
    git clone git://git.linphone.org/msx264.git  
    cd msx264  
    ./autogen.sh  
    ./configure  
    make  
    sudo make install  

UPDATE: 2014-08-24

A kind reader, Karsten (fk021772@gmx.de), sent an email with these instructions for compiling the G729 codec:

git clone git://git.linphone.org/bcg729.git
cd bcg729
./autogen.sh
./configure
make
make install 

## enable G729 plugin in Linphone settings->Codec and shift it on top.
## if you use TLS you need to change the following in settings file:

[sip]
verify_server_certs=0

조회 수 :
29723
등록일 :
2014.10.21
04:28:44 (*.160.88.200)
엮인글 :
http://webs.co.kr/index.php?document_srl=252616&act=trackback&key=99b
게시글 주소 :
http://webs.co.kr/index.php?document_srl=252616
List of Articles
번호 제목 글쓴이 조회 수 추천 수 날짜
35 linphone _MSFactory admin 10596   2022-08-29
 
34 linphone-iphone CallKit reportIncomingCall code analyze admin 10670   2022-07-16
 
33 linphone-iphone SettingsView settingsStore removeAccount admin 10581   2022-06-22
 
32 Linphone-iphone AssistantView code analysis admin 10344   2022-06-22
 
31 linphone-iphone IASKSettingsReader .plist-> locateSettingsFile -> setSettingsBundle save admin 10777   2022-06-20
 
30 linphone-iphone IASKSettingsReader IASKSpecifier code analysis admin 10683   2022-06-19
 
29 Linphone-iphone SettingsView code analysis admin 10470   2022-06-18
 
28 linphone-iphone call number call button code analysis admin 10639   2022-06-18
 
27 linphone-iphone/Settings/InAppSettings.bundle/ plist file list code analysis admin 10316   2022-06-16
 
26 linphone-iphone sourcecode SideMenuTableView code analysis admin 10662   2022-06-16
 
25 linphone-iphone sourcecode SideMenuView code analysis admin 10575   2022-06-14
 
24 linphone-iphone popup_password_request popup code analysis admin 10743   2022-06-12
 
23 linphone-iphone account code analysis admin 10574   2022-06-11
 
22 Pjsip 설명 정리 동작 함수 admin 16103   2019-09-09
 
21 Basic registration test sourec code admin 15847   2019-05-06
 
20 mDNS 덕분에 SIP 네트워크 배포가 쉬워졌습니다. admin 15895   2018-09-01
 
19 스마트폰 070 장점 국내전화 국제전화 로밍요금 해결 꼭 사용해보세요 admin 18613   2018-01-07
 
18 카카오톡PC에서 사용하는 오픈소스 라이브러리 admin 20857   2017-12-01
 
17 해외 로잉 무료 스마트폰 휴대폰 070 인터넷폰 인터넷전화 국내 해외 가입 상사 주재원 교민 유학생 여행 등 file admin 39671   2015-02-28
 
16 070가입 않고 국내 유선 무선 집전화 휴대폰 전화 해외 국내에서 전화 수신 받는 방법 admin 529881   2015-02-28
 
15 using a g729 codec in SipDroid Add G729 to Sipdroid admin 28338   2014-12-28
 
» Compiling linphone 3.7.0 on Debian Wheezy admin 29723   2014-10-21
http://sagar.se/linphone-3.7.0-wheezy.html Compiling linphone 3.7.0 on Debian WheezyMON 14 APRIL 2014 Linphone is a free (as in speech, GPLv2), open source Voice over IP (VoIP) software for Linux, ...  
13 opus-codec Opus Interactive Audio Codec admin 29319   2014-10-10
 
12 HD-Voice의 정체 admin 31130   2014-10-09
 
11 Acrobits 아이폰 용 sip 프로그램 Softphone 070인터넷전화 수신 잘되는 client 무료 admin 41761   2014-06-02
 
10 스마트폰 무제한 무료통화 앱 WIFI 2G 3G 4G LTE VOIP mVOIP SIP 요금절약 admin 79020   2014-05-31
 
9 스마트폰 070 인터넷전화 무료통화 앱 WIFI 5G 4G LTE SIP 요금절약 file admin 88499   2014-02-11
 
8 mVoIP 보다 VoLTE가 좋은 점 admin 30734   2013-11-21
 
7 Sipdroid wiki and english manuall file admin 75448   2013-11-09
 
6 TCP Connection Test Program file admin 79753   2013-09-28