Displaying 11 results from an estimated 11 matches for "not_specified".
2004 Aug 06
0
Lost ogg sync using jspeex
...new AudioInputStream(targetDataLine);
PipedOutputStream pout=new PipedOutputStream();
//PipedInputStream pin=new PipedInputStream(pout);
//ServerSocket serverSocket = new ServerSocket(5555);
Pcm2SpeexAudioInputStream pcm2speex=new Pcm2SpeexAudioInputStream(auin, audioFormat, AudioSystem.NOT_SPECIFIED);
SpeexPlayer speexPlayer = new SpeexPlayer(pout);
//Speex2PcmAudioInputStream speex2pcm=new Speex2PcmAudioInputStream(pin, audioFormat,AudioSystem.NOT_SPECIFIED);
//Socket clientSocket = serverSocket.accept();
//ObjectOutputStream toClient = new ObjectOutputStream(clientSocket.getO...
2004 Aug 06
0
Lost ogg sync using jspeex
...new AudioInputStream(targetDataLine);
PipedOutputStream pout=new PipedOutputStream();
//PipedInputStream pin=new PipedInputStream(pout);
//ServerSocket serverSocket = new ServerSocket(5555);
Pcm2SpeexAudioInputStream pcm2speex=new Pcm2SpeexAudioInputStream(auin, audioFormat, AudioSystem.NOT_SPECIFIED);
SpeexPlayer speexPlayer = new SpeexPlayer(pout);
//Speex2PcmAudioInputStream speex2pcm=new Speex2PcmAudioInputStream(pin, audioFormat,AudioSystem.NOT_SPECIFIED);
//Socket clientSocket = serverSocket.accept();
//ObjectOutputStream toClient = new ObjectOutputStream(clientSocket.getO...
2020 Feb 06
0
[PATCH] Add support for zstd compression
...gt;
+#ifdef HAVE_LIBZSTD
+#include <zstd.h>
+#endif
extern int module_id;
extern int local_server;
@@ -77,6 +80,7 @@ int protocol_version = PROTOCOL_VERSION;
int sparse_files = 0;
int preallocate_files = 0;
int do_compression = 0;
+int do_compression_zstd = 0;
int def_compress_level = NOT_SPECIFIED;
int am_root = 0; /* 0 = normal, 1 = root, 2 = --super, -1 = --fake-super */
int am_server = 0;
@@ -764,6 +768,9 @@ void usage(enum logcode F)
rprintf(F," --copy-dest=DIR ... and include copies of unchanged files\n");
rprintf(F," --link-dest=DIR hardli...
2004 Aug 06
0
Please Help, Lost ogg sync using jspeex
...;<BR> PipedOutputStream pout=new PipedOutputStream();<BR> //PipedInputStream pin=new PipedInputStream(pout);<BR> //ServerSocket serverSocket = new ServerSocket(5555);<BR> Pcm2SpeexAudioInputStream pcm2speex=new Pcm2SpeexAudioInputStream(auin, audioFormat, AudioSystem.NOT_SPECIFIED);<BR> SpeexPlayer speexPlayer = new SpeexPlayer(pout);<BR> //Speex2PcmAudioInputStream speex2pcm=new Speex2PcmAudioInputStream(pin, audioFormat,AudioSystem.NOT_SPECIFIED);<BR> <BR> //Socket clientSocket = serverSocket.accept();<BR> //ObjectOutputStream toClie...
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'
2004 Aug 06
2
q about jspeex
...System.out.println(" Mic opened");
>
> t.input.start();
> System.out.println("Constructing speex encoder.");
> pcm2speex=new Pcm2SpeexAudioInputStream(new
> AudioInputStream(t.input), format, AudioSystem.NOT_SPECIFIED);
> System.out.println("Speex encoder constructed.");
> System.out.println("*** Speex info: ");
> System.out.println("Bitrate:
> "+pcm2speex.getEncoder().getBitRate());
>...
2004 Aug 06
0
q about jspeex
...0);
System.out.println(" Mic opened");
t.input.start();
System.out.println("Constructing speex encoder.");
pcm2speex=new Pcm2SpeexAudioInputStream(new
AudioInputStream(t.input), format, AudioSystem.NOT_SPECIFIED);
System.out.println("Speex encoder constructed.");
System.out.println("*** Speex info: ");
System.out.println("Bitrate:
"+pcm2speex.getEncoder().getBitRate());
System.out.println(&...
2004 Aug 06
0
JSpeex help
...format, 8000);
TargetDataLine tdl = (TargetDataLine) AudioSystem.getLine (targetInfo);
AudioInputStream auin=new AudioInputStream (tdl);
PipedOutputStream pout=new PipedOutputStream();
PipedInputStream pin=new PipedInputStream(pout);
pcm2speex=new Pcm2SpeexAudioInputStream (pin, format, AudioSystem.NOT_SPECIFIED);
tdl.open(format,8000);
t.input.start();
double ratio = t.bufferlength / t.framelength;
byte[] frame=new byte[t.framelength];
while(true) {
int n=auin.read(frame, 0, frame.length);
System.out.println(""+n+" bytes read.");
pout.write(frame);
int m=pcm2speex.read();
Sy...
2004 Aug 06
0
q about jspeex
...n(" Mic opened");
>>
>> t.input.start();
>> System.out.println("Constructing speex encoder.");
>> pcm2speex=new Pcm2SpeexAudioInputStream(new
>> AudioInputStream(t.input), format, AudioSystem.NOT_SPECIFIED);
>> System.out.println("Speex encoder constructed.");
>> System.out.println("*** Speex info: ");
>> System.out.println("Bitrate:
>> "+pcm2speex.getEncoder().getBitRate());
>>...
2004 Aug 06
0
JSpeex help
...ormat,
8000);TargetDataLine tdl = (TargetDataLine)
AudioSystem.getLine
(targetInfo);AudioInputStream auin=new AudioInputStream
(tdl);PipedOutputStream pout=new
PipedOutputStream();PipedInputStream
pin=new PipedInputStream(pout);pcm2speex=new
Pcm2SpeexAudioInputStream (pin,
format,
AudioSystem.NOT_SPECIFIED);tdl.open(format,8000);t.input.start();double
ratio = t.bufferlength / t.framelength; byte[]
frame=new
byte[t.framelength];while(true) { int
n=auin.read(frame, 0,
frame.length); System.out.println(""+n+" bytes
read.");
pout.write(frame); int m=pcm2speex.read();
System....
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