similar to: liblame vs libmp3lame.... anyways, it don't work.

Displaying 20 results from an estimated 1100 matches similar to: "liblame vs libmp3lame.... anyways, it don't work."

2001 Mar 01
1
live365
Another, but more recent problem, I am having is Live365. I haven't done much work with it, but can you relay to Live365 properly? They give me an ip and it works, but I don't show up in their listings, and the song title doesn't show up in the client's mp3player. (whereas if someone listens to the local broadcast they do get the song titles). Using latest, from CVS, Icecast
2004 Aug 06
3
lots of icecast help needed
> >First, my server isn't being posted to yp.icecast.org or yp.shoutcast.com. > >Error results: > >WARNING: Connect to yp.icecast.org failed > >directory_add([yp.shoutcast.com:80]) failed, could not connect. (retry in 0 > >seconds) > > I can't say for sure what could be causing this, but I'm having problems > with yp.shoutcast.com myself. I get:
2004 Aug 06
2
lots of icecast help needed
Hi, I've been running Icecast on my server for over five months now and am having lots of problems with it. I must have pulled out half of my hair on this product, mostly due to lack of support. (I mean, have you ever gotten an answer to your question at icecast.org?) I've tried it all: sc_serv, Icecast, shout, ices, streamcast, liveice. I could greatly use any help. I am using the
2004 Aug 06
3
ices
it's funny. I only started this so my ex-girlfriend on the other side of the world could hear a song (downloading mp3's was not possible for complex reasons but streaming audio was) but goddammit i'm going to make this thing work if it kills me. At 07:29 PM 4/5/2001 -0700, Jack Moffitt wrote: >On Thu, Apr 05, 2001 at 06:21:37PM -0700, William Goldsmith wrote: >> > why
2004 Aug 06
2
liblame
Hi, I am new to this, so please bear with me if this has been answered before. I compiled IceS to stream mp3s to Icecast and it works fine except for two things. 1. I cannot get XML module to work ie. the conf file doesn't work I have compiled and installed libxml-1.8.11 but when I start up IceS, it says something about the namespace. So I tried compiling libxml2 but that, for some reason,
2004 Aug 06
1
AW: ices0 (version 0.3) - libmp3lame.so problems
wow, you are right! it tells me: /usr/lib/libmp3lame.so: broken symbolic link to 'libmp3lame.so.0.0.0' how can i repair this? install lame again? -Clem -----Ursprüngliche Nachricht----- Von: owner-icecast@xiph.org [mailto:owner-icecast@xiph.org]Im Auftrag von Carsten Haese Gesendet: Mittwoch, 4. Februar 2004 15:11 An: icecast@xiph.org Betreff: Re: [icecast] ices0 (version 0.3) -
2004 Aug 06
2
ices0 (version 0.3) - libmp3lame.so problems
Hello everybody, I need some help please. I want to compile the ices-0.3 and ./configure works perfectly. But if i want to do "make" there appear these error-messages: [...] gcc: /usr/lib/libmp3lame.so: No such file or directory make[3]: *** [ices] Error 1 make[3]: Leaving directory '/usr/ices-0.3/src' [...] if i search now for the libmp3lame.so file, i find it in /usr/lib/ so
2011 May 01
2
nut problem on boot/restart
hi! When I turn on my pc everything works fine, but if I restart fails (I'm not sure if this is true at 100%)?(then, i can do 'sudo /etc/init.d/nut restart' and it works) But what is certain is that sometimes when start up the pc it works and sometimes fails, can be a problem with the start time (i have a fast ssd) and the initialization of the driver and the usb port? thanks! syslog:
2018 May 04
0
Converting a list to a data frame
It looks like you made a copy/paste error below. Your ata.frame should be data.frame. Kevin On 05/04/2018 08:18 AM, Bill Poling wrote: > Good morning. > > Novice usR. Here. > > I am following this string, among many, learning as I go. > > Quick question please? > > I thought that perhaps ata.frame was part of the zoo pkg, b/c when I > searched it came up in
2018 May 03
1
Converting a list to a data frame
>>>>> David L Carlson <dcarlson at tamu.edu> >>>>> on Wed, 2 May 2018 21:43:52 +0000 writes: > Typo: dat[[z]] should be x[[z]]: > > x2 <- do.call(rbind, lapply(names(x), function(z) > data.frame(type=z, x[[z]]))) > x2 > type x y > 1 A 1 3 > 2 A 2 4 > 3 B 5 7 > 4 B 6 8 > >
2018 May 04
2
Converting a list to a data frame
Good morning. Novice usR. Here. I am following this string, among many, learning as I go. Quick question please? I thought that perhaps ata.frame was part of the zoo pkg, b/c when I searched it came up in help? However, evidently not or I am not using it properly. Please advise, thank you. x <- list(A=data.frame(x=1:2, y=3:4),B=data.frame(x=5:6,y=7:8)) x2 <- do.call(rbind,
2018 May 02
0
Converting a list to a data frame
Typo: dat[[z]] should be x[[z]]: x2 <- do.call(rbind, lapply(names(x), function(z) data.frame(type=z, x[[z]]))) x2 type x y 1 A 1 3 2 A 2 4 3 B 5 7 4 B 6 8 David C -----Original Message----- From: R-help <r-help-bounces at r-project.org> On Behalf Of David L Carlson Sent: Wednesday, May 2, 2018 3:51 PM To: William Dunlap <wdunlap at tibco.com>; Kevin E.
2018 May 02
0
Converting a list to a data frame
> x1 <- do.call(rbind, c(x, list(make.row.names=FALSE))) > x2 <- cbind(type=rep(names(x), vapply(x, nrow, 0)), x1) > str(x2) 'data.frame': 4 obs. of 3 variables: $ type: Factor w/ 2 levels "A","B": 1 1 2 2 $ x : int 1 2 5 6 $ y : int 3 4 7 8 Bill Dunlap TIBCO Software wdunlap tibco.com On Wed, May 2, 2018 at 10:11 AM, Kevin E. Thorpe
2018 May 02
3
Converting a list to a data frame
Or add the type column first and then rbind: x <- list(A=data.frame(x=1:2, y=3:4),B=data.frame(x=5:6,y=7:8)) x2 <- do.call(rbind, lapply(names(x), function(z) data.frame(type=z, dat[[z]]))) ---------------------------------------- David L Carlson Department of Anthropology Texas A&M University College Station, TX 77843-4352 -----Original Message----- From: R-help
2005 Jan 07
2
Tron 2.0 & DirectX 9.0a
Tron 2.0 starts up, offers the init menu, and works fine until you try and actually start the game. At that point, it goes blank for about 5 seconds and then says "To play tron 2.0, you need DirectX 9.0a and a supported video card with hardware TnL." If you go to the 'display' menu it says that the DX9 renderer is selected, but has nothing listed for resolutions or displays. Is
2017 Sep 29
2
Converting SAS Code
I wish to second this approach to learning R. I tried for several years to translate other stat programs or provide parallel analyses with R. This dabbling-in-R approach did not work . When a transferred to a research unit that could ill afford commercial software, I devoted my entire time to doing everything in R. This was a difficult learning process, but I eventually became proficient
2018 May 02
0
Converting a list to a data frame
Hi Kevin, There is probably a better way, but it can be done in two steps like this temp <- list(A=data.frame(x=1:2, y=3:4),B=data.frame(x=5:6,y=7:8)) temp <- lapply(names(temp), function(n, temp) { temp[[n]]$type <- n return(temp[[n]]) }, temp = temp) do.call(rbind, temp) On Wed, May 2, 2018 at 1:11 PM, Kevin E. Thorpe <kevin.thorpe at utoronto.ca> wrote: > I suspect
2013 Aug 14
1
Patch to log the cipher suite used for TLS
Hello, the attached patch for Dovecot 2.2.4 improves the logging to include information about the cipher suite used for a TLS connection. Here is an example log line: Aug 13 21:49:55 colwyn dovecot: imap-login: Login: user=<tron>, method=CRAM-MD5, rip=2001:8b0:114:1::2, lip=2001:8b0:114:1::2, mpid=10567, TLS=<TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)>,
2016 Apr 26
0
Linear Regressions with constraint coefficients
This is a quadratic programming problem that you can solve using either a quadratic programming solver with constraints or a general nonlinear solver with constraints. See https://cran.r-project.org/web/views/Optimization.html for more info on what is available. Here is an example using a nonlinear least squares solver and non-negative bound constraints. The constraint that the coefficients sum
2003 Jun 15
4
LAN Browsing shows IP Addresses instead of Computer Names.
I'm trying to figure out how I can have my lan browser display computer names instead of IP Addresses. I think the ip addresses are generated by my router since if I add a new computer, the ip addresses will be different for each computer. anyway let me give you the specs first. Running Samba 2.2.8a-1 on Red Hat 7.3. I have not set up WINS or DNS at all. I have set up lisarc to use