search for: rcast

Displaying 14 results from an estimated 14 matches for "rcast".

Did you mean: cast
2024 Jan 17
2
perfect html player for Icacast ?
...(send by my encoder in metadata) - cover and album : search & display by the player himself (in LastFM db ?) (or iTunes API?) - display last 5 or 10 played songs from now i use this free one here : https://www.yesstreaming.com/free-html5-audio-player but i need a better one + the list from RCAST.net it works, but could be better, especialy some errors in accents in some band names thank you very much, Marc - France -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.xiph.org/pipermail/icecast/attachments/20240117/173b6aa8/attachment.htm> --...
2016 Jul 21
2
Remove zext-unfolding from InstCombine
...->getOperand(1)); if (LHS && RHS && LHS->hasOneUse() && RHS->hasOneUse() && (transformZExtICmp(LHS, CI, false) || transformZExtICmp(RHS, CI, false))) { Value *LCast = Builder->CreateZExt(LHS, CI.getType(), LHS->getName()); Value *RCast = Builder->CreateZExt(RHS, CI.getType(), RHS->getName()); return BinaryOperator::Create(Instruction::Or, LCast, RCast); } } ``` The first two lines do the actual `zext(icmp)` optimization. The remaining lines have been added by r48715 and do the mentioned unfolding. However, in `foldCa...
2024 Jan 17
1
perfect html player for Icacast ?
...(send by my encoder in metadata) - cover and album : search & display by the player himself (in LastFM db ?) (or iTunes API?) - display last 5 or 10 played songs from now i use this free one here : https://www.yesstreaming.com/free-html5-audio-player but i need a better one + the list from RCAST.net it works, but could be better, especialy some errors in accents in band names thank you very much, Marc - France -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.xiph.org/pipermail/icecast/attachments/20240117/64df38c8/attachment.htm> -------...
2013 Apr 30
1
trace with reference class
...ace in the generator object (instead of the generated object). Has this functionality been removed? best, kohske -- Kohske Takahashi <takahashi.kohske at gmail.com> Assistant Professor, Research Center for Advanced Science and Technology, The University of Tokyo, Japan. http://www.fennel.rcast.u-tokyo.ac.jp/profilee_ktakahashi.html
2024 Jan 17
1
perfect html player for Icacast ?
...) > - cover and album : search & display by the player himself (in LastFM > db ?) (or iTunes API?) > - display last 5 or 10 played songs > > from now i use this free one here : > https://www.yesstreaming.com/free-html5-audio-player but i need a > better one + the list from RCAST.net > it works, but could be better, especialy some errors in accents in > some band names > > thank you very much, > Marc - France > > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/...
2011 Jan 15
1
Truetype and Opentype font in pdf device
...package seems not to support fontfamily, hence I cannot use it through gpar. Does anyone know about this topic? Thank you in advance. -- Kohske Takahashi <takahashi.kohske at gmail.com> Research Center for Advanced Science and Technology, The University of ?Tokyo, Japan. http://www.fennel.rcast.u-tokyo.ac.jp/profilee_ktakahashi.html
2024 Jan 17
1
perfect html player for Icacast ?
...tadata as sent by the source client. For everything else details matter. > - display last 5 or 10 played songs That should not be a problem at all. > from now i use this free one here : > https://www.yesstreaming.com/free-html5-audio-player but i need a > better one + the list from RCAST.net > it works, but could be better, especialy some errors in accents in > some band names Metadata needs to be correct on your source client to begin with. However specifically with legacy codecs this is often a problem as there is no way to communicate the character set. (This is nothing w...
2016 Jul 27
2
Remove zext-unfolding from InstCombine
...if (LHS && RHS && LHS->hasOneUse() && RHS->hasOneUse() && > (transformZExtICmp(LHS, CI, false) || > transformZExtICmp(RHS, CI, false))) { > Value *LCast = Builder->CreateZExt(LHS, CI.getType(), LHS->getName()); > Value *RCast = Builder->CreateZExt(RHS, CI.getType(), RHS->getName()); > return BinaryOperator::Create(Instruction::Or, LCast, RCast); > } > } > ``` > > The first two lines do the actual `zext(icmp)` optimization. The remaining lines have been added by r48715 and do the mentioned...
2024 Jan 17
1
perfect html player for Icacast ?
...oder in metadata) > - cover and album : search & display by the player himself (in LastFM db ?) (or iTunes API?) > - display last 5 or 10 played songs > > from now i use this free one here : https://www.yesstreaming.com/free-html5-audio-player but i need a better one + the list from RCAST.net > it works, but could be better, especialy some errors in accents in band names > > thank you very much, > Marc - France_______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast
2012 Apr 05
1
using for loops with ggplot
Hi all, I have been using ggplot for a few months and ran into this porblem, I am trying to use ggplot in a for loop and it is not working. if I do the following: data=as.data.frame(cbind(rnorm(10),rnorm(10),rnorm(10))) ############ pp=ggplot(data, aes(x=(1:10), y=data[,1])) pp=pp+geom_line(aes(x=(1:10),y = data[,1]),lty=2) pp=pp+geom_line(aes(x=(1:10),y = data[,2]),lty=2)
2012 Mar 28
1
rep with bigz in gmp
...r ('bigz') 3 x 3 matrix: [,1] [,2] [,3] [1,] 1 2 3 [2,] 2 4 6 [3,] 3 6 9 thanks in advance. kohske -- -- Kohske Takahashi <takahashi.kohske at gmail.com> Research Center for Advanced Science and Technology, The University of ?Tokyo, Japan. http://www.fennel.rcast.u-tokyo.ac.jp/profilee_ktakahashi.html
2012 Jul 12
1
Modifying a list: what gets copied?
Hi all, In my continued effort to understand when and what R copies, I've designed a small experiment to try and figure out what goes on when a list gets copied - is it a shallow copy or a deep copy. I believe the following experiment isolates the difference: options(digits = 2) powers <- 4:6 n <- setNames(10 ^ powers, paste0("e", powers)) xs <- lapply(n, seq_len) zs <-
2016 Aug 04
2
Remove zext-unfolding from InstCombine
...; RHS && LHS->hasOneUse() && RHS->hasOneUse() && > > (transformZExtICmp(LHS, CI, false) || > > transformZExtICmp(RHS, CI, false))) { > > Value *LCast = Builder->CreateZExt(LHS, CI.getType(), LHS->getName()); > > Value *RCast = Builder->CreateZExt(RHS, CI.getType(), RHS->getName()); > > return BinaryOperator::Create(Instruction::Or, LCast, RCast); > > } > > } > > ``` > > > > The first two lines do the actual `zext(icmp)` optimization. The remaining lines have been added by...
2024 Jan 17
2
404 - The file you requested could not be found
Just follow up on this: Anyone know how to uninstall Icecast from RHEL after compiling from source? Thank you so much Martin From: Icecast <icecast-bounces at xiph.org> On Behalf Of Mayiani, Martin Martine - mayianmm Sent: Thursday, January 11, 2024 4:22 PM To: Icecast streaming server user discussions <icecast at xiph.org> Subject: Re: [Icecast] 404 - The file you requested could