search for: uninet

Displaying 20 results from an estimated 27 matches for "uninet".

Did you mean: uninett
2009 Mar 17
1
VAD speex 1.2rc1
.... So... if voice is not detected I just reduce the agc value in order to not amplify the 'silence' otherwise we just increase the agc value if it is below the minimum. Thanks, Daniel ----- Original Message ----- De: Jean-Marc Valin <jean-marc.valin at usherbrooke.ca> Para: danflu at uninet.com.br Cc: speex-dev at xiph.org Assunto: Re: [Speex-dev] VAD speex 1.2rc1 Data: Mon, 16 Mar 2009 21:21:50 -0400 > Hi Daniel, > > Basically, all this says is that the VAD may not perform > as well as the previous one. But it'll depend on your > data. > > Jean-Marc &g...
2009 Mar 11
1
frame_size parameter
...ore than one channel. Am I missing something ? Thank you! Daniel Jean-Marc Valin escreveu: > In stereo mode, you need to use the init_mc() call and consider the > number of samples *per channel*. Also, more than 20 ms frames are a bad > idea. > > Jean-Marc > > danflu at uninet.com.br a ?crit : > >> Hi, >> >> I'm using the echo cancellation api and I would like to >> clarify the 'frame_size' parameter used in >> speex_echo_state_init(frame_size,filter_length). >> >> >> In the 'docs' it says: >&gt...
2006 Jun 24
6
Ajax fade effect
I have a list of categories, when I delete one of them, I want that item to fade and then get removed. So I do the following: 1. home_controller: def delete @category = Category.find_by_name(params[:name]) @element_id = @category.name Category.delete_all(["name = ?", @category.name]) end 2. delete.rjs: if @element_id page.visual_effect :fade, @element_id
2009 Mar 10
2
frame_size parameter
Hi, I'm using the echo cancellation api and I would like to clarify the 'frame_size' parameter used in speex_echo_state_init(frame_size,filter_length). In the 'docs' it says: "...where frame_size is the amount of data (in samples)you want to process at once..." So... here are my questions: if I use stereo input/output do I have to put the samples doubled ? For
2004 Sep 22
8
Digium Hardware
Hi, Has anybody had any problems getting digium hardware lately? Regards Greg Cirino ___________________________________ Cirelle Enterprises Inc. 603-425-2221 www.cirelle.com Website Design www.cirelle.net ProSpeed High Speed Dial-up - 5 Times Faster www.cedata.com Web, FTP, Email Hosting Services www.mlsbot.com MLS IDX Services When You Want It Done Well, Just Call Cirelle It's not just a
2004 Aug 02
1
help with digium E1 card
...3 00:59:23 WARNING[16384]: loader.c:313 ast_load_resource: chan_zap.so: load_module failed, returning -1 Aug 3 00:59:23 WARNING[16384]: loader.c:408 load_modules: Loading module chan_zap.so failed! What could be happening? Thanks, HoraPe --- Horacio J. Pe?a horape@compendium.com.ar horape@uninet.edu
2005 Apr 15
2
Newbie question
...init=/bin/sh" # tried this, didn''t help. /root/ttylinux-xen is the image downloaded from sf.net, I''ve mounted it and /sbin/init is there. Using xen-unstable 2005-04-14 snapshot. What am I doing wrong? Thanks, HoraPe --- Horacio J. Peña horape@compendium.com.ar horape@uninet.edu _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2006 Aug 16
5
Rails theory question, where to put a join query
The is something I wrestle with a bit when I construct joined queries.. Perhaps some experienced insight will straighten this out for me. Say you have two tables with two models, ''authors'' and ''posts''. an author has_many posts, a post has_one author. You need methods to do the following queries: find_author(postid) find_posts(authorid) And you are doing a
2004 Aug 06
3
E1 monochannel :-(
...xten => _9.,1,Dial(Zap/1/${EXTEN:0}) ; i must send the 9 to the PRI... [default] zapata.conf: [channels] context=pri2ip switchtype=euroisdn signalling=pri_net ; pri_net is ok group=1 channel => 1-15,17-31 Some help? Thanks, HoraPe --- Horacio J. Pe?a horape@compendium.com.ar horape@uninet.edu
2006 Aug 12
0
trivial questions about rails edge
...ick/httpserver.rb:104:in `service'' /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'' ---------------- 2. $ ruby vendor/rails/railties/bin/rails -v Rails 1.1.2 This seems misleading... ---------------- Saludos! HoraPe --- Horacio J. Pe?a horape@compendium.com.ar horape@uninet.edu
2006 Aug 14
3
Rails on Linux with a MS SQL Database
So, does anyone know much about getting rails (on Linux) to talk to mssql? There is a mssql driver, but it only works in Windows. A site said that using ODBC might be an option, but I didn''t see a specific ODBC driver for rails mentioned. The nix machine runs php and it can connect to the mssql db just fine, I don''t recall if it was using ODBC or free TDS though. I hoped
2009 Jan 30
1
echo_cancellation_api
Please, I'm looking at speex rc1 echo_cancellation API docs and I found there is now a funcion for doing decorrelation: void speex_decorrelate( SpeexDecorrState * st, const spx_int16_t * in, spx_int16_t * out, int strength) How does it fit to the speex_echo_cancellation function ? When removing echo from multiple channels I need to decorrelate the input mic first and
2009 Mar 04
1
echo cancellation input/output delay
Hi, I've been reading the speex echo cancellation documentation and it says : ".... It is important that, at any time, any echo that is present in the input has already been sent to the echo canceller as echo_frame. ... "; All I'm doing in the echo cancellation process is initializing it once with a call to : SpeexEchoState* speex_echo_state_init(int frame_size, int
2009 Mar 10
0
frame_size parameter
In stereo mode, you need to use the init_mc() call and consider the number of samples *per channel*. Also, more than 20 ms frames are a bad idea. Jean-Marc danflu at uninet.com.br a ?crit : > Hi, > > I'm using the echo cancellation api and I would like to > clarify the 'frame_size' parameter used in > speex_echo_state_init(frame_size,filter_length). > > > In the 'docs' it says: > > "...where frame_size is the...
2006 Jun 23
2
Foreign key - relations
Hello, I''ve got DB like this: (roughly) create table projects ( id int auto blabla, name varchar(200), user_id int, sales_id int); create table users ( id int auto.., name varchar(50)); So project.user_id has a foreign key to user.id - all is good. Everything works fine. Now my question.. How can set a relationship from two different fields to the users table ?? Fx.
2006 May 01
2
Kernel 2.6.16.11 x package rpm
Which the way easiest to compile the kernel 2.6.16.11 in Centos 4.3 generating a package rpm? -- [ ]s, Analista de Rede Leandro Costa :wq ...... __@ ...._ \ >_ ...(_)/ (_)_________
2001 Jan 02
0
Why add ListenAddress to sshd_conf
...this option. --- (from sshd(8) ) and the ListenAddress 0.0.0.0 directive breaks IPv6 support (in january/2000 the openbsd branch changed that so it works. Why reverting the change and breaking again IPv6 support?) Thanks, HoraPe --- Horacio J. Pe?a horape at compendium.com.ar horape at uninet.edu bofh at puntoar.net.ar horape at hcdn.gov.ar
2003 Apr 13
1
torisa rev b
...schematics downloadable from somewhere? (www.zapatatelephony.org only has Rev. A ones) Does the Rev. A support E1? (just changing the DS2151 for DS2153, the DS crystal and closing the E1 jumpers, or something else is needed?) Thanks, HoraPe --- Horacio J. Pe?a horape@compendium.com.ar horape@uninet.edu
2003 Apr 21
0
torisa: trying to understand the design
...9;t just do ALE = ~(CS3 | CS5) and DWR = MEMWR ? (DS app note 326/452, "DS2141A, DS2143, DS2151, DS2153 Interfacing to a Nonmultiplexed Bus", at http://www.maxim-ic.com/appnotes.cfm/appnote_number/452 does just that) Thanks, HoraPe --- Horacio J. Pe?a horape@compendium.com.ar horape@uninet.edu
2004 Apr 19
0
*****SPAM***** Spanish translation
...(Postfix) with SMTP id 3F441242E1C for <asterisk-users@lists.digium.com>; Mon, 19 Apr 2004 12:26:05 -0500 (CDT) Received: from source ([148.223.46.34]) by exprod5mx116.postini.com ([12.158.34.245]) with SMTP; Mon, 19 Apr 2004 12:18:58 EDT Received: from dev.gluch.org (customer-148-223-46-35.uninet-ide.com.mx [148.223.46.35] (may be forged)) by dns.gluch.org (8.12.3/8.12.3/Debian-6.6) with ESMTP id i3JFvL5t030449 for <asterisk-users@lists.digium.com>; Mon, 19 Apr 2004 08:57:21 -0700 Received: by dev.gluch.org (Postfix, from userid 65534) id E78C21BFB2; Mon, 19 Apr 2004 09:18:51 -0700...