Recent Posts

Pages: 1 ... 8 9 [10]
91
Windows / Noise before call
« Last post by popeye on June 16, 2020, 08:47:08 PM »
Hello
Does anyone know how to remove noise after dialing phone number?
The sound is like my ears are ringing.
Thank you.
92
Thanks for your reply.

Yes I remember trying the HTTPS URL and seeing the self-signed certificate. It helps a bit but still doesn't fully mitigate the risk.

When using software in production I do my best to ensure there's no risk of accidentally ending up with malicious code thanks to an MITM attack. Most software nowadays is distributed over a secure channel (whether HTTPS or HTTP with signatures verified out of band, like Debian's APT that uses GPG keys for this) so I was hoping it would be the same for Yate.
93
Rjevski, nahuya vam https ?

Here is the working link:

svn checkout https://voip.null.ro/svn/yate/trunk yate

but the certificate is self-signed. Therefore, from SVN there will be additional questions.
94
Hello,

Does anyone know how can I get a copy of the YATE source via a secure channel such as HTTPS?

At the moment it seems like both binary downloads and SVN go over unencrypted HTTP.

Regards.
95
YateBTS / Re: yateBTS network operator name of 712712
« Last post by kpz on May 16, 2020, 04:39:12 AM »
Great to hear this bug is fixed, it was literally driving me nuts at that time.

goodboy, I appreciate that help and will check it out when I dive back into it at somepoint just for sh!ts and giggles, thank you.
96
Yate IVR / Re: Nodejs library compatible to javascript.yate
« Last post by cc08 on April 19, 2020, 04:59:19 PM »
Indeed, the conversion to the slin solved the click problems.
Thanks a lot.
97
Yate IVR / Re: Nodejs library compatible to javascript.yate
« Last post by Anton on April 16, 2020, 10:33:59 AM »
I suppose you messed up something with running a script with extmodule.
If the script would be launched by extmodule there is no need to use a network connection.
For example:

extmodule.conf configuration
[scripts]
node.sh=local_connected.js

And local_connected.js could contains something like this:
let yate = new Yate();

Of course, If you really want network connected script and launched by yate you can do it in "execute" section:
extmodule.conf configuration
[listener sample]
type=tcp
addr=127.0.0.1
port=6030
role=global

[execute]
node.sh=network_connected.js

And network_connected.js:
let yate = new Yate({ host: "127.0.0.1", port:6030 });

Second answer :)
I've experimented with WAV files and listened artifacts per voice file too. I don’t understand why such a popular format is still ignored by Yate Team. I would recommend to you converting WAV files to a more suitable format. Here is brief guide http://docs.yate.ro/wiki/ConvertingAudio

Best regards,
Anton
98
Yate IVR / Re: Nodejs library compatible to javascript.yate
« Last post by cc08 on April 16, 2020, 09:16:59 AM »
Yes, today was a free day, I decided to try it.
Today's git too.
I took an example from the first page of your git, slightly modifying it.

Code: [Select]
// Core API
const { Yate, YateMessage } = require("next-yate");
let yate = new Yate({ host: "127.0.0.1", port:6030 });

yate.init(() => {console.log("Connected")}); // Initialize connection before use
yate.output("Hello World!");


A little cleared up, this error appears when the script is launched by the extmodule from yate.

If the launch is manual, then everything is clean in yate.

Second question :)
When playing several wav files between them I listen to clicks.
How can you deal with this?

99
Yate IVR / Re: Nodejs library compatible to javascript.yate
« Last post by Anton on April 16, 2020, 09:00:51 AM »
I try to play with your module, but this string from  example_core_api.js :

Code: [Select]
yate.init(() => console.log("Connected"));
causes an error in yate console :

Code: [Select]
<ExtModReceiver:WARN> Error: 'Connected'
this is normal ?

Something seems to be wrong.
Are you using the latest version from Git?
Outdated examples with own bugs have been removed. :) So, please, show the beginning of this code, if it’s not difficult for you.

Best regards.
Anton
100
Yate IVR / Re: Nodejs library compatible to javascript.yate
« Last post by cc08 on April 16, 2020, 08:17:50 AM »
I try to play with your module, but this string from  example_core_api.js :

Code: [Select]
yate.init(() => console.log("Connected"));
causes an error in yate console :

Code: [Select]
<ExtModReceiver:WARN> Error: 'Connected'
this is normal ?
Pages: 1 ... 8 9 [10]