Flash swf/mp3/stream player
February 27th, 2003
- Click on the image to open player
This is simple flash movie with ability to play music from swf files, mp3 files in streaming mode, and live internet mp3 streams. Read more!
The player reads playlist information, which is located in this xml file. The structure is rather simple. There is a value for artist's name and song title, filetype (which is important), and actual path to the music file (note that the path can be any absolute or relative URL).
Filetype information is important for the correct working of player. Since I wanted to keep the player simple enough, loading of the files and basically all of the functionality is relaying on this information.
Swf files when created in Flash should contain the sound in streaming mode and frames that span all the way to the end of the sound. FPS of the movie should be 30, same as players to avoid any strange behavior. Export the swf with the mp3 sound settings you desire, but keep in mind that most users have slower connections, so prepare the sound for lower bandwidths (24-32 kbps). The red bar on the player (under the playhead) will show how much of the swf file is loaded for now. Playhead will follow the playing of the song (naturaly ;)). Since we are working with the swf file, it is possible to move the playhead on any desired portion of the song (that is loaded) and play it from there. Also, pausing of song is possible.
Mp3 files should not be that complicated to prepare. Just keep your desired bandwidth in mind. Flash plays mp3 file in streaming mode, this means that the playing will start as soon as enough information is buffered. Again the red bar will show how much information is buffered. Because of the streaming nature of loading, it is not possible to pause the playing. You can only stop it and play it from the beginning. Also the playhead is inactive because it is not possible to jump to other portions of the streamed file. It is important to set the actual length of the song in the xml file, because that information is not available to flash until all of the song is loaded. It is required for the correct behavior of the mp3 playing.
For s3m to work, you only need to provide correct URL to the stream feed. The playhead and loading bar are useless here. The information in the textbox that shows total bytes of the song, is now switched with the amount of data loaded so far from the feed.
Source files:
fla file - Flash MX format
xml playlist file - simple XML file
music folder - the location of the music files
Additional information:
Because of so many mails Igor keeps receiving concerning the usage of the player, first of all I want to point you to my mail (it is given when you click on my name in the head of the post). Next, if you want to mail me in order to ask if you can use the player for your purposes, than please don't. The player is absolutely free of any charge, and it was done simply as an experiment to help other people understand how it should be done. Also please don't send mails asking if I can help you in changing the player functionality or design to fit your needs. It is already presented to you free of charge, as a learning guide, and if you don't want or can't figure it out for yourself, than don't ask somebody else to do it for you.
If you use it anywhere on your site, than please drop me a line with a link to it, or if you can, link back to this site and location.
Thank you.
April 28th, 2003 at 6:20 pm
it’s very nice
April 28th, 2003 at 6:24 pm
it’s really nice
May 7th, 2003 at 8:38 pm
dont work with http://www.shoutcast.com servers
help
May 8th, 2003 at 5:17 pm
It has come to my attention that some types of streams doesn’t play in flash
player at all.
In my example, the 4th item in the playlist is an Icecast server, but with
some specific settings which work fine.
I am afraid there is no cure for this, some servers will play, some will
not. I think the problem comes from the configuration of the stream.
Check out this Ultrashock thread for details:
http://forums.ultrashock.com/forums/showthread.php?s=&threadid=11656
Also there is another more serious issue here. After some time, when certain amount of data has streamed flash player becomes “overflowed”, and will generally hang or crash. It appears it has some unspecified limit to an amount of mp3 it can stream. Hopefully future versions of flash player might fix this problem, as well as support for other mp3 formats.
July 18th, 2003 at 11:55 am
where do I have to put the XML file?
Does not work for me.
July 22nd, 2003 at 10:45 am
RTFM!
August 6th, 2003 at 10:18 pm
Awsome programming mate… Works real nice…
But it indeed is too bad it doesnt work with streaming mp3 from shoutcast servers yet…
I know how to get the data from a server but i dont know how to send header info with flash…
I only know how to do this with php… and that doesnt work 100% in every situation…
PHP Code:
$streamname = “64.236.34.141″; // put in whatever stream you want to play
$port = “80″; // put in the port of the stream
$path = “/stream/1022″; // put in any extra path, this is usually just a /
header(”Content-type: audio/mpeg”);
$sock = fsockopen($streamname,$port);
fputs($sock, “GET $path HTTP/1.0\r\n”);
fputs($sock, “Host: $streamname\r\n”);
fputs($sock, “User-Agent: WinampMPEG/2.8\r\n”);
fputs($sock, “Accept: */*\r\n”);
fputs($sock, “Icy-MetaData:1\r\n”);
fputs($sock, “Connection: close\r\n\r\n”);
August 6th, 2003 at 10:19 pm
Whoops.. forgot the last 2 lines:
fpassthru($sock);
fclose($sock);
September 22nd, 2003 at 5:50 am
the mp3 player does not work for me with mp3’s. It only plays the firs few seconds of the mp3 and then goes to the next track. Your mp3’s work fine. Is there a specific bitrate that needs to be used?
September 22nd, 2003 at 5:57 am
it looks as though its my server that is the problem. i downloaded one of your mp3’s and put it on my server. the player only plays a couple seconds and then goes to the next song.
is it a mime type problem? any ideas what would cause this? i’m just using a simple http:// link. i’m not using a streaming server or anything.
October 14th, 2003 at 9:27 am
Must WinAmp be installed with that the player works for ?
November 10th, 2003 at 4:35 pm
HI!
Your player is great! I modified it a little bit, and it works great!
My Problem is to use a stream radio, because i only find “mp3″ streamers in the internet!
perhabs someone has a list with urls!
Thx
Psypion
November 21st, 2003 at 1:52 am
With my shoutcast stream, this flash movie work fine in local mode, but don’t work in remote server, why?.
I run in my computer, but, if I publish in my web server, don’t play the stream.
November 26th, 2003 at 7:42 pm
Martin, the problem why it doesnt work remote is that the flash player ‘cant’ handle data other than mp3streaming if its hosted somewere other than localhost…
So if you want to use it for streaming, try to use icecast, since shoutcast has his ICY headers and flash cant handle those… (yet)
Greetings,
Marius
December 2nd, 2003 at 11:01 pm
Having trouble using this for an audio presentation. Using SWF files, one can only advance the slider to around 8:45. Any point after that, I am unable to hear the audio. It basically stops playing altogether. Any suggestions?
December 11th, 2003 at 2:29 pm
Gamma, yes… For some reason the flash player keeps loading and loading audio without unloading the buffer sometimes… The time is depending on wich bitrate you use…
Didnt made a solution yet tough…
December 17th, 2003 at 12:43 am
is there a way to add a set of buttons to play a particular song from the XML file? ive looked through the code and i cant figure out what function to execute to make a particular button play a selected song from the XML.
thanks!
January 5th, 2004 at 5:08 pm
I am happy that i found your ideas.
Thank you very much!
January 9th, 2004 at 2:31 pm
Great player but In the SWF files when click on pause and play again, apears music time one more time like this: 01.name - name (
January 9th, 2004 at 2:32 pm
Hi.
Great player, but it have a bug, when I click on pause and then play again, it repeats music time like this: 01. Name - name (3:26) (3:26) (3:26) (3:26) (3:26) (3:26) (3:26)
January 13th, 2004 at 3:07 pm
Great Job Dude !!! Best player i have seen in the Web
January 21st, 2004 at 12:41 am
Great Player, very user friendly to setup. It’s exactly what i needed, a player capable of playing streaming data instead of the usual “play music in folder”. Awesome for ppl who don’t have advanced flash knowledge (and other programing languages). Keep it upgrading
January 21st, 2004 at 2:26 am
HELP! Why can i hear a stream from shoutcast when directly opening the player.swf (after changing the xml file) and after inserting the player into html with some call function, its doesn’t stream the data anymore! Why does it happen???
After such amount of time searching, i though i finally found what i needed… it seems not =’(
Please email-me if you have any information regarding this.
January 21st, 2004 at 4:35 am
I need a slightly more functional flash mp3 player.
I am willing to pay $100 for it through my paypal.
Please contact me.
I need it for a small community project I am involved with.
Thanks.
February 5th, 2004 at 6:05 am
hey well… someone already asked this.. lol WHERE DO YOU PUT THE XML FILE?
lol anyways you answered with RTFM.. that understandable.but no where in the manuel does it say exactly where to put the XML file it just tells you that you need it.. please post a comment about where to put the XML thanks man…
~nik
February 5th, 2004 at 11:34 am
Isn’t it quite obvious?
If you have downloaded zip file with the source, inside you can find COMPLETE folder structure, together with xml file and folder for music, excluding the music files. I really don’t understand how can you use it at all if you havent donwloaded the zip file.
February 5th, 2004 at 2:44 pm
Thanks Shock,
Sweet dev. Anyone have a list of radio streams than can be used with this ??
February 20th, 2004 at 2:00 am
Looks great, but can somebody please tell me how I can get streaming shoutcast or oddcast(ogg2) working with it ??
It tried everything i could think of..
February 22nd, 2004 at 2:36 am
I am looking for some one to build be something like this but something that will stream a live radio feed…. i am willing to pay about 300 us for just the backend…. anyone interested… Thanks
February 24th, 2004 at 7:01 am
Everybody seems to have the same problem that I am having:
it works fine in local mode, but the stream does not work on the net…
i was told it is a flash 6/7 security issue…
that does not allow cross domain streaming unless u declare the domain OR subdomain:
here is what to add…
but I don’t know where…
it can be done either:
// via System.security
System.security.allowDomain(”www.server-y.com”, “subdomain.server-y.com”);
//or via LocalConnection-Objekt
my_lc.allowDomain = function(sendingDomain) {
return(sendingDomain==”www.server-y.com” || sendingDomain==”subdomain.server-y.com”);
}
BUT I don’t know where to put it… grrrrr…
Luc
February 25th, 2004 at 1:01 pm
Hey guys,
I noticed that i get alot of questions trough mail… And ofcourse i want to help…
My mail address changes soon to info@wokkel.com, this cause i stopped the djmegaworld.xxx domains…
Greetings,
Marius
February 26th, 2004 at 1:18 pm
Same problem here with shoutcast servers: in local mode it works, from within an html-page it doesn’t. I’ve also tried to use the domain security settings but it diesn’t solve the issue?
Any sound in the darkness?
April 22nd, 2004 at 12:24 am
Well, it works on a mac but it won’t work on a PC… go figure. As a matter of fact, using it on the net with a mac, it works perfectly.
WHAT GIVES???
April 27th, 2004 at 4:32 am
great work!!!,Nice 1 m8…and thank u very much
May 3rd, 2004 at 2:58 am
hi, i wonsering: how do I edit the mp3 player. I want to use this mpeplayer which i one of the best i ever seen on the net, on my web site. So i want to change some of the colors to make the player idendical with the site.
How can I edit the flash??
October 2nd, 2004 at 11:32 pm
if you can’t get this to work, dont play with html, read a book. this is an awesome sample, and it helped me make more mp3 style players!
October 4th, 2004 at 5:04 pm
Looking for an update that works for shoutcast…:D
Anyone made it yet?
October 13th, 2004 at 2:12 pm
I sure hope shoutcast will be supported and that Macromedia will understand that a lot of people would like to have the functionality of streaming internet radio through flash player. Waiting for Flash 8…
Is there anyone that can confirm that Macromedia knows about this issue? Like a confirmed bug report about it or something? Want to know before I go report it myself…
Will be watching this page to see if any solution gets around. I trust anyone with the solution to post it, for the benefit of all…
July 24th, 2005 at 12:39 pm
Hello
words fails me to express my gratitude for such a neat player..
Thanks guru
Lest we forget Sept 11 2001
http://ccc.1asphost.com/lestweforget/tribute/victims.html
August 15th, 2005 at 6:45 am
Thanks a lot
October 27th, 2005 at 5:53 pm
ALL is good, except, i dont know where to puts the xml file!!!!
November 8th, 2005 at 7:05 am
In subfolder called “xml” where your swf/html is located.
January 27th, 2006 at 1:27 pm
im trying to set up a script so that my xml will play shoutcast stream i have an mp3 player set in flash with an xml but it plays mp3s fine but dont seem to detect the shoutcast source >
January 29th, 2006 at 7:46 pm
Hi, I have set up the player here:
http://www.crackedactors.com/files/media/bardforlife.htm
It seems to work fine, except the music is playing too slow, how can I fix this?
Cheers,
April 3rd, 2006 at 7:58 pm
Hi,
Great player! I’m trying to make my own ‘radio station’ player and yours is a really big help. One problem: When I try your player on your server, the ‘http://64.236.34.4:5190/stream/1035′ stream works perfectly. If I put it on other server (or even localhost) the stream will not play at all… The set-up is ok… However, it works on the standalone player - hence, my problem is to make it work in a browser.
Are there any additional settings I have to make?
THANK YOU,
polak
April 14th, 2006 at 5:52 am
as of v.7.2 and 8, Macromedia Flash is capable of rendering streams of VBR (variable bitrate) MPEG Layer 3 and 4 data.
The issue isn’t an issue with Flash, but an Internet Explorer issue.
As to the exponentially increasing memory footprint while used in other browsers while rendering streaming media data, this is a development issue where the stream data is cached in ram but is not released back to the system. The PROGRAMMER would have to disgard the data once the output is rendered (played) so the system may re-allocate the memory appropriately.
This is the way executable code is made for applications such as Windows Media Player and WinAmp, but I have no idea if this is possible in flash.
As to windows media players ability to be an embedded object on a web page in internet explorer and its subsiquent ability to render streams effectively while releasing and re-allocating memory, Flash media players embeded object form should be do-able.
Flash has alot of protection in to protect visitors from malicious coders, and so does IE.
I am thinking in tandem they are working against one another here.
April 15th, 2006 at 3:40 pm
Thank you Obscurity, for your reply. I understand the limitations.
However, let’s say we use this player (Flash swf/mp3/stream player - the player from this page). If I click the image above, it will open the player in a popup window.
And it works; it works in the IE browser!
But: if I take this player and put it in my own page it will refuse to work.
Why is that? Why it’s working only here, and not in other page/domain? Is this something about permissions? Where do I have to set permissions?
Thank you all for your help.
Have a great day!
POLAK
April 16th, 2006 at 7:34 pm
Thanks for the awsome player. It is very easy to edit in your own taste and helps you to understand how to build a player.
For those who can not make it work: I found some Case sensitive issue’s. I edit those in the actionscripts. After that.. it was a feel good moment.
(As i remember well: loadNR to loadNr; myitem to myItem)
April 26th, 2006 at 11:39 pm
Hello all,
Very nice player.
How is the file swf file ressurection.swf was created?
Peace.
April 28th, 2006 at 8:12 pm
Okay, I’ve got everything set up, and I’ve added a few files for the player.
How can I get the files to stream? Do I need to setup a home network? Or some sort of network? Or host them somewhere or what?
June 24th, 2006 at 4:35 pm
i try it, it’s very good!
i get it from other website!
thanks to Marko Belic.
i have set up the player here: http://www.natakiti.com
i love it,
thanks,
Ax
June 29th, 2006 at 7:38 am
can this player play .m3u files its very important for me
July 23rd, 2006 at 3:24 am
Nice
August 3rd, 2006 at 5:15 am
[…] I need a slightly more functional flash mp3 player. I am willing to pay $100 for it through my paypal. Please contact me. I need it for a small community project I am involved with. more […]
August 17th, 2006 at 10:56 pm
hi
i need help
can anyone tell me if i have done this wright or not as i can not get it to work or even come up like it is ment to.
————————————————————————————————————
This text will be replaced by the flash music player.
var so = new SWFObject(”playerMultipleList.swf”, “mymovie”, “192″, “200″, “7″, “#FFFFFF”);
so.addVariable(”autoPlay”,”no”)
so.addVariable(”playlistPath”,”playlist.html”)
so.write(”flashPlayer”);
-
-
http://www.filelodge.com/files/room38/1068593/song.mp3
Track 1 -you were always on my mind
-
http://www.filelodge.com/files/room38/1068593/song.mp3
Track 2 - i cant help falling in love with you
-
http://www.filelodge.com/files/room38/1068593/song.mp3
Track 3 - wooden heart
-
http://www.filelodge.com/files/room38/1068593/song.mp3
Track 4 - love me tender
-
http://www.filelodge.com/files/room38/1068593/song.mp3
Track 5 - talking in your sleep
-
http://www.filelodge.com/files/room38/1068593/song.mp3
Track 6 - teddy bear
-
http://www.filelodge.com/files/room38/1068593/song.mp3
Track 7 - the closest thing to crazy
-
http://www.filelodge.com/files/room38/1068593/song.mp3
Track 8 - sexy naughty bitchy
-
http://www.filelodge.com/files/room38/1068593/song.mp3
Track 9 - come on over baby
-
http://www.filelodge.com/files/room38/1068593/song.mp3
Track 10 - you better shape up
-
http://www.filelodge.com/files/room38/1068593/song.mp3
Track 11 - my neck my back dirty version
-
http://www.filelodge.com/files/room38/1068593/song.mp3
Track 12 - chelsea we love you
/**
* SWFObject v1.4.1: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
*
* SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*
* **SWFObject is the SWF embed script formerly known as FlashObject. The name was changed for
* legal reasons.
*/
if(typeof deconcept==”undefined”){var deconcept=new Object(); }
if(typeof deconcept.util==”undefined”){deconcept.util=new Object(); }
if(typeof deconcept.SWFObjectUtil==”undefined”){deconcept.SWFObjectUtil=new Object(); }
deconcept.SWFObject=function(_1, id, w, h, _5, c, _7, _8, _9, _a, _b){ if(!document.createElement||!document.getElementById){return; }
this.DETECT_KEY=_b?_b:”detectflash”; this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY); this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
if(_1){this.setAttribute(”swf”, _1); }
if(id){this.setAttribute(”id”, id); }
if(w){this.setAttribute(”width”, w); }
if(h){this.setAttribute(”height”, h); }
if(_5){this.setAttribute(”version”, new deconcept.PlayerVersion(_5.toString().split(”.”))); }
this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion(this.getAttribute(”version”), _7 );
if(c){this.addParam(”bgcolor”, c); }
var q=_8?_8:”high”; this.addParam(”quality”, q);
this.setAttribute(”useExpressInstall”, _7);
this.setAttribute(”doExpressInstall”, false);
var _d=(_9 )?_9:window.location;
this.setAttribute(”xiRedirectUrl”, _d);
this.setAttribute(”redirectUrl”, “”);
if(_a){this.setAttribute(”redirectUrl”, _a); }};
deconcept.SWFObject.prototype={setAttribute:function(_e, _f){ this.attributes[_e]=_f; }, getAttribute:function(_10){
return this.attributes[_10];
}, addParam:function(_11, _12){
this.params[_11]=_12; }, getParams:function(){
return this.params;
}, addVariable:function(_13, _14){
this.variables[_13]=_14; }, getVariable:function(_15){
return this.variables[_15];
}, getVariables:function(){
return this.variables;
}, getVariablePairs:function(){
var _16=new Array();
var key;
var _18=this.getVariables(); for(key in _18){_16.push(key+”=”+_18[key]); }
return _16;
}, getSWFHTML:function(){
var _19=”"; if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
if(this.getAttribute(”doExpressInstall”)){this.addVariable(”MMplayerType”, “PlugIn”); }
_19=”0){_19+=”flashvars=\”"+_1 c+”\”"; } _19+=”/>”; }else{if(this.getAttribute(”doExpressInstall”)){this.addVariable(”MMplayerType”, “ActiveX”); } _19=”"; _19+=”"; var _1d=this.getParams(); for(var key in _1d){_19+=”"; } var _1f=this.getVariablePairs().join(”&”); if(_1f.length>0){_19+=”"; }_19 +=”"; } return _19; }, write:function(_20){
if(this.getAttribute(”useExpressInstall”)){
var _21=new deconcept.PlayerVersion([6, 0, 65]);
if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute(”version”))){
this.setAttribute(”doExpressInstall”, true);
this.addVariable(”MMredirectURL”, escape(this.getAttribute(”xiRedirectUrl”)));
document.title=document.title.slice(0, 47 )+” - Flash Player Installation”; this.addVariable(”MMdoctitle”, document.title); }}
if(this.skipDetect||this.getAttribute(”doExpressInstall”)||this.installedVer.versionIsValid(this.getAttribute(”version”))){
var n=(typeof _20==”string”)?document.getElementById(_20):_20; n.innerHTML=this.getSWFHTML(); return true;
}else{if(this.getAttribute(”redirectUrl”)!=”"){document.location.replace(this.getAttribute(”redirectUrl”)); }}return false; }};
deconcept.SWFObjectUtil.getPlayerVersion=function(_23, _24 ){
var _25=new deconcept.PlayerVersion([0, 0, 0]);
if(navigator.plugins&&navigator.mimeTypes.length){
var x=navigator.plugins[”Shockwave Flash”]; if(x&&x.description){_25=new deconcept.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/, “”).replace(/(\s+r|\s+b[0-9]+)/, “.”).split(”.”)); }
}else{try{var axo=new ActiveXObject(”ShockwaveFlash.ShockwaveFlash”);
for(var i=3; axo!=null; i++){axo=new ActiveXObject(”ShockwaveFlash.ShockwaveFlash.”+i); _25=new deconcept.PlayerVersion([i, 0, 0]); }}
catch(e){}
if(_23&&_25.major>_23.major){return _25; }
if(!_23||((_23.minor!=0||_23.rev!=0)&&_25.major==_23.major)||_25.major!=6||_24){
try{_25=new deconcept.PlayerVersion(axo.GetVariable(”$version”).split(” “)[1 ].split(”, “)); }
catch(e){}}}return _25; };
deconcept.PlayerVersion=function(_29 ){
this.major=parseInt(_29 [0])!=null?parseInt(_29[0]):0; this.minor=parseInt(_29 [1])||0;
this.rev=parseInt(_29 [2])||0; };
deconcept.PlayerVersion.prototype.versionIsValid=function(fv){ if(this.majorfv.major){return true; }
if(this.minorfv.minor){return true; }
if(this.rev-1)?q.indexOf(”&”, _2d):q.length;
if(q.length>1&&_2d>-1){return q.substring(q.indexOf(”=”, _2d)+1, _2e); }}
return “”; }};
deconcept.SWFObjectUtil.cleanupSWFs=function(){ var _2f=document.getElementsByTagName(”OBJECT”); for(var i=0; i
August 17th, 2006 at 10:58 pm
sorry one more thing if i have done that wrong could anyone help me to get it wright
August 18th, 2006 at 4:51 am
Errrr… what does that have to do with flash mp3 player?
You should go to some forum that is related to javascript and html. You should get it “wright” there.
August 18th, 2006 at 9:39 pm
i have had the same truble with this flash player too
August 20th, 2006 at 11:46 pm
Anyone with knowledge on how to make the player only play 10 to 20 secs of a song, please let me know! I am trying to do something and need that info!
Thanks for the help!
August 29th, 2006 at 12:47 am
hey guys go here fo all of ur entertainment needs http://www.ejust4u.piczo.com
my email canadian_boyz3@hotmail.com
August 29th, 2006 at 8:33 am
Need help!
I’m in the middle of making a full page flash website.
This player is excactly what i need. The problem is it won’t work within my movie. It works fine on its own but when i copy the whole contents into a bigger flash file it ceases to work.. No error msgs, nothing.
Track name turns to 01. undefined. etc. Everything is located where it needs to be. What part of the script do i need to edit to get it to play?
September 4th, 2006 at 1:01 pm
Just wonder are you guys base in Athens Greece
or just your server is there
Thnaks Angelo
Greek radio Station in Florida USA
September 7th, 2006 at 11:06 pm
how can i put this on my myspace
September 20th, 2006 at 1:37 pm
iv tryd wat i could analyz but for some reason as i am using all mp3 content the first track will not play as for the rest do play.So i added the first one twice as so it would play as the second one but neither that plays.Suggestions please if any.
September 21st, 2006 at 9:54 pm
the solution i´ve been looking for a long long long time!
thank you so much for that great tool!
tim.
if somebody hast questions with that script and shoutcast server, feel free to contact me!
September 26th, 2006 at 11:38 am
Nice 1…. the right colours for my site as well…
I made mine vertical to give everyone neck ache… Find it here in use under streaming playlists, just select a playlist on the navi bar thingy….
http://www.fcfx.co.uk/in.htm
September 26th, 2006 at 11:39 am
And I’m not from Finland
October 20th, 2006 at 7:53 pm
Hi,
I any one have working flash player with Soutcast streaming. If any one have pls mail me: isawczukMONKEYgmailDOTcom.
October 27th, 2006 at 7:54 pm
Really nice scripture! Must say, thanks for making it open source..
But.. Anyone have a solution for making it work with ShoutCast stream??
Currently have a shoutcast server running for my main site
http://www.NexTech-inc.com/
Really would be nice to work with shoutcast, because I can get great stats on my front page with the audio stream running.
Regards, - - sirHOAX - -
November 10th, 2006 at 3:08 pm
Its amazing that after years now there is STILL no shoutcast compatable cross-platform flashplayer that isnt half assed in one way or another. Amazing. (and frustrating)
November 25th, 2006 at 10:28 am
for all your entertainment needs and for movies, music, games, anime, software and lots more, go to -
http://nitchi.50webs.com
or
http://www.freewebs.com/livestreams123
December 5th, 2006 at 11:55 am
nice work dude.
is there a way to create several xmls and each time load another one or will I have to seperate several copies in to dirs in order to do so?
December 27th, 2006 at 1:07 am
This tool is wicked! I am currently using it on http://www.cakeoff.tk... check it in action!
December 27th, 2006 at 11:52 am
Hi There.
I can´t get this straight.
How do i make the player accept a Streaming URL.
I can see in the XML file, something like:
But the steaming - dosen´t start…
How do i make it work ??
Hope you can help me
C yaaa - kimo
December 27th, 2006 at 3:21 pm
Okay - it only works with Icecast ..
But when i insert a icecast url ..
like ex : http://dir.xiph.org/listen.php?pid=1830062&file=listen.m3u
Still no steam / music ..
Do i have to change the file indicator to a different format
other then “”s3m” ??
Hope you can help me
C yaaa - kimo
December 27th, 2006 at 11:17 pm
hey nice work but can you tell me will this player work for ice cast with .m3u extention and how much relaiable
thanks
December 28th, 2006 at 9:07 am
Hi aslam
Did you get it to work with a .m3u file ???
Like : http://dir.xiph.org/listen.php?pid=1830062&file=listen.m3u
Cheers - kimo
January 6th, 2007 at 10:41 pm
ALL ENTERTAINMENT NEEDS AT EJUST4UFORUMS
MOVIES MUSIC
CHANNELS MUSIC VIDEOS
SPORTS RADIO
SOFTWARES
AND ALOT MORE
AT
http://WWW.EJUST4UFORUMS.PICZO.COM
January 8th, 2007 at 12:27 pm
Does anyone - have this player working with
a streaming (icecast) URL ???
Please post an example
Cheers Kimo
January 11th, 2007 at 2:57 am
excellent little flash mp3 player. we use this for our stream at our radio stations webcast with mp3PRO encoding @ 80KBPS (CBR), and this thing does the trick perfectly! keep up the good work =]
January 26th, 2007 at 6:52 pm
cool stuff, I’m streaming right now to my Wii, works
(except the kb indicator, but I can live without that)
January 31st, 2007 at 6:53 pm
nice tool and useful, thanks
http://govweb.tripod.com/
February 18th, 2007 at 5:11 pm
Hello friends navigators,
I was analyzing the behavior of this player, and it would like to use him for a radio shoutcast.
I noticed that he perfectly works in the player Standalone version 7.
Already in the navigator, that possesses the version 9 of the flash player, the transmission doesn’t work ShoutCast.
Did anybody manage to do the player to work? can I help myself?
I tried to add System.security.allowDomain (’rockachu.net’, ‘www.rockachu.net’); but it didn’t also work.
I await contact: laybows@rockachu.net
March 7th, 2007 at 11:21 am
bedrijfskleding
March 9th, 2007 at 4:31 am
Hello I Put This in My Web Page But It Don’t Playing Shoutcasting Link But If I Open SWF File from My Computer it’s Start Playing ? What The Matter !
March 11th, 2007 at 9:11 pm
do anyone know when i play just like that, it plays directly from shoutcast server, but when i play it in the browser, it dose not work and i get a message saying.. its trying to connect to 128.282.82.82 (ip address of shoutcast server) and then it will be just connecting and dose not play it in the browser.. any ideas anyone?
March 18th, 2007 at 10:10 am
klm kleding bedrijfskleding
March 22nd, 2007 at 9:33 am
THANKS ALOT….
March 22nd, 2007 at 9:34 am
THANKS ALOT…..
April 7th, 2007 at 4:07 pm
nice. anyone knows how to make it dont autoplay?
April 20th, 2007 at 12:45 pm
Hi Everibody.
I have a great notice:
if you want use this player for streaming server only need change the settings into playlist file. (folfer/ xml).
put this:
and up all files into server http://206.225.82.201 or into the streaming server.
sorry my bad english, if you want help, contact me, blue@oaxak.com MSN
May 12th, 2007 at 11:55 am
gr88888888888 work ..
That’s was I was wondering for
Thanks very much..
I need to generate random playlist.xml file how it can be done ?
http://www.ideasnext.com/player/player.swf have a look
May 25th, 2007 at 11:25 am
put what?
May 25th, 2007 at 11:52 am
to blue :
put what? please send me email to donie at gravitasi dot com
thanks you so much
May 28th, 2007 at 12:42 pm
hey, put what?
June 7th, 2007 at 6:09 pm
Want DNB? You guys should check out http://www.freshsets.net.
June 11th, 2007 at 4:09 am
Hi and thanks for this great flash! I use it with my Icecast radio. If someone still has problems with the xml config, maybe this will help:
fileType=”s3m”
just wish it could read song info from the stream…oh well…
path should be your stream URL, but for me it didn’t work with m3u so I reconfigured my radio to also work without the .m3u at the end (two stream URLs, check icecast documentation if you’re not aware of how to do this). Works fine now
June 20th, 2007 at 8:17 am
monsters
July 28th, 2007 at 5:40 am
Great player!
July 28th, 2007 at 5:41 am
Is there a way to change the colors of the player?
Answer much appreciated.
August 1st, 2007 at 6:45 am
Yeah. You just open the source in Flash and change the colors.
August 3rd, 2007 at 3:28 am
Great work!! I really enjoy it when strong developers go to town with there ability to write code!!
Thanks Again!
August 4th, 2007 at 3:07 pm
good source
i am very happy now
http://www.arabti.com
August 13th, 2007 at 11:04 pm
I just wat to play a specific .mp3 on hi5, no flash mp3 player seems to work, note my mp3 is already on a server.
August 14th, 2007 at 1:41 am
[…] http://play.ground.gr/index.php?p=19 […]
August 24th, 2007 at 8:58 pm
Having the same trouble as bobby. Loads the mp3 file, correctly identifies the filesize, plays 1 second and then skips to the next track. Tried different bitrates in case the file was too large. That first second does play correctly, though.
August 24th, 2007 at 9:01 pm
…. ah, nevermind, I didn’t set the time=”" in the playlist.xml. Shucks.
September 3rd, 2007 at 10:07 pm
Having the same trouble as bobby& Moses. Loads the mp3 file, correctly identifies the filesize, plays 1 second and then skips to the next track. Tried different bitrates in case the file was too large. That first second does play correctly. I have changed the length of the file to be time=”X.XX” but still same is the issue.
Can you let us know what needs to be done.
September 5th, 2007 at 12:25 pm
gfhsdgf
September 27th, 2007 at 12:37 pm
this player play .m3u files???
October 10th, 2007 at 2:20 pm
great thx
October 16th, 2007 at 2:45 pm
This is a great player it works great on my Lone Ranger Radio website for streaming the station audio, check it out at:
http://www.linuxbubba.homelinux.com/LoneRangerRadio/LoneRangerRadio.html
October 22nd, 2007 at 10:02 pm
Neat application, I wanted to let you see how I used it:
http://www.columbinemarketing.com/platform/
November 7th, 2007 at 10:37 pm
thx for this stuff
November 12th, 2007 at 10:17 am
nice neat flash app less code than the one I wrote for my site.
well played linked up to icecast stream from a darwin streaming server no problems.
has consistantly streamed for hours on my mac.
has stopped ocassionally on some pc’s.
have you any knowledge about flash maxing out memory when delivering streams to pc’s.
December 12th, 2007 at 11:35 pm
Nice stuff. thanks i will use it for my radio : http://www.trianglevoiceradio.com
June 2nd, 2008 at 12:23 pm
that is nice flash playr but one problem to me i need some player that work like as if we link a any song in a html page and user click on song than the song is play in this player.
thanks