Estoy trabajando con un reproductor mp3 en flash gratuito, y en la página de prueba viene este código:
Código:
Pues bien, me carga la página y el reproductor, pero ni rastro de las canciones, y eso que me he creado una carpeta llamada mp3 y he añadido un par de canciones. Me estoy volviendo loco, porque hace un tiempo sí que me funcionó, pero ahora no. Estoy pensando que igual puede ser que ahora estoy trabajando con php5, no se si ésto influirá en algo, ya que en su día lo probé con php4 y funcionaba.<div id="player"> <h1>No flash player!</h1> <p>It looks like you don't have flash player installed. <a href="http://www.macromedia.com/go/getflashplayer" >Click here</a> to go to Macromedia download page.</p> </div> <!-- Script that embeds player. --> <script language="javascript" type="text/javascript"> var so = new SWFObject("flashmp3player.swf", "player", "290", "247", "9"); // Location of swf file. You can change player width and height here (using pixels or percents). so.addParam("quality", "high"); so.addVariable("content_path","mp3"); // Location of a folder with mp3 files (relative to php script). so.addVariable("color_path","defaultmp3player.xml"); // Location of xml file with color settings. so.addVariable("script_path","flashmp3player.php"); // Location of php script. so.write("player"); </script> <br/> <!-- Please place this link anywhere on the page that uses Flash MP3 Player. You can style it anyway you want, but do not change or delete it. Read the license! Thanks. :-) --> Powered by <a href="http://www.flashmp3player.org">Flash MP3 Player</a> </body> </html>
Un saludo.