Re: [Ubuntu-phone] baresip for BQ E4.5 and M10 with working audio

2016-06-16 Thread Matthias Apitz
El día Thursday, June 16, 2016 a las 09:24:23AM +0200, Matthias Apitz escribió:

> 
> Hello,
> 
> A running baresip offers a nice network interface, a TCP socket, and one can
> send commands to it, like for example place a call with just sending:
> 
> $ echo 'd u...@iptel.org' | netcat localhost 
> 
> Based on this I made a proposal for a minimalistic baresip-app written in
> QML. Details are here and any comments there in git or here in the list are
> welcome:
> 
> https://github.com/alfredh/baresip/issues/144

Here you have a first quick QML interface of what was the idea. I still
have to learn QML and how to connect C code to the pressed buttons etc.

matthias

-- 
Matthias Apitz, ✉ g...@unixarea.de, ⌂ http://www.unixarea.de/  ☎ 
+49-176-38902045
"Die Verkaufsschlager des Buchmarkts geben Auskunft über den Zustand einer 
Gesellschaft bzw.
sind, was diese Zeiten angeht, Gradmesser fortschreitenden Schwachsinns. ..." 
(jW 19.05.2016)
-- 
Mailing list: https://launchpad.net/~ubuntu-phone
Post to : ubuntu-phone@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phone
More help   : https://help.launchpad.net/ListHelp


Re: [Ubuntu-phone] baresip for BQ E4.5 and M10 with working audio

2016-06-16 Thread Matthias Apitz

Hello,

A running baresip offers a nice network interface, a TCP socket, and one can
send commands to it, like for example place a call with just sending:

$ echo 'd u...@iptel.org' | netcat localhost 

Based on this I made a proposal for a minimalistic baresip-app written in
QML. Details are here and any comments there in git or here in the list are
welcome:

https://github.com/alfredh/baresip/issues/144


matthias
-- 
Matthias Apitz, ✉ g...@unixarea.de, ⌂ http://www.unixarea.de/  ☎ 
+49-176-38902045
"Die Verkaufsschlager des Buchmarkts geben Auskunft über den Zustand einer 
Gesellschaft bzw.
sind, was diese Zeiten angeht, Gradmesser fortschreitenden Schwachsinns. ..." 
(jW 19.05.2016)

-- 
Mailing list: https://launchpad.net/~ubuntu-phone
Post to : ubuntu-phone@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phone
More help   : https://help.launchpad.net/ListHelp


Re: [Ubuntu-phone] baresip for BQ E4.5 and M10 with working audio

2016-06-15 Thread Matthias Apitz
El día Wednesday, June 15, 2016 a las 10:34:53AM +0200, Reiner Klenk escribió:

> Mixer GUI could be useful, but generally everything should work without it.
> You don't want to change the sink volume because that affects all possible
> sound sources.

Correct. Using this effects as well for example the browser-app playing
a stream.

> The way it works now ist that an app creates a playback
> device in pulseaudio and the volume rocker changes the volume of that
> specific playback device as long as the app is in focus. That way the
> volume can be set differently for each app. In addition there is a slider
> to change the ringtone volume in settings. I don't know how this creation
> of a playback device and attaching it to the volume rocker is done.

When playing a stream with the browser-app the output of 'pactl list 
sink-inputs'
looks like this. The Sink Input #0 is always there, even if no other app
is running, while the #88 is of the browser:

$ pactl list sink-inputs

Sink Input #0
Driver: protocol-native.c
Owner Module: 11
Client: 7
Sink: 0
Sample Specification: s16le 2ch 44100Hz
Channel Map: front-left,front-right
Format: pcm, format.sample_format = "\"s16le\""  format.rate = "44100"  
format.channels = "2"  format.channel_map = "\"front-left,front-right\""
Corked: yes
Mute: no
Volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% 
/ 0.00 dB
balance 0.00
Buffer Latency: 31383 usec
Sink Latency: 92000 usec
Resample method: n/a
Properties:
media.name = "QtPulseSample-2853-10483936"
application.name = "QtPulseAudio:2853"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "30"
media.role = "feedbacksound"
application.process.id = "2853"
application.process.user = "phablet"
application.process.host = "ubuntu-phablet"
application.process.binary = "maliit-server"
application.language = "en_GB.UTF-8"
application.process.machine_id = "ubuntu-phablet"
application.process.session_id = "c1"
module-stream-restore.id = 
"sink-input-by-media-role:feedbacksound"

Sink Input #88
Driver: protocol-native.c
Owner Module: 11
Client: 161
Sink: 0
Sample Specification: s16le 2ch 44100Hz
Channel Map: front-left,front-right
Format: pcm, format.sample_format = "\"s16le\""  format.rate = "44100"  
format.channels = "2"  format.channel_map = "\"front-left,front-right\""
Corked: no
Mute: no
Volume: front-left: 65535 / 100% / -0.00 dB,   front-right: 65535 / 
100% / -0.00 dB
balance 0.00
Buffer Latency: 69659 usec
Sink Latency: 92000 usec
Resample method: n/a
Properties:
application.icon_name = "chromium-browser"
media.role = "multimedia"
media.name = "Playback"
application.name = "Browser"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "30"
application.process.id = "7296"
application.process.user = "phablet"
application.process.host = "ubuntu-phablet"
application.process.binary = "webbrowser-app"
application.language = "en_GB.UTF-8"
application.process.machine_id = "ubuntu-phablet"
application.process.session_id = "c1"
module-stream-restore.id = "sink-input-by-media-role:multimedia"

When 'baresip' is running, there is no other Sink input, only the number #0 is 
shown.

> The
> problem with baresip seems to be that the volume rocker ist not attached to
> its pulseaudio playback device. You can list the playback devices with
> "pactl list sink-inputs". Could be that if you make a GUI wrapper for
> baresip this would work automatically.

I started a small QML app I wrote. This by its own does not create a
new Sink. There must be more logic behind the scene.



-- 
Matthias Apitz, ✉ g...@unixarea.de, ⌂ http://www.unixarea.de/  ☎ 
+49-176-38902045
"Die Verkaufsschlager des Buchmarkts geben Auskunft über den Zustand einer 
Gesellschaft bzw.
sind, was diese Zeiten angeht, Gradmesser fortschreitenden Schwachsinns. ..." 
(jW 19.05.2016)

-- 
Mailing list: https://launchpad.net/~ubuntu-phone
Post to : ubuntu-phone@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phone
More help   : https://help.launchpad.net/ListHelp


Re: [Ubuntu-phone] baresip for BQ E4.5 and M10 with working audio

2016-06-15 Thread Reiner Klenk
Mixer GUI could be useful, but generally everything should work without it.
You don't want to change the sink volume because that affects all possible
sound sources. The way it works now ist that an app creates a playback
device in pulseaudio and the volume rocker changes the volume of that
specific playback device as long as the app is in focus. That way the
volume can be set differently for each app. In addition there is a slider
to change the ringtone volume in settings. I don't know how this creation
of a playback device and attaching it to the volume rocker is done. The
problem with baresip seems to be that the volume rocker ist not attached to
its pulseaudio playback device. You can list the playback devices with
"pactl list sink-inputs". Could be that if you make a GUI wrapper for
baresip this would work automatically.

On 15 June 2016 at 10:13, Matthias Apitz  wrote:

> El día Tuesday, June 14, 2016 a las 10:30:57PM +0200, Mattias escribió:
>
> > using headphones gives indeed a clear sound. Great! I see in your
> > message from today you also have problems without headphones. I will try
> > to have a look at it as well later this week.
>
> I've played around this morning with the 'call failed' and 'd
> e...@iptel.org'
> i.e. dialing a working echo service. One can manipulate the volume of
> the audio-out with commands like this:
>
> $ pactl info
> Server String: /run/user/32011/pulse/native
> Library Protocol Version: 30
> Server Protocol Version: 30
> Is Local: yes
> Client Index: 120
> Tile Size: 65496
> User Name: phablet
> Host Name: ubuntu-phablet
> Server Name: pulseaudio
> Server Version: 6.0
> Default Sample Specification: s16le 2ch 44100Hz
> Default Channel Map: front-left,front-right
> Default Sink: sink.primary
> Default Source: source.primary
> Cookie: 50a1:3c1e
>
> $ pactl set-sink-volume sink.primary -50%
> $ pactl set-sink-volume sink.primary -50%
>
> (now no audio at all)
>
> $ pactl set-sink-volume sink.primary +50%
> $ pactl set-sink-volume sink.primary +30%
> $ pactl set-sink-volume sink.primary -30%
> $ pactl set-sink-volume sink.primary -10%
> $ pactl set-sink-volume sink.primary -10%
>
> (now we are at level 30% absolute)
>
> With this last level of volume one can even dial the echo service
> without headset.
>
> I'm wondering why the pulseaudio server, when it exists, has no GUI
> frontend. I will file a bug in LP.
>
> matthias
>
>
> --
> Matthias Apitz, ✉ g...@unixarea.de, ⌂ http://www.unixarea.de/  ☎
> +49-176-38902045
> "Die Verkaufsschlager des Buchmarkts geben Auskunft über den Zustand einer
> Gesellschaft bzw.
> sind, was diese Zeiten angeht, Gradmesser fortschreitenden Schwachsinns.
> ..." (jW 19.05.2016)
>
> --
> Mailing list: https://launchpad.net/~ubuntu-phone
> Post to : ubuntu-phone@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~ubuntu-phone
> More help   : https://help.launchpad.net/ListHelp
>
-- 
Mailing list: https://launchpad.net/~ubuntu-phone
Post to : ubuntu-phone@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phone
More help   : https://help.launchpad.net/ListHelp


Re: [Ubuntu-phone] baresip for BQ E4.5 and M10 with working audio

2016-06-15 Thread Matthias Apitz
El día Tuesday, June 14, 2016 a las 10:30:57PM +0200, Mattias escribió:

> using headphones gives indeed a clear sound. Great! I see in your 
> message from today you also have problems without headphones. I will try 
> to have a look at it as well later this week.

I've played around this morning with the 'call failed' and 'd e...@iptel.org'
i.e. dialing a working echo service. One can manipulate the volume of
the audio-out with commands like this:

$ pactl info
Server String: /run/user/32011/pulse/native
Library Protocol Version: 30
Server Protocol Version: 30
Is Local: yes
Client Index: 120
Tile Size: 65496
User Name: phablet
Host Name: ubuntu-phablet
Server Name: pulseaudio
Server Version: 6.0
Default Sample Specification: s16le 2ch 44100Hz
Default Channel Map: front-left,front-right
Default Sink: sink.primary
Default Source: source.primary
Cookie: 50a1:3c1e

$ pactl set-sink-volume sink.primary -50%
$ pactl set-sink-volume sink.primary -50%

(now no audio at all)

$ pactl set-sink-volume sink.primary +50%
$ pactl set-sink-volume sink.primary +30%
$ pactl set-sink-volume sink.primary -30%
$ pactl set-sink-volume sink.primary -10%
$ pactl set-sink-volume sink.primary -10%

(now we are at level 30% absolute)

With this last level of volume one can even dial the echo service
without headset.

I'm wondering why the pulseaudio server, when it exists, has no GUI
frontend. I will file a bug in LP.

matthias


-- 
Matthias Apitz, ✉ g...@unixarea.de, ⌂ http://www.unixarea.de/  ☎ 
+49-176-38902045
"Die Verkaufsschlager des Buchmarkts geben Auskunft über den Zustand einer 
Gesellschaft bzw.
sind, was diese Zeiten angeht, Gradmesser fortschreitenden Schwachsinns. ..." 
(jW 19.05.2016)

-- 
Mailing list: https://launchpad.net/~ubuntu-phone
Post to : ubuntu-phone@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phone
More help   : https://help.launchpad.net/ListHelp


Re: [Ubuntu-phone] baresip for BQ E4.5 and M10 with working audio

2016-06-14 Thread Mattias
using headphones gives indeed a clear sound. Great! I see in your 
message from today you also have problems without headphones. I will try 
to have a look at it as well later this week.


On 14-06-16 22:12, Matthias Apitz wrote:

El día Tuesday, June 14, 2016 a las 10:06:22PM +0200, Mattias escribió:


Hi Matthias,

I extracted the baresip first in Documents, so the config was still
there. Copying that in place results in a slightly better performance:

e...@iptel.org: Some echo of my own voice, but mainly an irritating beep

Do you used headphones? If not, try. The problem is that the local
feeding of the audio from the speaker into the mic makes it unusable
without headphones;


e...@ekiga.net: a clear audio message: The call failed

This comes from playing a local .wav file because e...@ekiga.net seems to be
offline; it proofs that audio-out is fine :-)


matthias




--
Mailing list: https://launchpad.net/~ubuntu-phone
Post to : ubuntu-phone@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phone
More help   : https://help.launchpad.net/ListHelp


Re: [Ubuntu-phone] baresip for BQ E4.5 and M10 with working audio

2016-06-14 Thread Matthias Apitz
El día Tuesday, June 14, 2016 a las 10:06:22PM +0200, Mattias escribió:

> Hi Matthias,
> 
> I extracted the baresip first in Documents, so the config was still 
> there. Copying that in place results in a slightly better performance:
> 
> e...@iptel.org: Some echo of my own voice, but mainly an irritating beep

Do you used headphones? If not, try. The problem is that the local
feeding of the audio from the speaker into the mic makes it unusable
without headphones;

> e...@ekiga.net: a clear audio message: The call failed

This comes from playing a local .wav file because e...@ekiga.net seems to be
offline; it proofs that audio-out is fine :-)


matthias

-- 
Matthias Apitz, ✉ g...@unixarea.de, ⌂ http://www.unixarea.de/  ☎ 
+49-176-38902045
"Die Verkaufsschlager des Buchmarkts geben Auskunft über den Zustand einer 
Gesellschaft bzw.
sind, was diese Zeiten angeht, Gradmesser fortschreitenden Schwachsinns. ..." 
(jW 19.05.2016)

-- 
Mailing list: https://launchpad.net/~ubuntu-phone
Post to : ubuntu-phone@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phone
More help   : https://help.launchpad.net/ListHelp


Re: [Ubuntu-phone] baresip for BQ E4.5 and M10 with working audio

2016-06-14 Thread Matthias Apitz
El día Tuesday, June 14, 2016 a las 09:15:42PM +0200, Mattias escribió:

> Hi Matthias,
> 
> Thanks for the great work! I am trying this on a MX4, but I have some 
> sounds issues. Probably due to different hardware compared to the BQ 
> devices. When I make a call to an echo service, I can hear a ticking 
> sound. I think the error is:
> 
> main: long async blocking: 1127>100 ms (h=0xb6f9a159 arg=0xded530)
> 
> The complete output is available here: http://paste.ubuntu.com/17336821/
> 
> Can you maybe share how you tweaked the configuration? I see you changed 
> some values in ~/.baresip/config at 
> https://github.com/alfredh/baresip/issues/136
> If I remember correctly you also wrote something about using oss.so? 
> Would be nice if you can help to find the correct values for the MX4 device.

Hello,

The tar archive I published contains my working ~/.baresip/config. On
the BQ E4.5 and M10 I'm using the pulse.so driver, the others (alsa.so
and oss.so) do not work.

matthias

> > $ wget http://www.unixarea.de/bq-baresip.tgz
> > $ md5 bq-baresip.tgz
> > MD5 (bq-baresip.tgz) = 1cb13e6fc70d2b3136d90ee988cc46a8

-- 
Matthias Apitz, ✉ g...@unixarea.de, ⌂ http://www.unixarea.de/  ☎ 
+49-176-38902045
"Die Verkaufsschlager des Buchmarkts geben Auskunft über den Zustand einer 
Gesellschaft bzw.
sind, was diese Zeiten angeht, Gradmesser fortschreitenden Schwachsinns. ..." 
(jW 19.05.2016)

-- 
Mailing list: https://launchpad.net/~ubuntu-phone
Post to : ubuntu-phone@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phone
More help   : https://help.launchpad.net/ListHelp


Re: [Ubuntu-phone] baresip for BQ E4.5 and M10 with working audio

2016-06-14 Thread Mattias

Hi Matthias,

Thanks for the great work! I am trying this on a MX4, but I have some 
sounds issues. Probably due to different hardware compared to the BQ 
devices. When I make a call to an echo service, I can hear a ticking 
sound. I think the error is:


main: long async blocking: 1127>100 ms (h=0xb6f9a159 arg=0xded530)

The complete output is available here: http://paste.ubuntu.com/17336821/

Can you maybe share how you tweaked the configuration? I see you changed 
some values in ~/.baresip/config at 
https://github.com/alfredh/baresip/issues/136
If I remember correctly you also wrote something about using oss.so? 
Would be nice if you can help to find the correct values for the MX4 device.


Greetings,

Mattias


On 12-06-16 14:40, Andrea Bernabei wrote:



On Sun, Jun 12, 2016 at 10:10 AM, Matthias Apitz > wrote:



Hello,

The audio is now working and SIP can be tested with this tar archive:

$ wget http://www.unixarea.de/bq-baresip.tgz
$ md5 bq-baresip.tgz
MD5 (bq-baresip.tgz) = 1cb13e6fc70d2b3136d90ee988cc46a8

The installation is pretty much simple as:

$ cd
$ tar xzf bq-baresip.tgz

Create an account file ~/.baresip/accounts with lines like:

# SIP accounts - one account per line
#
# Displayname ;addr-params
#
iptel >;answermode=auto

and start baresip in the terminal-app as:

$ ssh localhost
$ baresip/baresip.sh
baresip v0.4.19 Copyright (C) 2010 - 2016 Alfred E. Heggestad et al.
Local network address:  IPv4=wlan0:192.168.2.103
ui: stdio
aucodec: PCMU/8000/1
aucodec: PCMA/8000/1
aufilt: vumeter
auplay: pulse
ausrc: pulse
medianat: stun
medianat: turn
medianat: ice
uuid: loaded UUID 365c6517-6cc1-2caf-3c8d-7747f20a87ad from file
/home/phablet/.baresip//uuid
Populated 1 account
Populated 3 contacts
Populated 2 audio codecs
Populated 1 audio filter
Populated 0 video codecs
Populated 0 video filters
baresip is ready.
g...@iptel.org : {0/TCP/v4} 200 OK (ser
(3.3.0-pre1 (i386/linux))) [1 binding]
All 1 useragent registered successfully! (2656 ms)

to dial a SIP peer, just say: d x...@whatever.sip.provider

Note:

1. you must use 'ssh localhost' at the moment because it is not yet a
   click package; how to configure this is explained in the gitbook;
2. you must use the shell script 'baresip/baresip.sh' because of
needed
   environment and params (have a look into it);

Please test and report problems.


That is great news Matthias!

I'm not a SIP user (yet?) but thanks for the effort you put into this! 
:) I'm sure plenty of people will love it!


Andrea


matthias
--
Matthias Apitz, ✉ g...@unixarea.de , ⌂
http://www.unixarea.de/  ☎ +49-176-38902045 
"Die Verkaufsschlager des Buchmarkts geben Auskunft über den
Zustand einer Gesellschaft bzw.
sind, was diese Zeiten angeht, Gradmesser fortschreitenden
Schwachsinns. ..." (jW 19.05.2016)

--
Mailing list: https://launchpad.net/~ubuntu-phone

Post to : ubuntu-phone@lists.launchpad.net

Unsubscribe : https://launchpad.net/~ubuntu-phone

More help   : https://help.launchpad.net/ListHelp






-- 
Mailing list: https://launchpad.net/~ubuntu-phone
Post to : ubuntu-phone@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phone
More help   : https://help.launchpad.net/ListHelp


Re: [Ubuntu-phone] baresip for BQ E4.5 and M10 with working audio

2016-06-12 Thread Andrea Bernabei
On Sun, Jun 12, 2016 at 10:10 AM, Matthias Apitz  wrote:

>
> Hello,
>
> The audio is now working and SIP can be tested with this tar archive:
>
> $ wget http://www.unixarea.de/bq-baresip.tgz
> $ md5 bq-baresip.tgz
> MD5 (bq-baresip.tgz) = 1cb13e6fc70d2b3136d90ee988cc46a8
>
> The installation is pretty much simple as:
>
> $ cd
> $ tar xzf bq-baresip.tgz
>
> Create an account file ~/.baresip/accounts with lines like:
>
> # SIP accounts - one account per line
> #
> # Displayname ;addr-params
> #
> iptel ;answermode=auto
>
> and start baresip in the terminal-app as:
>
> $ ssh localhost
> $ baresip/baresip.sh
> baresip v0.4.19 Copyright (C) 2010 - 2016 Alfred E. Heggestad et al.
> Local network address:  IPv4=wlan0:192.168.2.103
> ui: stdio
> aucodec: PCMU/8000/1
> aucodec: PCMA/8000/1
> aufilt: vumeter
> auplay: pulse
> ausrc: pulse
> medianat: stun
> medianat: turn
> medianat: ice
> uuid: loaded UUID 365c6517-6cc1-2caf-3c8d-7747f20a87ad from file
> /home/phablet/.baresip//uuid
> Populated 1 account
> Populated 3 contacts
> Populated 2 audio codecs
> Populated 1 audio filter
> Populated 0 video codecs
> Populated 0 video filters
> baresip is ready.
> g...@iptel.org: {0/TCP/v4} 200 OK (ser (3.3.0-pre1 (i386/linux))) [1
> binding]
> All 1 useragent registered successfully! (2656 ms)
>
> to dial a SIP peer, just say: d x...@whatever.sip.provider
>
> Note:
>
> 1. you must use 'ssh localhost' at the moment because it is not yet a
>click package; how to configure this is explained in the gitbook;
> 2. you must use the shell script 'baresip/baresip.sh' because of needed
>environment and params (have a look into it);
>
> Please test and report problems.
>

That is great news Matthias!

I'm not a SIP user (yet?) but thanks for the effort you put into this! :)
I'm sure plenty of people will love it!

Andrea


>
> matthias
> --
> Matthias Apitz, ✉ g...@unixarea.de, ⌂ http://www.unixarea.de/  ☎
> +49-176-38902045
> "Die Verkaufsschlager des Buchmarkts geben Auskunft über den Zustand einer
> Gesellschaft bzw.
> sind, was diese Zeiten angeht, Gradmesser fortschreitenden Schwachsinns.
> ..." (jW 19.05.2016)
>
> --
> Mailing list: https://launchpad.net/~ubuntu-phone
> Post to : ubuntu-phone@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~ubuntu-phone
> More help   : https://help.launchpad.net/ListHelp
>
-- 
Mailing list: https://launchpad.net/~ubuntu-phone
Post to : ubuntu-phone@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phone
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-phone] baresip for BQ E4.5 and M10 with working audio

2016-06-12 Thread Matthias Apitz

Hello,

The audio is now working and SIP can be tested with this tar archive:

$ wget http://www.unixarea.de/bq-baresip.tgz
$ md5 bq-baresip.tgz
MD5 (bq-baresip.tgz) = 1cb13e6fc70d2b3136d90ee988cc46a8

The installation is pretty much simple as:

$ cd
$ tar xzf bq-baresip.tgz

Create an account file ~/.baresip/accounts with lines like:

# SIP accounts - one account per line
#
# Displayname ;addr-params
#
iptel ;answermode=auto

and start baresip in the terminal-app as:

$ ssh localhost
$ baresip/baresip.sh
baresip v0.4.19 Copyright (C) 2010 - 2016 Alfred E. Heggestad et al.
Local network address:  IPv4=wlan0:192.168.2.103 
ui: stdio
aucodec: PCMU/8000/1
aucodec: PCMA/8000/1
aufilt: vumeter
auplay: pulse
ausrc: pulse
medianat: stun
medianat: turn
medianat: ice
uuid: loaded UUID 365c6517-6cc1-2caf-3c8d-7747f20a87ad from file
/home/phablet/.baresip//uuid
Populated 1 account
Populated 3 contacts
Populated 2 audio codecs
Populated 1 audio filter
Populated 0 video codecs
Populated 0 video filters
baresip is ready.
g...@iptel.org: {0/TCP/v4} 200 OK (ser (3.3.0-pre1 (i386/linux))) [1 binding]
All 1 useragent registered successfully! (2656 ms)

to dial a SIP peer, just say: d x...@whatever.sip.provider

Note:

1. you must use 'ssh localhost' at the moment because it is not yet a
   click package; how to configure this is explained in the gitbook;
2. you must use the shell script 'baresip/baresip.sh' because of needed
   environment and params (have a look into it);

Please test and report problems.

matthias
-- 
Matthias Apitz, ✉ g...@unixarea.de, ⌂ http://www.unixarea.de/  ☎ 
+49-176-38902045
"Die Verkaufsschlager des Buchmarkts geben Auskunft über den Zustand einer 
Gesellschaft bzw.
sind, was diese Zeiten angeht, Gradmesser fortschreitenden Schwachsinns. ..." 
(jW 19.05.2016)

-- 
Mailing list: https://launchpad.net/~ubuntu-phone
Post to : ubuntu-phone@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phone
More help   : https://help.launchpad.net/ListHelp