Hello,

You can test http://www.streamplayerz.com. I use this for my liquid radio :)
Thanks

-----Message d'origine-----
De : [email protected]
[mailto:[email protected]] 
Envoyé : mercredi 31 août 2011 19:17
À : [email protected]
Objet : Savonet-users Digest, Vol 59, Issue 56

Send Savonet-users mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.sourceforge.net/lists/listinfo/savonet-users
or, via email, send a message with subject or body 'help' to
        [email protected]

You can reach the person managing the list at
        [email protected]

When replying, please edit your Subject line so it is more specific than
"Re: Contents of Savonet-users digest..."


Today's Topics:

   1. Re: Making a player, recommended language (okay_awright)
   2. Re: Making a player, recommended language (F?bio Costa)
   3. Re: LiquidSoap for Win32 (Alfie) (F?bio Costa)
   4. Re: LiquidSoap for Win32 (Romain Beauxis)
   5. Re: Making a player, recommended language (Samuel Mimram)


----------------------------------------------------------------------

Message: 1
Date: Wed, 31 Aug 2011 16:58:44 +0200
From: okay_awright <[email protected]>
Subject: Re: [Savonet-users] Making a player, recommended language
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Would you like something like a flash player embedded on websites?
You could use that if you love minimalism:
http://java.net/projects/shoutcast-applet

-It's targeted at shoutcast servers but it's only a few lines of code to
make it icecast-ready.
-If you wish to play OGG Vorbis then add the following libraries:
vorbisspi1.0.3.jar
and jorbis-0.0.17.jar
and extend a few classes to make ogg streams playable by the Java Sound
layer. Not much work IMO.

The Java Sound Layer libraries and documentation are here:
http://www.javazoom.net/projects.html

Last time I checked (we were still in the Flash 9 era then) Flash players
suffered from a functional limitation that prevented MP3 streams to be
played more than a few hours in a row without causing some severe memory
leaks. Java applets do not suffer from such limitations, but a security
warning will be issued to your clients if you try to play a stream that is
not located on the same host as your applet.

Please share what you will code, I'd love to use your player.

--
best regards,

okay_awright
<okay_awright AT ddcr DOT biz>
[PGP key on request]

On 31/08/2011 14:27, F?bio Costa wrote:
> I will make a simple player to play a stream broadcasted by liquidsoap 
> to a icecastserver.
> I was thinking in using Java or Flash, neither of them have ogg suport 
> but i found some libraries.
> Would you recommend another technology to make an ogg/mp3 player?
>
>
>
>
> ----------------------------------------------------------------------
> -------- Special Offer -- Download ArcSight Logger for FREE!
> Finally, a world-class log management solution at an even better 
> price-free! And you'll get a free "Love Thy Logs" t-shirt when you 
> download Logger. Secure your free ArcSight Logger TODAY!
> http://p.sf.net/sfu/arcsisghtdev2dev
>
>
>
> _______________________________________________
> Savonet-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/savonet-users





------------------------------

Message: 2
Date: Wed, 31 Aug 2011 13:35:22 -0300
From: F?bio Costa <[email protected]>
Subject: Re: [Savonet-users] Making a player, recommended language
To: Josh <[email protected]>
Cc: [email protected]
Message-ID:
        <cakqj0xaswqbdidf0cggbfksz7cvjgtj8m+_h6hffru9tlsu...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

Hi josh.
I was able to made an MP3 player in flash like the following, but
unfortunately icecast doesn't send ID3 tags or so i heard
----------------------------------------------------------------------------
----------------------------------------------------------
import flash.events.IOErrorEvent;

var s:Sound;
s= new Sound();
var urlReq:URLRequest=new URLRequest("http://localhost:8000/winampstream.mp3
");
bt.addEventListener(MouseEvent.CLICK,btclick);
s.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler); s.load(urlReq);

s.addEventListener(Event.ID3, id3Loaded); s.play(); function
ioErrorHandler(e:IOErrorEvent){

}
----------------------------------------------------------------------------
--------------------------------------------------

The ogg is a litte trickier, i downloaded an swc library and the following
code:
http://mauft.com/2010/11/ogg-vorbis-in-flash/

This library made creating a player really easy.


I ended up using a java library http://www.javazoom.net/jlgui and will
create an interface of my own and change it for my needs.

Em 31 de agosto de 2011 11:42, Josh <[email protected]> escreveu:

> **
> hi, pleas tell me when you have made this player, I have never found 
> how to get flash working on my server, it asks for a stream file?
>
>
> ----- Original Message -----
> *From:* F?bio Costa <[email protected]>
> *To:* [email protected]
> *Sent:* Wednesday, August 31, 2011 1:27 PM
> *Subject:* [Savonet-users] Making a player, recommended language
>
> I will make a simple player to play a stream broadcasted by liquidsoap 
> to a icecastserver.
> I was thinking in using Java or Flash, neither of them have ogg suport 
> but i found some libraries.
> Would you recommend another technology to make an ogg/mp3 player?
>
> ------------------------------
>
>
> ----------------------------------------------------------------------
> -------- Special Offer -- Download ArcSight Logger for FREE!
> Finally, a world-class log management solution at an even better 
> price-free! And you'll get a free "Love Thy Logs" t-shirt when you 
> download Logger. Secure your free ArcSight Logger TODAY!
> http://p.sf.net/sfu/arcsisghtdev2dev
>
> ------------------------------
>
> _______________________________________________
> Savonet-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/savonet-users
>
>
-------------- next part --------------
An HTML attachment was scrubbed...

------------------------------

Message: 3
Date: Wed, 31 Aug 2011 13:38:33 -0300
From: F?bio Costa <[email protected]>
Subject: Re: [Savonet-users] LiquidSoap for Win32 (Alfie)
To: [email protected]
Message-ID:
        <CAKqJ0XbZ=tGh88OmqHFmj2S6utjk=iot-fmjdkntwehyrqz...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

Hello alfie
Try:
liquidsoap
'output.icecast.mp3(host="localhost",port=8000,password="hackme",mksafe(play
list("playlist.pls")))'

I was getting the same on ubuntu and by the command line i had to use
output.icecast.vorbis
-------------- next part --------------
An HTML attachment was scrubbed...

------------------------------

Message: 4
Date: Wed, 31 Aug 2011 12:09:14 -0500
From: Romain Beauxis <[email protected]>
Subject: Re: [Savonet-users] LiquidSoap for Win32
To: [email protected]
Cc: Alfie <[email protected]>, [email protected]
Message-ID:
        <cabwz6osqo_n63d7sxp3pgivdpv+dstdcccfmdm7c9ambl+b...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

Hi all!

2011/8/31 David Baelde <[email protected]>:
> This looks like a bug to me... What version is it, where did you 
> download it? I can't help much since I don't use Windows. One question
> though: can you run simpler things like liquidsoap 'print(12*12)'? (It 
> should print the integer, then display the same message and exit.)

I'm not sure what is the problem and I cannot test it right now.

What you could try though is to write this in a .liq file and load it from
command line. I am not sure I trying inline script but loading from a file
should definitely work..

By the way, building a 1.0.0 beta3 liquidsoap.exe is on my TODO, I shall do
it fairly soon..

Romain



------------------------------

Message: 5
Date: Wed, 31 Aug 2011 19:16:58 +0200
From: Samuel Mimram <[email protected]>
Subject: Re: [Savonet-users] Making a player, recommended language
To: F?bio Costa <[email protected]>
Cc: [email protected]
Message-ID:
        <CA+7PP=hd7rp8bn1uuzwp+bw-f_wb+zyudh6gjt9-ewioj-q...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

Hi,

Many modern browsers now natively support playing audio streams (
http://www.w3schools.com/html5/tag_audio.asp ). I don't know if you can grab
the tags but it might be worth investigating...

++

Sam.


2011/8/31 F?bio Costa <[email protected]>

> Hi josh.
> I was able to made an MP3 player in flash like the following, but 
> unfortunately icecast doesn't send ID3 tags or so i heard
>
> ----------------------------------------------------------------------
> ----------------------------------------------------------------
> import flash.events.IOErrorEvent;
>
> var s:Sound;
> s= new Sound();
> var urlReq:URLRequest=new URLRequest("
> http://localhost:8000/winampstream.mp3";);
> bt.addEventListener(MouseEvent.CLICK,btclick);
> s.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler); 
> s.load(urlReq);
>
> s.addEventListener(Event.ID3, id3Loaded); s.play(); function  
> ioErrorHandler(e:IOErrorEvent){
>
> }
>
> ----------------------------------------------------------------------
> --------------------------------------------------------
>
> The ogg is a litte trickier, i downloaded an swc library and the 
> following
> code:
> http://mauft.com/2010/11/ogg-vorbis-in-flash/
>
> This library made creating a player really easy.
>
>
> I ended up using a java library http://www.javazoom.net/jlgui and will 
> create an interface of my own and change it for my needs.
>
> Em 31 de agosto de 2011 11:42, Josh <[email protected]> escreveu:
>
> **
>> hi, pleas tell me when you have made this player, I have never found 
>> how to get flash working on my server, it asks for a stream file?
>>
>>
>> ----- Original Message -----
>> *From:* F?bio Costa <[email protected]>
>> *To:* [email protected]
>> *Sent:* Wednesday, August 31, 2011 1:27 PM
>> *Subject:* [Savonet-users] Making a player, recommended language
>>
>> I will make a simple player to play a stream broadcasted by 
>> liquidsoap to a icecastserver.
>> I was thinking in using Java or Flash, neither of them have ogg 
>> suport but i found some libraries.
>> Would you recommend another technology to make an ogg/mp3 player?
>>
>> ------------------------------
>>
>>
>> ---------------------------------------------------------------------
>> --------- Special Offer -- Download ArcSight Logger for FREE!
>> Finally, a world-class log management solution at an even better 
>> price-free! And you'll get a free "Love Thy Logs" t-shirt when you 
>> download Logger. Secure your free ArcSight Logger TODAY!
>> http://p.sf.net/sfu/arcsisghtdev2dev
>>
>> ------------------------------
>>
>> _______________________________________________
>> Savonet-users mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/savonet-users
>>
>>
>
>
> ----------------------------------------------------------------------
> -------- Special Offer -- Download ArcSight Logger for FREE!
> Finally, a world-class log management solution at an even better 
> price-free! And you'll get a free "Love Thy Logs" t-shirt when you 
> download Logger. Secure your free ArcSight Logger TODAY!
> http://p.sf.net/sfu/arcsisghtdev2dev
> _______________________________________________
> Savonet-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/savonet-users
>
>
-------------- next part --------------
An HTML attachment was scrubbed...

------------------------------

----------------------------------------------------------------------------
--
Special Offer -- Download ArcSight Logger for FREE!
Finally, a world-class log management solution at an even better price-free!
And you'll get a free "Love Thy Logs" t-shirt when you download Logger.
Secure your free ArcSight Logger TODAY!
http://p.sf.net/sfu/arcsisghtdev2dev

------------------------------

_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users


End of Savonet-users Digest, Vol 59, Issue 56
*********************************************


------------------------------------------------------------------------------
Special Offer -- Download ArcSight Logger for FREE!
Finally, a world-class log management solution at an even better 
price-free! And you'll get a free "Love Thy Logs" t-shirt when you
download Logger. Secure your free ArcSight Logger TODAY!
http://p.sf.net/sfu/arcsisghtdev2dev
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to