Displaying 20 results from an estimated 1000 matches similar to: "SpeexEnc Launcher"
2005 Mar 01
0
SpeexEnc Launcher
Hi Tyler!
I found your e-mail in a forum and would like to ask you some questions if you don't mind.
I just learn about Speex last night and would like to know if works ok with VB. Since you have working with this in VB your could say something.
I intend to make a simple application to allow me to comunicate between to computers using VOIP and in each computer having a two-way
2004 Aug 06
1
compile speexenc 1.1.4
Hello,
I have problems to compile speexenc 1.1.4, ihave the following errors
<p>speexenc.obj : error LNK2001: unresolved external symbol
_speex_preprocess
speexenc.obj : error LNK2001: unresolved external symbol
_speex_preprocess_ctl
speexenc.obj : error LNK2001: unresolved external symbol
_speex_preprocess_state_init
Debug/speexenc.exe : fatal error LNK1120: 3 unresolved externals
Error
2005 Oct 05
2
spx1.1.10 speexenc compile
Hi all,
Been trying to compile speex 1.1.10's speexenc for win32 using Visual C++
6.0 but came up with some errors (abt 33 of them, syntax errors). I just
traced them to a variable called "SPEEX_VERSION" which i think isnt defined
in speexenc but rather defined in misc.h, which wasnt one of the include
files in speexenc... should i add a line that includes misc.h in speexenc? i
2006 Jan 01
2
Re: speexenc always crashes on amd64
Hi.
Le duodi 2 frimaire, an CCXIV, Wesley J. Landaker a ?crit?:
> speexenc always crashes on amd64; here is an example, and lots of info:
I tracked this bug a bit further than you. Here is the origin of the crash:
op.packet = (unsigned char *)speex_header_to_packet(&header, (int*)&(op.bytes));
(from speexenc.c)
op.bytes is a long, not an int, it is wrong to pass it as an int,
2005 Oct 06
0
spx1.1.10 speexenc compile
Hi Mon,
I added 'misc.h' to the #includes in speexenc.c and commented out the
declaration of 'le_int' in 'wav_io.h'. Then, it compiles and works fine.
John
Mo Win wrote:
> Hi all,
>
> Been trying to compile speex 1.1.10's speexenc for win32 using Visual
> C++ 6.0 but came up with some errors (abt 33 of them, syntax errors). I
> just traced them to
2006 Aug 02
1
[PATCH] skeleton support for speexenc and speexdec
Hi,
I have done some code cleanup of my speexenc patch for skeleton
support. Also a warning message have been added to let the users know
that some decoders may fail with skeleton output enabled.
The speexdec patch enables speexdec to play skeleton enabled speex file.
Thanks in advance for the feedbacks.
--tahseen
-------------- next part --------------
A non-text attachment was scrubbed...
2006 Nov 06
1
speexenc seg fault, amd64
Is there a bugzilla or similar for speex?
I'm getting core-dumps on AMD64 speex (ubuntu)
> speexenc -v
speexenc (Speex encoder) version 1.1.11.1 (compiled Dec 9 2005)
Copyright (C) 2002-2005 Jean-Marc Valin
> speexenc /tmp/d04t05.wav d04t05.spx
Encoding 16000 Hz audio using wideband (sub-band CELP) mode (mono)
Segmentation fault
> aplay /tmp/d04t05.wav
Playing WAVE
2004 Aug 06
0
compile speexenc
----- Original Message -----
From: "Guillaume ROGET" <guillaume.roget@fr.thalesgroup.com>
To: <speex-dev@xiph.org>
Sent: Monday, March 29, 2004 11:02 PM
Subject: [speex-dev] compile speexenc
<p>> Hello,
> Iam being to compile speexenc but I have the following error:
>
> LINK : warning LNK4098: defaultlib "LIBCMTD" conflicts with use of other
>
2007 Jan 13
1
Batch Processing for SpeexEnc and SpeexDec
Hello, I am a master's student using Speex for my thesis research.
My question is this: I am running speex from a command line in Unix
and I want to encode/decode numerous files at once. How can this be
done since the speexenc requires [options] input_filename.wav
output_filename.spx and the reverse extensions for the decoder.
Sorry I am much more of a hardware (read: EE) then a CS guy. I
2007 Apr 28
2
SpeexEnc/SpeexDec Source Code
I'm working in .NET and have found that there is, unfortunately, no simple
way to access unmanaged, object-oriented APIs from C#/VB.NET. Ultimately I
have decided to adapt speexenx and speexdec into a simple, functional API
with two functions: one for encoding an array of bytes, and one for decoding
it.
Does anyone know if the source code for speexenc and speecdec is available,
or are they
2011 May 04
2
speexenc/speexdec doubles file size
this is not really a development question, but i didn't find another
mailing list to ask it.
any idea why size of wav file doubles when it is encoded to speex and
back to wav:
$ ls -ls testi.wav
40 -rw-r--r-- 1 foo foo 40674 May 4 14:38 testi.wav
$ speexenc --denoise --agc --quality 10 testi.wav testi.spx
Encoding 8000 Hz audio using narrowband mode (mono)
$ ls -ls testi.spx
20
2004 Aug 06
1
speexenc/dec exit code
Hi all,
I've another trivial request: Is there any particular reason why
speexenc and speexdec return 1 on successful completion? It would be
preferable if they returned 0 unless there were errors, to be
consistent with other *nix utilities and to allow for easier
scripting (eg speexdec sample.spx && cp sample.spx somewhere)
Would anyone be against this?
TIA,
Bernard.
--
2004 Aug 06
1
speexenc and speexdec
When I use speexenc appplication to encode a wav file and then speexdec to decode it the decoded wav is bigger than the original, why this happens?
Thanks.
Miguel Gomes
<p>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: winmail.dat
Type: application/ms-tnef
Size: 2786 bytes
Desc: winmail.dat
Url :
2006 Jun 07
1
Unable to compile speexenc and speexdec projects of speex1.0.5
Dear developers,
I am not able to compile speexenc and speexdec projects of speex1.0.5
on windows because of ogg.h file (and related file) are not included
with the source code.
So can you please include ogg.h and other file which should included
in ogg folder
in source code so that i can compile it and use this source.
Thank you
2006 Jul 19
1
Skeleton output support in speexenc
Hi,
I just added skeleton meta data output support in speexenc. The option
is disabled by default and can be enabled using -k or --skeleton. I'm
using a very simple skeleton API for handling skeleton packet
generation which is contained in skeleton.h & skeleton.c.
Please check the patch and whether xine/mplayer/quicktime and other
players support the skeleton enabled speex file. At the
2006 Aug 08
1
[PATCH] updated skeleton support for speexenc
Hi,
Jean it was indeed an error on my part. Its fixed in this update.
Also skeleton API has been updated.
Thanks for catching the bug.
--tahseen
-------------- next part --------------
A non-text attachment was scrubbed...
Name: speexenc-skeleton.patch
Type: text/x-patch
Size: 17115 bytes
Desc: not available
Url :
2009 Nov 06
0
how to run then speexenc or speexdec in mipsel host
Hi.
I have some trouble in my case, I build speex project with mipsel-linux-gcc
.but when I copy speexenc or speexdec to my taget platform, and run, the
message "./speexenc can not found" has been append.
Can you help me ?
Thanks
Charles
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2011 May 04
0
speexenc/speexdec doubles file size
Juha Heinanen writes:
> any idea why size of wav file doubles when it is encoded to speex and
> back to wav:
>
> $ ls -ls testi.wav
> 40 -rw-r--r-- 1 foo foo 40674 May 4 14:38 testi.wav
>
> $ speexenc --denoise --agc --quality 10 testi.wav testi.spx
> Encoding 8000 Hz audio using narrowband mode (mono)
>
> $ ls -ls testi.spx
> 20 -rw-r--r-- 1 foo foo 16405
2010 Mar 12
1
ffmpeg to speexenc via pipe
I am transcoding mp3 to wave using ffmpeg
I am then piping it to speexenc for speex encoding
but the speex file size is 496 bytes after the command ends
https://lists.ubuntu.com/archives/ubuntu-users/2010-March/212927.html
https://lists.ubuntu.com/archives/ubuntu-users/2010-March/212949.html
https://lists.ubuntu.com/archives/ubuntu-users/2010-March/212954.html
what am I doing wrong?
bellow is
2008 Feb 08
2
Quick bug in speexenc
Good day, a quick bug while encoding speexes in speexenc.
While reading a .wav in function read_samples, size can get to negative
values, as long as fread is able to go forward with reading the file. This
can happen with Protools-generated wavs, where they put additional
information after the "data" fourcc.
I created a very quick hack by adding:
int tentative_read =