similar to: header question

Displaying 20 results from an estimated 1000 matches similar to: "header question"

2004 Aug 06
2
header question
Jean-Marc Valin wrote: >>a simple question which i can't answer through the manuals ... is the >>header always 80 bytes long? >>thanks in advance, >> >> > >Right now it is. However, I may add some fields (or even additional >headers) in the future if needed. This shouldn't be a problem since the >header is always alone in his packet and
2004 Aug 06
0
header question
Another thing i noted when looking at the java code is a package counter ... is it important to know at which package the stream pointer stands? I mean, if it is important to continously increment the package counter i would have to repackage the audio data for every listener .... which can become quite CPU loady ... ulrich <p><p>Ulrich B. Staudinger wrote: > Jean-Marc Valin
2004 Aug 06
3
q about jspeex - repost of TestClient.java with PipedInputStream
There is actually a mail missing - the version with the pipedinputstream construction. attached the current source with pipedinputstream/pipedoutputstream tia, ulrich <p><p> -------------- next part -------------- A non-text attachment was scrubbed... Name: TestClient.java Type: text/x-java Size: 14939 bytes Desc: TestClient.java Url :
2004 Aug 06
2
frame size
hello, i have a simple question about speex frame size. i work with jspeex - but i think it's speex generic, the question i have. can i use any frame size i want? or does the size have be in a certain ratio to other numbers? and what does the frame size in the decoder mean? encoded or decoded packet frame size? how much data can i hand to the encoder to encode? if i hand i.e. 400 bytes to
2004 Aug 06
0
q about jspeex
Hi, i have: public void run(){ try{ System.out.println("Opening mic"); // AudioInput ai=new AudioInput(t); // ai.start(); if(t.input==null){ AudioFormat format = new AudioFormat(AudioFormat.Encoding.PCM_SIGNED, 44100, 16, 2, 4, 44100, false);
2004 Aug 06
3
q about jspeex
Hi Marc, thanks for the quick reply. Marc Gimpel wrote: > It would appear the the 'pcm2speex.read(frame, 0, frame.length)' is > blocking which means that it is waiting for data from the underlying > inputstream (i.e.AudioInputStream(t.input)). If it could read > sufficient data it would transcode it. If it recieved an EOF, it > should do some zero padding and then
2004 Aug 06
3
Mixing audio
Is There any intension to deal with mixing two or more streams encoded with "speex". Most voice wise applications (such as conference) need this feature. Oded Rephael <p><p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'speex-dev-request@xiph.org'
2003 Aug 13
1
questions questions questions
hi, ok. i am pretty new to this list, but there seems to be little activity at all. first of all, here is a screenshot: http://greenthumb.jabberstudio.org/video.png - it's screenshot of my buddy list in my jabber client (java based). I have a simple (or not so simple) task to achieve: stream the video from one end through the jabber server to another end and show the stream in my buddy
2003 May 26
1
[patch] port-irix.c: refine jlimit support
--- openbsd-compat/port-irix.c.orig 2002-04-07 03:58:33.000000000 +0900 +++ openbsd-compat/port-irix.c 2003-05-27 02:11:07.620000380 +0900 @@ -7,6 +7,12 @@ #endif /* WITH_IRIX_PROJECT */ #ifdef WITH_IRIX_JOBS #include <sys/resource.h> +#include <optional_sym.h> +# if !defined(JLIMIT_CPU) +typedef __int64_t jid_t; +extern jid_t jlimit_startjob(char *, uid_t, char *); +# pragma
2002 Mar 07
1
Irix joblimits failure (was: Re: New snapshot)
IRIX has a compatibility mechanism that lets you test for optional symbols (like jlimit_start) at run-time. I think these patches will let all all IRIX 6.5 systems build images that will test for job limit support dynamically: --- ./configure.ac Wed Feb 27 01:12:35 2002 +++ ../openssh-3.1p1/./configure.ac Thu Mar 7 15:50:21 2002 @@ -115,7 +115,7 @@ AC_DEFINE(WITH_IRIX_ARRAY)
2005 May 24
1
Jail support for mac_portacl(4).
Hi. When we don't have too many IP addresses available and we want to run for example www server inside a jail, but use the same IP address as the main system, we need to actually use an internal IP address and forward http port with firewall from external IP to jail's IP. In that way we know that if somebody breaks into out jail, he cannot run sshd server (we have keys, I know) or any
2006 May 21
5
Looking for a Rails AJAX gallery/tutorial
Hello everyone, Do any of you know of a downloadable Rails app that demonstrates all the bundled AJAX-iness in an impressive form? I''m looking for two things: - something I can show off to wow people with Rails'' built-in AJAX power, then show them the code that does the work and wow them again with the simplicity. In short, something that will impress potential customers, as
2006 Jul 20
1
Invalid sideband mode encountered
Hi guys I succesfully got my encoder and decoder working after much hassles, but when I use the same code in another project, I get these following errors: Error ---> Invalid sideband mode encountered (1st sideband): 7 Error ---> Invalid sideband mode encountered (1st sideband): 7 Error ---> Invalid sideband mode encountered (1st sideband): 6 Error ---> More than two
2012 Jun 20
1
getting name or uuid of vm within guest OS
Hi, for tl;dr people: how we can get uuid or name of a vm within a guest os? description: We are trying to implement a guest-agent for Archipel* to let us run simple commands on guest os**. in archipel each vm has its own jid (jabber id), user will open a chat conversation to vm's jid and send messages like "!exec ls", then we check that user (jid) who sent !exec has permission to
2007 May 10
6
Where put buissness logic?
I''ve always think that it belongs to controller but I''ve read few articles that it should be done by model and controller should be thin glue betwean model and view. Where should I put it? Regards -- I''ve probably left my head... somewhere. Please wait untill I find it. Homepage (pl_PL): http://uzytkownik.jogger.pl/ (GNU/)Linux User: #425935 (see
2006 Jul 18
1
SpeexEncoder requires 320 samples to process a Frame, not 160
Hi guys I have tried compiling this attached code, I made all the buffers 320, there is no trace of a 160 buffer, but I get a " SpeexEncoder requires 320 samples to process a Frame, not 160" error. Maybe there's something I'm missing, here's my code: import java.io.IOException; import java.io.FileOutputStream; import java.io.File; import
2004 Aug 06
2
optimization possible?
hi, i did some tests about performance in jspeex ... uls@mainframe:~/eclipse/avrelay$ java TestClient Diff1: 0 10 Diff2: 141 started. uls@mainframe:~/eclipse/avrelay$ <p>{ SpeexEncoder e1=new SpeexEncoder(); e1.init(0,1,44100,1); byte[] by1=new byte[320]; long l1=System.currentTimeMillis(); long l2=System.currentTimeMillis(); System.out.println("Diff1:
2011 May 05
2
Problem after restarting libvirt
After restarting libvirt cgroups for VMs are not recovered. Is there available to restore cgroup state after restart? -- Nikita A Menkovich http://libc6.org/ JID: menkovich at gmail.com Tel: +7 (921) 423-96-48
2007 Feb 03
2
Google Talk without gmail accout?
Hello all, I am having trouble getting gtalk to work with my account which is not using a gmail.com email address. When I do this there an error from the Jabber module: [Feb 3 20:51:17] ERROR[6286]: res_jabber.c:573 aji_act_hook: JABBER: Node Error [Feb 3 20:51:17] WARNING[6286]: res_jabber.c:1495 aji_recv_loop: JABBER: Got hook event. JABBER: gtalk_account INCOMING:
2009 Nov 18
3
jspeex question
FLV contains TC messages? TC message payload contains a format byte and speex frames (up to eight). In the format byte 0xb0 indicates speex. Speex is always 16 kHz, 16 bit, mono. Jozsef Message: 1 Date: Mon, 16 Nov 2009 14:40:20 -0600 From: Jeff Ramin <jeff.ramin at singlewire.com> Subject: [Speex-dev] jspeex question To: speex-dev at xiph.org Message-ID: <4B01B8B4.8020904 at