Displaying 20 results from an estimated 200 matches similar to: "[LLVMdev] Throwing an exception from JITed code, and catching in C++"
2004 Aug 06
1
ices 0.2.2 does not reencode mp3s
Moritz Grimm wrote:
>
> Bolt Thrower wrote:
>
> > >From my ices.conf:
> > <Bitrate>64</Bitrate>
>
> > My mp3s are encoded with the following command:
> > /usr/local/src/lame3.86/lame -S -V 1 -b 128 -h -m j \
> > --tt "title" --ta "artist" --tl "album" \
> > --ty "year"
2013 Mar 11
2
[LLVMdev] LNT usage
While porting my backends to llvm-3.2, I found a few places where the
optimizers could have performed better. I believe the mainstream targets can
also benefits from my tweaks. But before upstreaming my changes, I would like
to quantify their merits on other applications --- not just my domain specific
codes. In a word, it seemed the right time for me to start using LNT :)
I followed the
2004 Aug 06
4
ices 0.2.2 does not reencode mp3s
I recently upgraded ices from 0.1.0 to 0.2.2. I have found that it
is not reencoding my mp3 stream, even though I have it configured to.
This is on a RedHat linux 7.0 system, kernel 2.4.11
ices build commands:
./configure --with-perl --with-lame \
--with-lame-includes=/usr/local/src/lame-3.89/include \
--with-lame-libraries=/usr/local/src/lame-3.89/libmp3lame/.libs
gmake
2004 Aug 06
3
ices 0.2.2 does not reencode mp3s
Brendan Cully wrote:
>
> The format of ices.conf changed somewhat in 0.2, to support multiple streams
> from the same playlist with different reencoding options. In short, these
> settings have been moved into the Stream node. For more info have a look
> at the sample ices.conf included with the distribution.
I did modify my ices.conf when I made the upgrade.
Here's my
2004 Aug 06
0
ices 0.2.2 does not reencode mp3s
On Tuesday, 27 November 2001 at 18:14, Bolt Thrower wrote:
> I recently upgraded ices from 0.1.0 to 0.2.2. I have found that it
> is not reencoding my mp3 stream, even though I have it configured to.
>
> This is on a RedHat linux 7.0 system, kernel 2.4.11
>
> ices build commands:
> ./configure --with-perl --with-lame \
>
2004 Aug 06
0
ices 0.2.2 does not reencode mp3s
On Wednesday, 28 November 2001 at 12:43, Bolt Thrower wrote:
> > The format of ices.conf changed somewhat in 0.2, to support multiple streams
> > from the same playlist with different reencoding options. In short, these
> > settings have been moved into the Stream node. For more info have a look
> > at the sample ices.conf included with the distribution.
>
> I did
2008 Feb 11
2
[LLVMdev] exception handling broken on x86-64?
Hello Evan and Dale,
> Shootout-C++/except works for me. Anton suggests there may be an
> issue with the unwinding libraries and he may be right, I'll look at
> it with you tomorrow.
Yes. Please be sure, that you're linking with system libgcc.{so,dylib},
not with llvm-compiled one.
--
WBR, Anton Korobeynikov
2004 Aug 06
2
playlist display issues
Hi. I'm running the wonderful icecast 1.3.11 and ices on a RedHat 7.2 box.
Everything seems to work as it should except for various client mp3 players
being able to display the artist/song title information. I've had the same
problem using different streamers so I'm wondering if this is a problem with
the way I've configured icecast? Did I miss something or is this possibly an
2003 Apr 18
3
mozilla 1.3
FreeBSD mojo.televoke.net 4.8-STABLE FreeBSD 4.8-STABLE #10: Mon Apr 14
15:48:09 PDT 2003 mike@mojo.televoke.net:/usr/obj/usr/src/sys/MOJO
i386
mozilla-1.3_1,2 The open source, standards compliant web browser
mozilla-headers-1.3_1,2 Header files for mozilla communicator
web-surfboard
After stepping up to Mozilla 1.3_1,2 attempting to type in any dialog box
(password dialogs in Mozilla
2008 Mar 15
1
[LLVMdev] exception handling broken on x86-64?
Did anything ever come of the work on exception handling for x86_64?
I'm having problems with exceptions on linux x86_64. Today, on x86_64
with a recently updated working copy of llvm, I tried calling a JITted
function that calls an external function that throws:
thrower.cpp: (which gets compiled into a dynamic library)
extern "C"
void throwexception()
{
throw 5;
}
My
2003 Jun 09
1
stable + squid 2.5_3
I seem to be having a problem, but I'm not sure if it's -stable, Squid, or
neither. I've been running -stable+Squid on a Dell 4600 for a couple
years now. All has been well, but after upgrading to Squid 2.5_3 (which
was also done on a couple other, less-loaded, -stable machines without
this issue to date), I occasionally get errors in my cache.log and this AM
Squid died and required
2003 Jul 31
2
mysql323 + gcc on 4.8-s
4.8-stable as/of jun 9th (update scheduled) has gcc version,
2.95.4
i'm building mod_php3 (some local stuff needs a php3 processor) with mysql
support. using the mysql323 client/server from ports. mysql (which i
know i've built before on older stable's) reports gcc can't convert
longlong to something or other... basicly saying i need a newer compiler.
i'm installing gcc33
2004 Aug 06
2
Newbie playing with php
Hi, folks. I've installed icecast 1.3.11 and I'm very happy with
it. But I'd like to add a "now playing" gizmo to my home page;
can anyone point me to a php script or something else that does
the trick? Thanks in advance.
--
People don't quit playing because they ___vvz /(
grow old. They grow old because they <__,` Z / (
quit playing. [Oliver Wendell
2009 Jun 03
1
Vectorize fails for function with ... arglist
Vectorize is defined to return a function that acts as if 'mapply' was
called.
So we have:
> mapply(dput,1:2) # mapply form
1L # calls dput on each element of 1:2
2L
[1] 1 2
> Vectorize(dput)(1:2) # Vectorize form
1L # same behavior
2L
[1] 1 2
Same thing with a named argument:
>
2004 Aug 06
3
Newbie playing with php
Also sprach Bolt Thrower:
> On Fri, Mar 29, 2002 at 03:00:35PM -0300, Luiz Claudio Duarte wrote:
> > Hi, folks. I've installed icecast 1.3.11 and I'm very happy with
> > it. But I'd like to add a "now playing" gizmo to my home page;
> > can anyone point me to a php script or something else that does
> > the trick? Thanks in advance.
>
> Two
2015 Jun 09
0
Simple source on Debian
Oh, never mind. I found an older version of Ices that supports mp3
On 6/9/15, Spam Catcher <spamcatcher447 at gmail.com> wrote:
> Hi there.
>
> Thanks for the tip about Ices2. Do you know if it's possible to make
> it work with mp3 files? I only ask because there are several people
> who stream using my server, and they use mp3. I'm trying to create
> fallback
2015 Aug 22
0
Best source for creating multiple streams
With IceS2 this is easily accomplished by copying the 'ices-playlist.XML' file (I have 3 copies in the same directory with different names). Then define a new mount point in the xml file and point to a different play list file within the XML ( random can be enabled in the xml). Once this is complete, in terminal start ices2 with each xml.
~ $ sudo ices2 /media/music/ices-playlist_s.XML
2015 Jun 09
2
Simple source on Debian
Hi there.
Thanks for the tip about Ices2. Do you know if it's possible to make
it work with mp3 files? I only ask because there are several people
who stream using my server, and they use mp3. I'm trying to create
fallback streams, but in order for that to work, I'd have to get them
to switch to ogg or find a way to make Ices work with mp3.
Thanks
On 6/9/15, Jos? Luis Artuch
2015 Aug 22
1
Best source for creating multiple streams
Yes, but I'd rather not attempt to learn how to script Liquid Soap
just to pull off what I want. If it's the only client that supports
this though, I'll give it a look.
Thanks
On 8/22/15, Nathan Miller <nate at themillerhome.org> wrote:
> Have you played with Liquidsoap http://liquidsoap.fm at all? You
> definitely could do it with that.
>
> On Fri, Aug 21, 2015
2015 Sep 15
3
Best source for creating multiple streams
How do you create different logs files for each stream?
From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf
Of Camara, Carlos
Sent: Saturday, August 22, 2015 12:43 AM
To: icecast at xiph.org; icecast at xiph.org
Subject: Re: [Icecast] Best source for creating multiple streams
With IceS2 this is easily accomplished by copying the 'ices-playlist.XML'
file