similar to: Icecast RTP support

Displaying 20 results from an estimated 400 matches similar to: "Icecast RTP support"

2005 Jun 07
0
Icecast RTP support
On 6/7/05, Subhabrata Bhattacharya <subh.arya@gmail.com> wrote: > Hi, > > Does Icecast has RTP support for streaming OGG/Vorbis and OGG/theora > media files? Not in the current version. It may be added in the relatively distant future, but there's nobody workingon it at the moment. Mike
2005 Jun 16
2
Icecast and ezstream
Hi, What is the actual functionality of ezstream when I use it with Icecast?What does it exactly do? Why isn't Icecast written to read a file directly and stream it? -- ~$ubh
2006 Feb 13
2
R-help, specifying the places to decimal
Hello - R-experts, Is there any way with which we can specify the number after decimal point to take. Like I have a situation where the values are comming 0.160325923 but I only want 4 place to decimal say 0.1603. Is there any way for that. I am no expert in R- and this may sound simple to many.sorry Thanks for any help. With Regards Subhabrata
2006 Mar 01
1
Scheduler Parameters
Hi, I have a naive question with the xen BVT scheduler. Supposing I have only one guest domain runnning on domain 0 and with the xm bvt command I have allocated cpu units in the ratio 9:1 to domain 0 and domain 1(say) respectively. Now I create another guest domain. How much CPU share it (or subsequent domains created after it) will get? ~$ubh _______________________________________________
2005 Dec 06
2
urgent
Hello R Users, I have two sets of values x <- c(7, 7 , 8, 9, 15, 17, 18) y <- c(7, 8, 9, 15, 17, 19, 20, 20, 25, 23, 22) I am able to create multi histogram using multhist(). But not able to control the 'xlim'. ie the xaxis is showing 7.5, 13, 18, 23 1st on what basis it is calculated 2nd I want it to be like 7 8 9 15 17 and so on Can any one help me With Regards Subhabrata
2005 Dec 24
2
grouping data
Hello R-users/experts, I am new to R- I have a simple question: Let say I have a data set as follows temp:[file attached] the data structure is a follows: sex age female 28 female 53 female 53 female 36 male 42 male 29 male 43 male 36 male 41 Here we are grouping all male value into male and all female value in to female
2005 Jun 27
0
Xen installation from source
Hi, I am facing the following problems while installing xen from its source.Ihave compiled linux-2.6.11.10 with the option ARCH=xen.I had been fiddling with the various configuration to boot up the kernel but its not working anyway. When I compiled the kernel with the following option as built-in [*] Root file system on NFS I get the following error: Root-NFS: No NFS server available, giving
2005 Dec 09
3
R-how to group the data
Hello R - users, This may sound simple to may people: I have a list of data as follows type value y 7 y 7 y 8 y 8 y 8 y 9 y 9 y 9 y 9 y 10 y 10 y 10 y 10 y 11 y 11 y 12 y 12 y 14 y 14 y 14 y 15 y 17 y 20 y 20 y 20 y 20 y 25
2006 Feb 10
2
Controling the x or y limit
Hello - R-experts, This may sound simple to many --- We can specify the x limit by saying xlim = c(0, 20) for example. Then the graph will show the range of x -axis between 0 - 20. But the coordinate gap will be automatic like 0 then 5 then 15 and 20. Is there any way by which we can set it in a gap of 2 or any number. Thank you for any help. With Regards Subhabrata [[alternative HTML
2010 Feb 19
3
dot-dot-dot as an actual argument
I could not find any documentation of how dot-dot-dot works when used as an argument in a function call (rather than as a formal argument in a definition). I would appreciate some references to the rules governing situations like: f1<-function(x,y,...){ ? print(x) } f2<-function(...){ ? f1(...) } f2(1,2,3) In the call above how are the three numbers bound to the individual formal
2005 Dec 07
1
ploting the two sets of data side by side
Hello R-users, I am new to R-commands. I have two sets of data: x <- c(7, 7 , 8, 9, 15, 17, 18) y <- c(7, 8, 9, 15, 17, 19, 20, 20, 25, 23, 22) I have used 'cut' command to seperate them as follows a <- cut(x, breaks =c(0,5,10,20,25,30)) b <- cut(y, breaks =c(0,5,10,20,25,30)) > table(a) a (0,5] (5,10] (10,20] (20,25] (25,30] 0 4 3 0
2005 Dec 26
1
grouping-R-help
Hello R-experts, I have a set of data as follows: age time 1 28 1 2 53 2 3 53 3 4 36 4 5 54 4 6 46 4 7 45 5 8 31 6 9 53 7 10 35 7 11 62 8 12 19 8 13 43 2 14 51 3 15 45 0 16 48 2 17 49 3 18 57 2 19 45 3 20 27 10 21 33 12 22 29 14 23 46 16 24 45 19 25 43 2 26 28 6 27 50 7 28 28 4
2006 Feb 16
1
R-help - Problem in drawing braplot with a huge value of data
Hello R-experts, I am facing a strange problem while creating a barplot. I have serise of data of which the first on is around 162589 while the remaining data are around 0-150. so when I am ploting the barplot with all the data I am getting a single line -> test1.jpg. But If I remove the 1st value i.e 162589 then I am getting a normal barplot -> test2.jpg Can some one help me regarding
2006 Aug 24
1
Need help with difficulty loading page www.bioconductor.org
The page is either too busy, or there is something seriously wrong with access to this page. Most of the time, trying to reach www.bioconductor.org results in failure. Only once in a blue moon, do I get through. In fact, thus far, I have not been able to install bioconductor, since the first source(...) command from the R command window -- following instruction on www.bioconductor.org page,
2010 Feb 14
1
unexpected results with higher-order functions and lapply
I want to use lapply and a function returning a function in order to build a list of functions. > genr1 <- function(k) {function() {k}} > l1 <- lapply(1:2,genr1) > l1[[1]]() [1] 2 This was unexpected. I had expected the answer to be 1, since that is the value k should be bound to when genr1 is applied to the first element of 1:2. By itself genr1 seems to work fine. >
2012 Mar 23
2
R Error : DATA to MATRIX
Dear Sir/Madam, I'm getting a problem with a R-code which converts a data frame to a matrix. It first generate a (m^(n-m) * m) matrix A and then regenerate another matrix B having less dimension than A which satisfy some condition. Now I wish to assign each row of B to a vector as individual. My problem is when I set any choice of (n,m) except m=1 it works fine but setting m=1 I got the
2012 Jun 01
1
R Error : Error in vector("list", gamma(n + 1)) : vector size specified is too large
Dear R-listers, I am giving part of my R code : ########################################################### n=15 m=1 library("partitions") library("gregmisc") library("combinat") x = t(restrictedparts(n-m,m)) l = length(x[,1]) for(u in 1:l){ A= unique(matrix( unlist(permn(x[u,])), ncol=m, byrow=TRUE )) }
2007 Apr 09
7
Centos 5
Hello I'm new to this mailing list, so I'm sorry if this has been asked before. Is there any release dates for centos 5 final? like it in days, weeks or months? -- Thank You -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20070408/bdf10a02/attachment-0004.html>
2012 Nov 05
2
[LLVMdev] Unable to Run Inline Asm with MCJIT
Hi, I am first year PhD student at Stony Brook University. For one of my projects I am trying to JIT compile and run a C program containing inline assembly using MCJIT but I am not able to. I have cloned and build LLVM-3.1. Below are more details. Arch : x86 OS : Linux ubuntu 2.6.35-22-generic Sample program : test_inline_asm.c ------------------- #include <stdio.h> int main(){ int
2012 Nov 05
1
[LLVMdev] Unable to Run Inline Asm with MCJIT
Hi Jim, Thanks for the reply. I was able to figure out the problem in 'lli'. InitializeNativeTargetAsmParser() was missing in lli. I should have replied back saying that the problem was resolved. Hope I didn't waste your time. Regards, Amit ________________________________ From: Jim Grosbach [grosbach at apple.com] Sent: Monday, November 05, 2012 2:07 PM To: Amit Arya Cc: LLVM