Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Dam Dat

Pages: [1]
1
YateBTS / can not change MNC and MCC
« on: October 24, 2018, 07:58:56 PM »
hi everyboby
when i change Identity.MNC = 04 and Identity.MCC = 452,BladeRF normal works (blinker works), but telephone dont detect my network
may be yatebts dont allow this?
everyone anyone knows tell me, please!

2
Yate users hangout place / Re: record files auto deleted
« on: October 16, 2018, 08:34:49 PM »
thank marian
resolved the problem

3
Other Yate server issues / Re: Record all call
« on: October 11, 2018, 11:08:12 AM »
i successfully recorded calls
but before restart my PC, record files automatically deleted
how can i fix this error?

4
Yate users hangout place / record files auto deleted
« on: October 11, 2018, 11:07:40 AM »
Hello everybody
i successfully recorded calls
but before restart my PC, record files automatically deleted
how can i fix this error?
thank for helping!

5
YateBTS / message on PC
« on: August 21, 2018, 09:06:51 AM »
Hi everyone
tell me, please how can we read messages between 2 phone on PC like recording calls?
I cannot find any document about it.
Thank!

6
Other Yate server issues / Re: Record a call in regexroute
« on: August 14, 2018, 08:06:44 PM »
HI bnaetsch, marian
can you tell me
to record call i need add
.*49351898818077$={
    .*=enqueue chan.masquerade;id=${id};message=chan.record;call=wave/record//var/records/inbound_${called}_${caller}$(timestamp).slin;peer=wave/record//var/records/outbound_${called}_${caller}$(timestamp).slin
   .*=sip/sip:+49302555880114778@213.XX.XX.XX:6045
}

on bottom regexroute.conf ?
And can you tell me parameters. what is serial 49351898818077, +49302555880114778
where can i play files recording?

Thanh you very much for helping!

7
Features requests / error record wave
« on: August 14, 2018, 06:56:05 PM »
hello everybody i found some guide codes "record call" in this page
https://gist.github.com/vir/b1a868ef1d4aa5239064

#!/usr/bin/perl
use strict;
use warnings;
use Yate;
use Data::Dumper;

# Convert results into stereo wav:
#  sox -M /tmp/rec_2015-05-20T17\:09\:44_no-billid_6134-[AB].au /tmp/rec_2015-05-20T17:09:44_no-billid_6134.wav

my $yate = new Yate(Debug=>0);
$yate->connect("127.0.0.1:42428");
$yate->install('call.answered', \&call_answered_handler, 70);
$yate->listen();

sub call_answered_handler
{
  my $m = shift;
  my $billid = $m->param('billid') // 'no-billid';
  my $date = mk_date();
  my $fn = sprintf("/tmp/rec_%s_%s_%04d", $date, $billid, int(rand(10000)));
  my $ext = 'au';
  print "Recording call: $fn\n";
  $m->message('chan.masquerade', undef, '',
    message => "chan.record",
    id => $m->param('id'),
    peer => "wave/record/$fn-A.$ext",
    call => "wave/record/$fn-B.$ext",
  );
  open F, '>:utf8', "$fn.txt" or warn "Can't open $fn.txt: $!\n";
  print F Dumper($m->{params});
  close F or warn "Can't write to $fn.txt: $!\n";

  $date =~ s/_.*//;
  my $script = "/tmp/convert_$date.sh";
  my $first = !-e $script;
  open F, '>>:utf8', $script or warn "Can't open $script: $!\n";
  print F "#!/bin/sh\n" if $first;
  print F "sox -M $fn-[AB].au $fn.wav && rm $fn-[AB].au\n";
  close F;
  return undef;
}

sub mk_date
{
  my $time = shift;
  my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($time // time());
  return sprintf "%04d-%02d-%02d_%02d%02d%02d", $year + 1900, $mon + 1, $mday,$hour,$min,$sec;
}



and i received this response :
Can't locate Yate.pm in @INC (you may need to install the Yate module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /home/p52/record_all_calls.pl line 4.
BEGIN failed--compilation aborted at /home/p52/record_all_calls.pl line 4.

who can hepl me fix this error please!

8
YateBTS / record wave
« on: August 06, 2018, 07:58:36 PM »

9
YateBTS / Re: can we record calls with yatebts ?
« on: July 24, 2018, 08:50:51 PM »
i have got same question  ;D ;D ;D

Pages: [1]