Displaying 20 results from an estimated 32 matches for "inputstreams".
Did you mean:
inputstream
2009 Mar 02
2
[Fwd: RE: Mixing inputstreams.]
...merically add up the appropriate Bytes
from each of the streams? If that's so would we be better add first,
then to normalise after the additon, so the final byte size is the same
as the individual ones, what ever that may be.
-------- Original Message --------
Subject: RE: [Vorbis] Mixing inputstreams.
Date: Tue, 3 Mar 2009 01:12:35 +1300
From: Ross Levis <ross at stationplaylist.com>
Organisation: http://www.stationplaylist.com
To: 'Fish' <fish at ghostsofp.com>
References: <49ABBDD0.1040505 at ghostsofp.com>
You can simply add the values of each sample togethe...
2013 Sep 26
2
Read shortcuts of MS Excel files through R
Dear Rxperts,
Through Windows OS, I created shortcuts (paste as shortcut) to excel
spreadsheets ( with "xlsx" as the file extension). I wasn't able to read
the shortcuts through R and using "read" functions of "xlsx" package.
exf <- "a1.xlsx.lnk"
> read.xlsx(exf,1)
Error in .jcall("RJavaTools", "Ljava/lang/Object;",
2010 Jun 26
3
Down Convertion from 32Khz to 16Khz
hi
on my device i can sample only at 32khz and want to use speex at 16khz so i
need to down-convert the input signal by factor of 2.
does anyone provide me a reference to some code that does that? are there
any trick to do that?
i tried to add to subsequent sample but the result was very bad.
what are the requrment from a decimation filter for audio?
thanks,
nir
-------------- next part
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
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
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
2010 Jun 26
0
Down Convertion from 32Khz to 16Khz
I've done something similar in Groovy/Java using Wave files. In my case I was downsampling from 16bit to 8bit. Here's the core of my conversion logic.
def convertData(def inputStream, def outputStream) {
boolean otherByte = false
inputStream.eachByte {
if(otherByte) {
//invert high order byte
int inverted = ((int)it) ^ 0x00000080
byte[]
2004 Nov 30
2
Ogg for Java
Hello,
I think this new list is a good idea, at least there is a place
on which this mail is on-topic. Altough I do not know if anyobody is on
this list yet.
There is a new Java implementation of the Ogg library. The link is
http://netmind.hu/ogg
This is a high level implementation, meant to be as easy as possible,
while preserving all ogg's features.
It lacks real-world tests and can be
2009 Jun 29
2
java application with db2 fail with:A communication error ..
I am new user of wine.
I have centos 2.6.18-128.el5 x86_64 GNU/Linux and wine-1.0.1.
I installed jre for windows in wine and run .bat program that run a java SWT application taht access a database db2.
After running for a few moments an error is generated, this error occurs only under wine.
DB2 use port 50000.
Application.commit
Text : [ibm][db2][jcc][t4][2030][11211] A communication
2011 Apr 16
3
calling dovecot exported auth from Java
As far as I have been able to figure out, dovecot auth always works over
a Unix domain socket. I believe it is not currently possible to operate
dovecot auth over an Internet domain (TCP) socket. Am I correct?
I want to call dovecot's exported authentication from a Java
application. Java doesn't natively know how to talk to a Unix domain
socket, so there are inconveniences. There
2004 Aug 06
0
q about jspeex
Hi,
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 transcode it. Are you sure that you are receiving
data from the underlying
2005 Oct 05
3
icecast2 mountpoints maximum
We are using icecast as stream-relay for a true narrowcast solution
we've developed. The idea behind the system is that each individual
client gets it's own mountpoint.
Basically we have an application that creates streams. Its written in
c++ and uses libshout to handle connecting to icecast.
Everything works fine, as long as we keep the number of mountpoints
below 347. As soon as we
2005 Jul 05
2
Java and R help
Im doing an aplication in Java and i have a program made in R what i
want to launch with Java.
I have the following instructions:
Runtime r = Runtime.getRuntime();
try
{
System.out.println ("Llamada a R...");
p = r.exec(sRutaR);
}
catch (IOException e)
{
System.out.println ("Error lanzando R: " +
2009 Mar 25
1
Pipe creation problem: From Java app using rsync + ssh on windows with cygwin
Hello,
I'm having trouble calling rsync from java on windows vista with cygwin
installed.
Its strange as pasting the exact same command into a command shell works
fine.
My test java call looks like this.
*
String[] envVars = {"PATH=c:/cygwin/bin;%PATH%"};
File workingDir = new File("c:/cygwin/bin/");
Process p = Runtime.getRuntime().exec("c:/cygwin/bin/rsync.exe
2018 Jan 27
2
2 panics, 1 segmentation fault in dovecot 2.3.0 (fts)
Hi,
While testing our migration to dovecot 2.3.0, we encountered 2 panics, 1 segmentation fault while we wanted to rebuild the solr indizes. Problem [1] was encountered while rebuilding the indizes, and now I don't know how many mails/documents are indexed or where it got stuck. [2] and [3] encountered while just playing around, since I did not know of "tokenize" and did not find a
2007 Mar 05
0
File I/O with rjb
I am trying to do file i/o with rails and rjb and can''t figure out a
way to make this work. Here''s what I am trying to do:
- a user uploads an image to the server via a standard html form:
<%= file_field("blog", "attach") %>
- this returns a ruby File object to the controller in
params[:blog][:attach]
- then I need to convert this into a Java
2020 Nov 16
1
[patch] enhancement for tika server protected by user/password basic auth
On 11/15/20 1:29 PM, John Fawcett wrote:
>> atm, listening on localhost, with Dovecot -> Tika direct, no proxy.
>>
>> similarly fragile under load. throwing ~10 messages with .5-5MB attachments at it at once causes all sorts of complaints.
frequently, like this
Nov 15 15:59:40 test.loc tika[35696]: INFO tika/ (message/rfc822)
Nov 15 15:59:41 test.loc tika[35696]: WARN
2005 Oct 05
0
icecast2 mountpoints maximum
A small update from my side.. i have updated both icecast and libshout to
the nightly snapshot versions of icecast.org. Also, in the configfile i have
raised the threadpool to 500 and all timeouts to 3000.
This did help a bit. Right now i can get it up to 1020 inputstreams, however
then it just stops accepting new connections.
Is there a theoretical maximum to the number of mountpoints icecast can
handle?
-----Oorspronkelijk bericht-----
Van: icecast-bounces@xiph.org [mailto:icecast-bounces@xiph.org] Namens Henri
Zikken
Verzonden: woensdag 5 oktober 2005 17:02
Aa...
2018 Jan 27
0
2 panics, 1 segmentation fault in dovecot 2.3.0 (fts)
> On January 27, 2018 at 4:19 PM Infoomatic <infoomatic at gmx.at> wrote:
>
>
> Hi,
>
> While testing our migration to dovecot 2.3.0, we encountered 2 panics, 1 segmentation fault while we wanted to rebuild the solr indizes. Problem [1] was encountered while rebuilding the indizes, and now I don't know how many mails/documents are indexed or where it got stuck. [2]
2020 Nov 15
2
[patch] enhancement for tika server protected by user/password basic auth
On 11/15/20 12:21 PM, John Fawcett wrote:
> I'm using tika-server.jar installed as a service
yup. same here.
atm, listening on localhost, with Dovecot -> Tika direct, no proxy.
similarly fragile under load. throwing ~10 messages with .5-5MB attachments at it at once causes all sorts of complaints.
one at a time seems OK ...
> Dovecot currently implements separate integrations,