Displaying 20 results from an estimated 100 matches similar to: "Bridge Calls with G()"
2009 Jul 21
1
Dialplan step that I do not have
I have a dialplan that looks like this:
[dorecord]
exten => _*99XX,1,Verbose(2,Doing custom record)
exten => _*99XX,n,Answer()
exten => _*99XX,n,Verbose(2,Doing custom record - before wait)
exten => _*99XX,n,Wait(0.5)
exten => _*99XX,n,Verbose(2,Doing custom record - before record)
exten => _*99XX,n,Record(/tmp/prompt${EXTEN:3}.gsm)
exten => _*99XX,n,Verbose(2,Doing custom
2006 Jun 05
2
Outgoing call bridging
Hi
Is there an easy way (without writing a C app) to make asterisk call 2
numbers and then bridge them into one conversatoin (preferably without
using meetme).
Regards
2005 Jan 27
1
ChanIsAvail not working
I'm testing ChanIsAvail context and it is not working for me.
exten => 55,1,ChanIsAvail(SIP/11&SIP/21)
exten => 55,2,Cut(theChannel=AVAILCHAN,,1)
exten => 55,3,Dial(${theChannel},r)
exten => 55,4,Hangup
exten => 55,102,Goto(s,4)
It is not dialing SIP/21 when I'm talking on SIP/11, it execute
Hangup instruction instruction.
According to notes:
The channels are checked
2005 Jul 12
1
help needed-call recording
Hi,
I am trying to change the dialplan to enable call recording (incoming
and outgoing calls) on the "click of a button". Is it possible? All the
documentation I found so far, enable recording for 'all calls' to an
extension.
Does this code look ok?
Currently Recording "on" only for 1030
when user presses *44, start recording.
*55 to stop recording
2014 Sep 02
1
Creating users with non-ascii chars fails
Hi list!
I'm trying to create a user with non-ascii characters in the name, but this
fails:
root at test-samba4:~# samba-tool user create foa --given-name='foa?'
New Password:
Retype Password:
ldb_handler_fold: unable to casefold string [foa?]
ldb_handler_fold: unable to casefold string [foa?]
ldb_handler_fold: unable to casefold string [foa?]
ldb_handler_fold: unable to casefold
2016 Apr 09
1
Quantmod abline and axis configuration
Hi all,
I have this code
I want to add two ablines like this
abline(h=2400, lty=3, col="lightgrey")
abline(h=400, lty=3, col="lightgrey")
But doesnt wotk.
I alo try to set ylim from 0 to max "Foa"+1000 but I?m not able ?Is it
posible?
require(latticeExtra)
require(ggplot2)
require(reshape2)
suppressPackageStartupMessages(require(googleVis))
require(quantmod)
2008 Aug 16
0
Basic outbound calling issue : a lot closer
I get congestion (same error) with
exten => _NXXNXXXXXX,1,Dial(SIP/${EXTEN:1}@xxx.xxx.xxx,30,r)
not dialing 1
exten => _1NXXNXXXXXX,1,Dial(SIP/${EXTEN:1}@xxx.xxx.xxx,30,r)
dialing 1
exten => _91NXXNXXXXXX,1,Dial(SIP/${EXTEN:1}@xxx.xxx.xxx,30,r)
dialing 9
All the same
== Parsing '/etc/asterisk/sip_notify.conf': Found
-- Executing [9544790554 at To_Airspring:1]
2018 Jan 26
0
[lldb-dev] Trying out lld to link windows binaries (using msvc as a compiler)
Hmm, ok. In that case let me try again without my local changes. Maybe
they are getting in the way :-/
On Fri, Jan 26, 2018 at 9:51 AM Leonardo Santagada <santagada at gmail.com>
wrote:
> it is identical to me... wierd.
>
> On Fri, Jan 26, 2018 at 6:49 PM, Zachary Turner <zturner at google.com>
> wrote:
>
>> (Ignore the fact that my hashes are 8 byte in the
2018 Jan 26
3
[lldb-dev] Trying out lld to link windows binaries (using msvc as a compiler)
I'm now thinking that there's a bug in either obj2yaml or yaml2obj, because
if I run just those two tools on my codebase it generates yaml files that
can't be decoded, will try now to not add any section to the obj file in
llvm-objcopy to see if I can link with obj files that I rewrite (but
without adding symbols or sections).
One of the bugs that do annoy me is that the timedatestamp
2018 Jan 26
0
[lldb-dev] Trying out lld to link windows binaries (using msvc as a compiler)
Interesting. If it is generating yaml files that can't be decoded, then
definitely sounds like a bug. If you can provide a reduced test case we
can try to fix it, but admittedly it can often take some effort to generate
a reduced test case. The best way is to use creduce. Use cl or clang-cl
and write the pre-processed output to a file, then run creduce on that file
with a test that
2016 May 29
2
ambisonics formats and channel mappings
On Sat, 28 May 2016 16:21:33 -0700,
Michael Graczyk <mgraczyk at google.com> wrote :
> Hi Marc,
Hi Micheal.
> On Sat, May 28, 2016 at 10:44 AM, Marc Lavallée <marc at hacklava.net>
> wrote:
> > I subscribed because your discussion on the IETF draft ("Ambisonics
> > in an Ogg Opus Container") was mentioned on the sursound list.
>
> Thanks for
2005 Sep 15
2
Asterisk CDRs
Hi Group,
I am trying to capture CDR records from Asterisk into PGSQL database. The
problem is that the CDR information does not get populated until the call is
hangup.
Does anyone know if there is a way to get CDR info into database before call
ends???
Thanks,
Prakash
2018 Jan 26
4
[lldb-dev] Trying out lld to link windows binaries (using msvc as a compiler)
dumpbin has some clues. I ran dumpbin /all on both object files and diffed
the results.
In the good object file, Section #2 (.data) has File Pointer to Raw Data =
208, but in the bad file Section #2 (.data) has File Pointer to Raw Data =
0.
Also, Section #3 (.bss) in the good file has Size of Raw Data = 4, but in
the bad file Section #3 (.bss) has Size of Raw Data = 0.
On Fri, Jan 26, 2018 at
2008 Feb 11
2
Emulated application retrieve wine version
Hi all,
i'm currently writing Win32 application under Delphi.
I do all possible to get it compatible with wine.
For design purpose I have made a little check to know in my application
is run under wine or not.
I just make a registry test to know if wine registries entry exist or
not and it work fine.
If exist I display a nice tux logo inside my appz :)
However, I was wondering if there is
2013 Mar 13
2
How to read a *.csv file in R?
Hey guys,
I am dealing with this kind of data. To read the file in R I have nulled all
empty fields and tried:
date BRENT BRENTchg HWWI HWWIchg
Jan. 86 22,5 NULL 68,1 -15,6
Feb.86 17 NULL 64,9 -21,6
Mar. 86 13,7 NULL 66,6 -19,5
Apr.86 12,3 NULL 63,6 -19,1
May 86 14 NULL 61,5 -20,9
June 86 11,8 NULL 59,8 -20,7
July 86 9,4 NULL 57,2 -19,3
Aug.86 13,2 NULL 55,5 -18,3
Sep.86 14,2 NULL 57,5 -15,1
2018 Jan 26
1
[lldb-dev] Trying out lld to link windows binaries (using msvc as a compiler)
it is identical to me... wierd.
On Fri, Jan 26, 2018 at 6:49 PM, Zachary Turner <zturner at google.com> wrote:
> (Ignore the fact that my hashes are 8 byte in the "good" file, this is due
> to some local changes I've been experimenting with)
>
> On Fri, Jan 26, 2018 at 9:48 AM Zachary Turner <zturner at google.com> wrote:
>
>> I did this:
>>
2016 May 28
2
ambisonics formats and channel mappings
Hi Opus list.
I subscribed because your discussion on the IETF draft ("Ambisonics in
an Ogg Opus Container") was mentioned on the sursound list.
I tried Opus for ambisonics more than a year ago. It does works with
uncoupled channels (I had to patch the encoder). I don't know what else
could be done to optimize support for ambisonics, as I'm not a codec
expert.
So I think that
2016 May 31
0
ambisonics formats and channel mappings
Marc,
Thanks for the comments.
On Sat, May 28, 2016 at 5:50 PM, Marc Lavallée <marc at hacklava.net> wrote:
> So, channels will stay uncoupled for Ambisonics? That would be great,
> because considering how good Opus already is, I don't think that more
> optimization is required, and it would put content creators at ease;
> they often believe that any compression or channel
Ambisonics with Head Locked Stereo to Opus Channel Mapping Family 2 for WebVR Chrome App and YouTube
2020 Aug 07
0
Ambisonics with Head Locked Stereo to Opus Channel Mapping Family 2 for WebVR Chrome App and YouTube
Hello,
I am trying to encode an Opus file with Ambisonics including Head-Locked (non-diegetic) Stereo sound for a Virtual Reality 360° video.
YouTube describes the spatial audio requirements here:
https://support.google.com/youtube/answer/6395969
It's the last list item 5.
> 5. Supported First Order Ambisonics (FOA) with Head-Locked Stereo format:
> W, Y, Z, X, L, R as a 6-channel
2018 Jan 26
2
[lldb-dev] Trying out lld to link windows binaries (using msvc as a compiler)
(Ignore the fact that my hashes are 8 byte in the "good" file, this is due
to some local changes I've been experimenting with)
On Fri, Jan 26, 2018 at 9:48 AM Zachary Turner <zturner at google.com> wrote:
> I did this:
>
> // a.cpp
> static int x = 0;
> void b(int);
> void a(int) {
> if (x)
> b(x);
> }
> int main(int argc, char **argv) {