Displaying 2 results from an estimated 2 matches for "uimod".
Did you mean:
pimod
2008 Mar 19
1
R_ParseVector problem: it's cutting off after the decimal point
...methods base
================================================
// init R
Rf_initEmbeddedR(0, NULL);
Rstart Rp = &rp;
R_DefParams(Rp);
// root of the R installation
Rp->rhome = get_R_HOME();
// root of the users directory
Rp->home = getRUser();
// UImode: RGui, RTerm, LinkDLL
Rp->CharacterMode = LinkDLL;
// function which reads input for R from a console
Rp->ReadConsole = myReadConsole;
// function which writes output from R to a console
Rp->WriteConsole = NULL;
Rp->WriteConsoleEx = myWriteConsoleEx;
// c...
2008 Sep 18
4
OT - How to stream a A-Law/wav file to a browser ?
Hi,
How can I create a web page allowing people to listen (with their own PC) a
couple of .wav/a-law files stored on a Linux server ?
Chances are users would access this web page from Internet Explorer but if I
could make it available to other browsers, that would be better.
I googled a bit and couldn't find a tag such as media://myaudiofile.wav that
would fulfill this spec.
As much as