Displaying 20 results from an estimated 200 matches similar to: "Speex + Ogg package"
2006 Aug 06
2
Speex + Ogg package
sorry, no webchat, is a videoconference program. And I'm using UDP as you
can read down on the mail.
The problem is that speex packages alone work great, but to split
speex/theora packages on the arrive I need to use some kind of container,
and I'm trying ogg.
On 8/7/06, Jean-Marc Valin <jean-marc.valin@usherbrooke.ca> wrote:
>
> If by webchat you mean anything interactive,
2006 Aug 06
0
Speex + Ogg package
If by webchat you mean anything interactive, then I can already tell you
what the problem is. TCP+Ogg. For anything real-time, you want UDP/RTP
without Ogg. Also, you need to take into account the fact that computers
do *not* have accurate clock and their soundcards drift. None of these
problems are fatal, but you need to take that into account in the
design.
Jean-Marc
On Mon, 2006-08-07 at
2005 Feb 09
2
encoding speex, (insanity looming)
Hi All,
I'm very new to speex and in fact handling audio at all, it seems I have run
in to a problem I seem unable to fix. I'm trying to take audio from a microphone
using alsa, then encode it as speex and save to disk. I have been
wondering if it has something to do with endian type, but speexenc and
speexdec works fine.
Currently I have the following setup:
Platform:
2008 Feb 17
1
Voice activity detection
Thanks for your reply. I changed my code to:
if (speex_preprocess_run(preprocess_state, shortPointer) == 1)
{
speex_encode_int(enc_state, shortPointer, &enc_bits);
}
In the mobile version of the software, compiled against the mobile build of Speech, I get 1 and 0 based on whether the speech is detected. In the version of the software compiled against the Win32 version of Speex,
2006 May 29
14
Jabber Powered Rails Chatroom
For those who cant access IRC, or just looking for a quick browser based
alternative, i started an open jabber powered webchat for rails. Hopefully
this will be a nice alternative for people to go to ask questions, get some
help, offer some help, etc.
I hope the community enjoys it, just trying to give a little back for all
the hard work.
It can be accessed here
http://jabber.dufftech.com
2014 Mar 22
5
Samba documentation team
Hello Samba developers,
hello active Samba mailing list supporters,
hello *
During the last year I (re-)wrote a lot of HowTos and tried to clean up
the Wiki in a careful way. But it still contains many outdated,
unstructured and hidden content. And in the past weeks we had more and
more complaints and questions about missing documentation, first start
Howtos, trouble shooting guides, etc.
2003 Apr 04
5
Anti-idle in OpenSSH client?
Heya,
Most of the windows ssh clients (putty, securecrt) have anti-idle
features. They offer either a null packet or protocol no-op or user
defined string to be sent over every x seconds.
Is this possible or planned with the OpenSSH client? Our draconian
firewall admins have started timing out ssh sessions. Yes I'm aware I
could hack up a port forwarding dumb traffic process, but was
2008 Aug 14
4
Stateful Webmail
Hello,
I'm a developer on the Orbited project (http://www.orbited.org), which
provides a TCPSocket interface in javascript (emulated over HTTP using ajax
and comet.) This TCPSocket allows true bi-directional communication between
a web browser and an arbitrary tcp server. One of the other developers
pointed me to a recent dovecot thread about webmail. Sorry for the new
thread (I just joined
2009 Jul 01
2
Login to puppet on IRC
Any one able to join puppet chat from :
http://reductivelabs.com/home/irc/
I tried from IE and Firefox. It says '' Login Terminated''
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com
To unsubscribe from
2008 Apr 04
2
speexdec 1.2.3
On Fri, Apr 4, 2008 at 12:19 AM, Jean-Marc Valin
<jean-marc.valin at usherbrooke.ca> wrote:
> Jahn, Ray (R.) a ?crit :
>
> > Dear Speex codec community:
> >
> > I am working on conversion of voice files. I could not figure out how to use speexdec.exe 1.2.3 in piped mode in order to avoid the creation of the potentially large intermediate *.wav or *.pcm files. Any
2017 Dec 06
1
reminder: Community meeting at 15:00 UTC in #gluster-meeting on Freenode IRC
Hi all,
This a reminder about today's meeting. The meeting will start later
today at 15:00 UTC. You can convert that to a local time with the
following command in your terminal:
$ date -d '15:00 UTC'
Because the meeting is an open floor, topics and updates need to be
added to the meeting pad at:
https://bit.ly/gluster-community-meetings
Hope to see you later online,
Niels
2005 Feb 09
0
encoding speex, (insanity looming)
In short try calling speex_encode_int and speex_decode_int.
The calls to speex_encode and speex_decode expects the data to be a floating
point values. The data is passed by pointer and the compiler does not do
the conversion. This is why you are getting the segfault on decode as the
short is 16-bits and a standard float is 32-bits.
Tom
-----Original Message-----
From:
2004 Aug 06
0
Invalid mode encountered: corrupted stream?
Hi,
in my application i quite often (not allways) get those two warning:
"Invalid mode encountered: corrupted stream?"
"Invalid wideband mode encountered: corrupted stream?"
The stream is not corrupted but i wish to know what those warning mean to
correct my code.
My encode and decode routines are those (libspeex 1.1.4):
SpeexBits enc_bits, dec_bits;
void *enc_state,
2005 Feb 09
1
encoding speex, (insanity looming)
Hi Tom,
Thanks for your reply, I'm having a few difficulty's following you
advise. You mention that I should be calling 'speex_encoder_int' &
'speex_decoder_int', I'm having problems finding these functions in
the speex header. I am currenlty calling speex_encoder_init &
speex_decoder_init in my test code, I have repeated the relevent bits
of the example
2001 Dec 26
3
auth*.c
Folks,
During testing, we found a couple of issues with openssh3.0.2p1:
1. In userauth_finish() in auth2.c (as well as in do_authloop in auth1.c),
the foll. check:
if (authctxt->failures++ > AUTH_FAIL_MAX)
is never satisfied and thus packet_disconnect() never gets called. I
suspect the code just drops out of the dispatch_run function list instead.
This should be an == instead of >.
2004 Aug 06
0
Speex wrapper functions for Visual Basic
Hello,
i want to use speex out of visual basic. So i have written a few wrapper functions in VC++ (v6) wich i can call from VB (v6). But i have problems with the encode and decode functions.
Encode wrapper Function:
I want to copy the value of an single array in VB to a float array in C which can be
encoded. And the output of the encoder have to be unsigned char because in VB its an
byte
2006 Dec 29
0
using speex in C#
Hi SAITAMA Taro,
I have been using speex-1.2beta1 dll in our voice application written with
C#. In order to use Speex correctly firstly I advice to you examination
speexenc and speexdec projects.
I have used unsafe code and fixed statements in C#. I have added following
method to library and I used that instead of speex_encoder_init simply.
void *speex_encoder_init_new(int modeID)
{
const
2015 Nov 16
2
Stereo voice not being retained
Hello,
I've been using Opus on an STM32 M4 platform for speech coding in mono mode. I thought I'd try stereo for grins to see if I can handle the CPU load, and I'm getting a return code of -1 from opus_decode_float (using CBR and 40ms frames).
I decided to try the opusenc and opusdec tools to just see how the command line apps would behave. I am getting decoded audio, but I am
2014 Apr 06
2
Samba documentation team meeting reminder
Hello,
hope to see you all again tomorrow (monday) at 7pm CEST in IRC. Of
course everyone new is welcome, too.
For a more structured discussion I drafted an agenda:
https://pad.riseup.net/p/Agenda_2014-04-07
Feel free to add own questions/topics, we should talk about.
IRC on freenode.net (channel: samba-documentation)
irc://chat.freenode.net/samba-documentation
http://webchat.freenode.net/
2011 Jul 26
0
More frames in one packet
Hi,
I read in the documentation something about how to realize packing more than one encoded frame into a packet. Before I read this, I always encoded every frame seperate and packet them as following together:
[encoded length][encoded frame][encoded length][encoded frame]...
But if I understood the docu correct, it should be easier:
I call speex_encode_int() for every frame until the whole