Displaying 20 results from an estimated 118 matches for "aquir".
Did you mean:
aqui
2009 Jul 15
2
Spaces in a name
I am reading regressors from an excel file (I have no control over the file)
and some of the element names have spaces:
i.e. "Small Bank Aquired"
but I have found that lm(SourceData ~ . - "Small Bank Aquired", mcReg)
doesn't work (mcReg = modelCurrentRegressors)
As they are toggles I have ran them through factor() to be treated propertly
as 0 or 1 but due to the fact I am grabbing automagically the first 2/3rds
of the...
2007 Apr 18
3
Problems with the Speex Jitter Buffer
...am using the JitterBuffer wrong.
Many thanks in advance
David Feurle
Init()
{
m_JitterBuffer = jitter_buffer_init(m_Ticks);
jitter_buffer_reset(m_JitterBuffer);
}
Exit()
{
jitter_buffer_destroy(m_JitterBuffer);
}
void BeatJitterBuffer::AddPacket(Packet* packet)
{
m_Mutex.Aquire();
char buff[320];
JitterBufferPacket p;
m_Decoder->DecompressPacket(packet, buff, 320);
p.data = buff;
p.len = 320;
p.timestamp = packet->SequenceNumber() * m_Ticks;
p.span = m_Ticks;
jitter_buffer_put(m_JitterBuffer, &...
2010 Apr 07
1
Kerberos method not working like use kerberos keytab?
Hi,
I have a couple of old samba 3.0.30 installations. I enabled the "use
kerberos keytab" option in the smb.conf file to aquire a tgt
automatically when a user logs in. This works fine on 3.0.30 installs.
On newer samba versions I recognized that the option has been phased out
and replaced by a newer option called "kerberos method" the man page is
not really clear about what to choose here so I googled and found...
2005 Sep 12
5
OT: Online TTS engines?
The one I like:
http://www.rhetorical.com/cgi-bin/demo.cgi
is toast. I think they went broke or got aquired by someone. Also, is there
a Festival voice that sounds as good as Rhetorical or the AT & T stuff? The
default one is barely legible. Since Festival is a little brutal to
configure, I'd like to get someone's recommendation then go through the pain
of reconfiguring it only once.
2007 Apr 20
2
Problems with the Speex Jitter Buffer
...erBuffer = jitter_buffer_init(m_Ticks);
>> jitter_buffer_reset(m_JitterBuffer);
>> }
>>
>> Exit()
>> {
>> jitter_buffer_destroy(m_JitterBuffer);
>> }
>>
>> void BeatJitterBuffer::AddPacket(Packet* packet)
>> {
>> m_Mutex.Aquire();
>> char buff[320];
>> JitterBufferPacket p;
>> m_Decoder->DecompressPacket(packet, buff, 320);
>> p.data = buff;
>> p.len = 320;
>> p.timestamp = packet->SequenceNumber() * m_Ticks;
>> p.span = m_...
2003 Sep 24
3
RedHat 9.0 and 100 percent CPU utilization
Please, don't hate me because I use Redhat. I am
aware that I am asking for problems in running
Asterisk on Redhat. I recently aquired a nifty
server, moved my digium cards, and installed asterisk.
I noticed that one of the four processors was being
used at 100% and nothing was working. I tracked CPU
utilization back to the Asterisk process. Please,
help.
James
__________________________________
Do you Yahoo!?
Yahoo! SiteBu...
2006 Nov 24
6
dhcpd
Hi
im trying to configure centos to run as a dhcpd daemon but it simply doesnt
work
I'm using the default configuration file from dhcdp (and tried multiple
alternatives).
problem is that pxe clients do not aquire dhcp addresses
in the log i can see that there are 3 or 4 dhcp offers per boot atempt but
no dhcp requests
anyone?
i'm going crazy here... .i've tryed 3 diferent machines (servers) and 4 or 5
diferent clients
sometimes windows clients are able to catch the ip but only sometimes.
m...
2008 Apr 09
4
ssl and NameVirtualHost
I recently aquired a Verisign SSL certificate for my web server on
Centos 4, with apache 2.0.59 from centosplus.
It however doesn't seem to be working the way I've set it up,
browsers connect but are told the certiticate is not recognized.
Showing more info, the information looks correct.
I think i...
2003 Nov 27
4
Multi-line TTS Outbound Dialer
Hello,
I've been lurking around the mailing list and browsing around on
Asterisk-related links while I wait for my X100P to come in the mail.
So far I haven't found very much information related to what I want to
do with Asterisk. I was wondering if someone could point me in the
direction of any work that may already have been done on a project
similar to the one I'm trying to
2020 Oct 24
1
NUT uses port 3493 for everything
...udp # IBM 3494 [Jeffrey_Pilch]
The IBM 3494 is a huge tape cartridge device. Over 6000 cartridges at a time!
It was announced 1995, withdrawn from marketing 2006 and service was
discontinued 2018.
I see that the port 3494 has disappeared from /etc/services in Debian 9. Is it
possible to aquire the port for NUT?
Roger
2007 Apr 20
0
Problems with the Speex Jitter Buffer
...;
>
> Init()
> {
> m_JitterBuffer = jitter_buffer_init(m_Ticks);
> jitter_buffer_reset(m_JitterBuffer);
> }
>
> Exit()
> {
> jitter_buffer_destroy(m_JitterBuffer);
> }
>
> void BeatJitterBuffer::AddPacket(Packet* packet)
> {
> m_Mutex.Aquire();
> char buff[320];
> JitterBufferPacket p;
> m_Decoder->DecompressPacket(packet, buff, 320);
> p.data = buff;
> p.len = 320;
> p.timestamp = packet->SequenceNumber() * m_Ticks;
> p.span = m_Ticks;
> jitter_bu...
2008 Nov 19
1
video files contain one frame more than encoded
...le are at the same time (correct time of the last encoded frame).
Is that normal or maybe a bug or a mistake in encoding?
If it should be normal: What is the reason? Can it be prevented? How
is the relation of the nominal time of the frames in the file to the
time at which the encoded frames were aquired --- is there some
interpolation in time? I need to know the real time corresponding to
each frame in the file ...
Olaf
2007 Aug 08
12
Some more win32-changenotify analysis
Hi all,
I decided to check the responsiveness of the pure Ruby vs C extension
versions of win32-changenotify. I setup this little file generator program:
a = []
10.times{ |n|
a << Thread.new{
File.open("File_#{n}", ''w''){ |fh| fh.puts "test #{n}" }
}
}
a.each{ |t| t.join }
The pure Ruby version did not do so well. In some cases it
2007 Apr 20
0
Problems with the Speex Jitter Buffer
...>> jitter_buffer_reset(m_JitterBuffer);
>>> }
>>>
>>> Exit()
>>> {
>>> jitter_buffer_destroy(m_JitterBuffer);
>>> }
>>>
>>> void BeatJitterBuffer::AddPacket(Packet* packet)
>>> {
>>> m_Mutex.Aquire();
>>> char buff[320];
>>> JitterBufferPacket p;
>>> m_Decoder->DecompressPacket(packet, buff, 320);
>>> p.data = buff;
>>> p.len = 320;
>>> p.timestamp = packet->SequenceNumber() * m_Ticks;
>...
2007 Nov 04
3
WaveIn/WaveOut and Speex
...buffer using Speex
Decode Speex Char buffer into PCM char buffer
Play PCM char buffer using WaveOut
The end-result is very distorted sound.
I use the following PCM format:
waveFormat.nChannels = 1;
waveFormat.nSamplesPerSec = 8000;
waveFormat.wBitsPerSample = 8;
Once sound is aquired by the mic, I send it to Speex in a Char buffer.
It looks something like this:
Encode(char* inBuffer, DWORD bufferLength)
...
float* input = new float[frameSize];
ZeroMemory(input, frameSize);
...
for( )
{
input[..] = inBuffer[..];
}
...
speex_encode(enc_state, input, &bits);...
2006 Aug 29
3
Any one have a good example...
...of a shell script for rsync that won't start again if it is already running?
I thought of using a lock file, but what if it is killed mid script or bombs?
--
MailScanner is like deodorant...
You hope everybody uses it, and
you notice quickly if they don't!!!!
2010 Dec 01
2
kerberos @ samba4 DC
...DC from a domain controller in windows
2000
/usr/local/samba # bin/samba-tool join (WINDOWS 2000 DOMAIN). DC
-U(USER)@(WINDOWS 2000 DOMAIN)%(PASSWORD) --realm=(WINDOWS 2000 DOMAIN). -d5
throws me the following error:
Failed to get CCACHE for GSSAPI client: KDC has no support for encryption
type
Aquiring initiator credentials failed: kinit for ADMCONST at DOMD4086 failed
(KDC has no support for encryption type: KDC has no support for encryption
type)
Failed to start GENSEC client mech gssapi_krb5: NT_STATUS_UNSUCCESSFUL
My krb5.conf is as follows:
[libdefaults]
default_realm = (WINDOW...
2005 Apr 21
0
[LLVMdev] Control Flow and Locks when JITing Functions
...wo lock objects, one for the JIT and one for the JITResolver. However,
> these two classes work very closely together, so I think there should
> only be a single lock object. Does this seem reasonable?
I think it would be more straight-forward to have a single lock that the
jit resolver can aquire. Makes sense to me at least :)
> Additionally, it only seems to make sense that there is a single
> JITResolver instance. Thus, I am going to force code to hold the lock
> before calling "getJITResolver." Does that seem reasonable?
Yes, there can be only one JITResolver.
-Ch...
2009 Jun 19
1
TOSHARG-BDC.xml translate finish and some bug found
...e file <filename>private/secrets.tdb</filename>. This file is unique to each
server and cannot be copied from a PDC to a BDC; the BDC will generate a new SID at startup. It will overwrite
the PDC domain SID with the newly created BDC SID. There is a procedure that will allow the BDC to aquire the
------
acquire?
domain SID. This is described here.
--
--- Oota Toshiya --- t-oota at dh.jp....
2009 May 12
5
GPLPV 0.10.55 net misbehaviour
...configured for DHCP, which isn''t
good for me so I assign IP address, gw and DNS. When clicking OK, I''m
warned about a duplicate IP address (from the dormant RTL8139, as
expected). I accept the duplicity and then the taskbar interface icon
as well as the status dialog shows "aquiring network address" for ever,
the NIC properties dialog stops to respond, the interface won''t come up.
After rebooting the VM another time, network seems to work correctly.
Is gplpv supposed to work like that? I wonder if the XP fix applies to
2003 as well, since I''ve never...