search for: auin

Displaying 9 results from an estimated 9 matches for "auin".

Did you mean: akin
2005 Feb 04
2
rsync -auIn not doing what I expect (rsync 2.6.3)
...c file to fix a bug. Some of the files are corrupt, even though they have the same file sizes and timestamps (often years ago) as the backup files. I've spot-checked and confirmed that the backup files are not corrupt. Ok, this should be easy, right? Let's see what would happen: rsync -auIn backup:/archive/home /home The "-I" tells rsync to ignore the timestamps (the corrupt files still have old timestamps) and the file sizes (the corrupt files are the same size as the backup non-corrupt files) and do the checksums to determine which files need to be transferred. The &quot...
2004 Aug 06
3
q about jspeex
...it would transcode it. If it recieved an EOF, it > should do some zero padding and then transcode it. Are you sure that > you are receiving data from the underlying inputstream??? Yes, it can recieve data from the underlying input stream. If i read directly from the audioinputstream with auin=new AudioInputStream(t.input); //int n=pcm2speex.read(frame, 0, frame.length); int n=auin.read(frame, 0, frame.length); i can read the specified frame length of bytes repetively. What else could be the cause for blocking? I am really glad about every hint! > One point to note though is tha...
2004 Aug 06
0
q about jspeex
Hi, i changed the read method after constructing a pipedinputstream/opipedoutputstream to int n=auin.read(frame, 0, frame.length); System.out.println(""+n+" bytes read."); pout.write(frame); int m=pcm2speex.read(); System.out.println("something rec...
2004 Aug 06
0
JSpeex help
...gned audio data as follows: AudioFormat format = new AudioFormat (AudioFormat.Encoding.PCM_SIGNED, 8000, 16, 1, 2, 8000, true); DataLine.Info targetInfo = new DataLine.Info (TargetDataLine.class, 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...
2004 Aug 06
0
JSpeex help
...ned audio data as follows:AudioFormat format = new AudioFormat (AudioFormat.Encoding.PCM_SIGNED, 8000, 16, 1, 2, 8000, true);DataLine.Info targetInfo = new DataLine.Info (TargetDataLine.class, 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[]...
2004 Aug 06
0
Lost ogg sync using jspeex
...urceDataLine.class,audioFormat,44100); TargetDataLine targetDataLine = (TargetDataLine) AudioSystem.getLine(dataLineInfo); System.out.println("TargetDataLine Created"); //SourceDataLine sourceDataLine = (SourceDataLine) AudioSystem.getLine(outputDataLineInfo); AudioInputStream auin=new AudioInputStream(targetDataLine); PipedOutputStream pout=new PipedOutputStream(); //PipedInputStream pin=new PipedInputStream(pout); //ServerSocket serverSocket = new ServerSocket(5555); Pcm2SpeexAudioInputStream pcm2speex=new Pcm2SpeexAudioInputStream(auin, audioFormat, AudioSystem...
2004 Aug 06
0
Lost ogg sync using jspeex
...urceDataLine.class,audioFormat,44100); TargetDataLine targetDataLine = (TargetDataLine) AudioSystem.getLine(dataLineInfo); System.out.println("TargetDataLine Created"); //SourceDataLine sourceDataLine = (SourceDataLine) AudioSystem.getLine(outputDataLineInfo); AudioInputStream auin=new AudioInputStream(targetDataLine); PipedOutputStream pout=new PipedOutputStream(); //PipedInputStream pin=new PipedInputStream(pout); //ServerSocket serverSocket = new ServerSocket(5555); Pcm2SpeexAudioInputStream pcm2speex=new Pcm2SpeexAudioInputStream(auin, audioFormat, AudioSystem...
2004 Aug 06
0
Please Help, Lost ogg sync using jspeex
...);<BR> TargetDataLine targetDataLine = (TargetDataLine) AudioSystem.getLine(dataLineInfo);<BR> System.out.println("TargetDataLine Created");<BR> //SourceDataLine sourceDataLine = (SourceDataLine) AudioSystem.getLine(outputDataLineInfo);<BR> AudioInputStream auin=new AudioInputStream(targetDataLine);<BR> PipedOutputStream pout=new PipedOutputStream();<BR> //PipedInputStream pin=new PipedInputStream(pout);<BR> //ServerSocket serverSocket = new ServerSocket(5555);<BR> Pcm2SpeexAudioInputStream pcm2speex=new Pcm2SpeexAudioInputS...
2004 Aug 06
2
q about jspeex
Ulrich B. Staudinger wrote: > 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