Displaying 20 results from an estimated 900 matches similar to: "Using liveice-xmms with icecast"
2004 Aug 06
3
Using liveice-xmms with icecast
on Sun, 25 Apr 2004 04:31:31AM +1000, Geoff Shang insinuated:
> On Sat, 24 Apr 2004, Nori Heikkinen wrote:
>
> > in an attempt to set up a little stream, i downloaded and
> > installed both icecast2 and liveice-xmms.
>
> Note that liveice-xmms more than likely does not work with icecast
> 2.0. You can of course opt to use it with icecast 1.3.12, but the
>
2004 Aug 06
2
Using liveice-xmms with icecast
on Sun, 25 Apr 2004 11:06:30AM +1000, Geoff Shang insinuated:
> On Sat, 24 Apr 2004, Nori Heikkinen wrote:
>
> > on Sun, 25 Apr 2004 04:31:31AM +1000, Geoff Shang insinuated:
> > > If you want to use XMMS,
> >
> > i don't have my heart set on it. really, i'm new to this whole
> > thing, and a friend suggested liveice-xmms because i already have
>
2004 Aug 06
0
Using liveice-xmms with icecast
On Sat, 24 Apr 2004, Nori Heikkinen wrote:
> in an attempt to set up a little stream, i downloaded and installed
> both icecast2 and liveice-xmms.
Note that liveice-xmms more than likely does not work with icecast 2.0.
You can of course opt to use it with icecast 1.3.12, but the developers no
longer provide any support for it whatsoever, and many users have also made
the move to icecast
2004 Aug 06
3
Trouble with LiveIce
Hi Folks,
I'm having the weirdest trouble with liveice. When I start it up with the
correct servername, it grinds to a halt with these messages:
playlist
0
Initialising Soundcard
16Bit 22050Hz Stereo
opening connection to localhost 8000
Attempting to Contact Server
connection successful: forking process
opening pipe!...
writing password
Then it waits there. Now, when I tried it with a
2004 Aug 06
0
Trouble with LiveIce
Hi Folks,
I'm having trouble getting liveice to work. I have not figured out if I'm
supposed to pipe in the audio device(?) It's not working either way.
Here's what I see by running ./liveice :
playlist
0
Initialising Soundcard
16Bit 22050Hz Stereo
opening connection to localhost 8000
Attempting to Contact Server
connection successful: forking process
opening pipe!...
writing
2007 Sep 27
1
including images in a plot
Does anyone know if it is possible to incorporate image files (e.g., jpgs
or gifs) in an R graphic?
I would like to make a scatterplot in which each point is a small picture
of the animal represented by each value. Each picture would be a graphics
file. Is there some way to use such files as plot symbols in R?
Cheers,
Steve
--
--------------------------------------------------------
Steve C.
2006 Oct 10
1
[Fwd: Re: Authenticating Linux Against AD with Winbind]
Jason,
I used these.
http://www.enterprisenetworkingplanet.com/netos/article.php/3487081
http://www.enterprisenetworkingplanet.com/netos/article.php/10951_3502441_1
Dale
-------- Original Message --------
Subject: Re: [Samba] Authenticating Linux Against AD with Winbind
Date: Tue, 10 Oct 2006 11:43:11 -0400
From: Aaron Kincer <kincera@gmail.com>
To: Jason Rotunno
2007 Mar 20
0
[LLVMdev] Google SOC - Idea
Hi,
Here is a rough draft of the application -- a FORTRAN front-end to
LLVM. In accordance with the summer of code specifications it is split
into two portions: the abstract which describes the project, and the
details description which describes me and how I plan to complete the
project.
It's a little long, (but about half the max length the application
directions specify). Would someone be
2007 Mar 22
2
[LLVMdev] Google SOC - Fortran Front-End Application
Hi All,
Thank you for all the excellent pieces of advice I got in response to
the draft application I sent out.
I have incorporated all (I think) of the suggestions into the
application and it's much improved. Here is the updated version.
Please don't force yourself to read through it again if you don't want
to. I'll submit this version with any suggestions I receive on the
23rd.
2017 Jul 13
1
How to make a figure plotting p-values by range of different adjustment values?
Hi Jim,
Thanks for your help, I really appreciate it.
Perhaps I'm misunderstanding, but does this formula run different ajustment
values for this function?
logit(p = doc$value, adjust = 0.025)
I'm looking to plot the p-values of different adjustment values.
Thanks so much,
Kirsten
On Wed, Jul 12, 2017 at 8:49 PM, Jim Lemon <drjimlemon at gmail.com> wrote:
> Hi Kirsten,
2007 Mar 19
5
[LLVMdev] Google SOC - Idea
Getting the front end for Fortran finished is definitely something I
would be interested in working on. I will draft up a little proposal
and send it out to this list.
-Scott
On 3/19/07, Kenneth Hoste <kenneth.hoste at ugent.be> wrote:
> Hi Scott,
>
> On 18 Mar 2007, at 04:22, Scott Fortmann-Roe wrote:
>
> > Hi,
> >
> > I noticed that LLVM had signed up as a
2005 Apr 27
1
dyn.load(), DLL, Fortran, TLNise software
Dear all,
I would like to call TLNise ("Two-Level Normal indipendent sampling estimation")
software within R.
This software estimates a hierarchical model and it can be download from
Philip Everson's website at
"http://www.swarthmore.edu/NatSci/peverso1/TLNise/tlnise.htm".
The TLNise software consists of:
1) a Fortran source code (tlnisemv1.f) and
2) a Splus code
2017 Aug 06
1
Nested for loop
Hi Ben,
That's exactly right! Except for each set it's the sample population that
is 400, 800 or 300. I want to take 3 samples, each of 100, where only the
population differs. I can do this separately, but I'm having trouble
putting them all on the same graph.
I'd like to have sample on the x axis (1-300) and estimate on the y axis. I
want to show how population affects the
2017 Jul 13
0
How to make a figure plotting p-values by range of different adjustment values?
Hi Kirsten,
Perhaps this will help:
set.seed(3)
kmdf<-data.frame(group=rep(1:4,each=20),
prop=c(runif(20,0.25,1),runif(20,0.2,0.92),
runif(20,0.15,0.84),runif(20,0.1,0.77)))
km.glm<-glm(prop~group,kmdf,family=quasibinomial(link="logit"))
summary(km.glm)
pval<-0.00845
padjs<-NA
npadj<-1
# assume you have five comparisons in this family
for(method in p.adjust.methods) {
2010 Apr 14
6
sum specific rows in a data frame
I have a data frame called "pose":
DESCRIPTION QUANITY CLOSING.PRICE
1 WHEAT May/10 1 467.75
2 WHEAT May/10 2 467.75
3 WHEAT May/10 1 467.75
4 WHEAT May/10 1 467.75
5 COTTON NO.2 May/10 1 78.13
6 COTTON NO.2 May/10 3 78.13
7 COTTON NO.2 May/10 1 78.13
2007 Apr 13
2
Frustrated with Ubuntu XMMS, XMMS-Liveice, and icecast
I have XMMS and XMMS-liveice setup to use ALSA to stream audio to my
icecast server using LAME encoding.
I start the sound file and i can see XMMS playing away happily, icecast
detects the connection and shows the source as being connected, but no
bandwisth useage. If I connect to the icecast server I get a client
connection, but no sound.
Scanning other forums there appears that there might
2004 Aug 06
2
XMMS with liveice-xmms plugin
Am I making the right assumptions.... I run icecast and then only need to
run xmms with the plug in enabled to stream to the net.... Or do I need to
run LiveIce as well???
When I try running liveice and xmms together xmms locks up.
Any ideas?
Thanks
Kevin
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage: http://www.icecast.org/
To unsubscribe from this
2016 Mar 22
2
GSoC and SAFECode
Hi, everyone.
I'm a senior at Swarthmore College and would love to work with LLVM this
summer. I'm interested in systems languages and security, and I'll start
a PhD on these topics this fall. I also do a good deal of open source
development and auditing with OpenBSD and a variety of other projects.
I spent last year's GSoC doing security auditing for Pidgin/libpurple.
GSoC seems
2004 Aug 06
0
Icecast and LiveIce-XMMS Working!
Previously I mentioned some problems I was having getting LiveIce and
Icecast working.
Everything is working so I wanted to get the archives updated with the
solutions.
The first was just my player I was streaming to needed a much larger
buffer configured (stupid, but I'm just starting up with streaming).
The problem I had with LiveIce streams being unlistenable was due to the
wrong input
2004 Aug 06
1
Xmms-Liveice and icecast
I am a little confused with how this setup should be. I have the plugin
and I have it all set I think but there isn't good documentation that I
can find. How do I stream what I am listening via xmms or mpg321 to a
server?
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage: http://www.icecast.org/
To unsubscribe from this list, send a message to