Back to top

Autore Topic: configurare flash mp3 player  (Letto 2007 volte)

Offline lullaby

  • Nuovo arrivato
  • *
  • Post: 49
    • Mostra profilo
configurare flash mp3 player
« il: 21 Mag 2007, 13:00:44 »
ciao,
dunque, ho trovato flash mp3 player e mi sembrerebbe perfetto per me; ho scaricato il modulo e l'ho caricato in joomla... visualizzo bene l'oggetto ma non riesco a far comparire l'elenco delle canzoni!
Nella configurazione da administrator, sia che scelga Single music file  - Whole directory  o Customed playlist non vedo nulla, nessun titolo di canzone; solo invece che appunto i titoli mi compare scritto questo:
mod_flashmp3player/folderlist.php?fileext=.mp3directory=music

ho un file playlist.xml nel quale posso inserire link ai file musicali e un file folderlist.php che incollo sotto, dove se ho capito bene devo inserire i parametri della cartella da cui pescare... è giusto?

Aiutatemi vi prego, possibile che sia così capra????  :'( :'( :'( :'(

<?php

/*
This is a sample file that reads through a directory, filters the mp3/jpg/flv
files and builds a playlist from it. After looking through this file, you'll
probably 'get the idea' and'll be able to setup your own directory.
*/


// search for mp3 files. set this to '.flv' or '.jpg' for the other scripts
$filter = $HTTP_POST_VARS["mp3"];
// path to the directory you want to scan
$directory = $HTTP_POST_VARS["nomecartella"];


// read through the directory and filter files to an array
@$d = dir($directory);
if ($d) {
   while($entry=$d->read()) { 
      $ps = strpos(strtolower($entry), $filter);
      if (!($ps === false)) { 
         $items[] = $entry;
      }
   }
   $d->close();
   sort($items);
}


// third, the playlist is built in an xspf format
// we'll first add an xml header and the opening tags ..
header("content-type:text/xml;charset=utf-8");

echo "<playlist version='1' xmlns='http://xspf.org/ns/0/'>\n";
echo "   <title>Flash Mp3 Player Automatic Generated Playlist</title>\n";
echo "   <info>http://www.jeroenwijering.com/, http://downloads.zhangxi.info/</info>\n";
echo "   <trackList>\n";

// .. then we loop through the directory array ..
for($i=0; $i<sizeof($items); $i++) {
   echo "      <track>\n";
   echo "         <title>".$items[$i]."</title>\n";
   echo "         <location>".$directory.'/'.$items[$i]."</location>\n";
   echo "      </track>\n";
}
// Let's end the loop
echo "   </trackList>\n";
echo "</playlist>\n";
?>

grazieee
lullaby
« Ultima modifica: 21 Mag 2007, 14:24:48 da lullaby »

 



Web Design Bolzano Kreatif