Tag dei files mp3 (ID3)

  • Creatore Discussione Creatore Discussione eduhel
  • Data di inizio Data di inizio

eduhel

Nuovo Utente
17 Mag 2011
2
0
0
Premetto di essere un vecchio informatico e nonostante la mia avanzata età sto cercando di fare come hobby un applicativo web. Ho bisogno di classificare file mp3 e vorrei poter ricavare i tags relativi(artista, titolo, album, anno e genere) con Javascript. Ho cercato nella rete e ho trovato qualcosa in questo link:
http://blog.nihilogic.dk/2008/08/reading-id3-tags-with-javascript.html
ma non riesco a farlo funzionare. Se qualcuno mi può aiutare lo ringrazio anticipatamente.
 
Ultima modifica:
Questo è una prova che avevo fatto
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<header></header>
<title>UPLOAD CANZONI</title>

<!-- estos dos files son necesarios -->
<script type="text/javascript" src="C:\\Programmi\\EasyPHP-5.3.5.0\\www\\binaryajax.js" ></script>
<script type="text/javascript" src="C:\\Programmi\\EasyPHP-5.3.5.0\\www\\id3.js" ></script>

<script>
var file = "C:\\Programmi\\EasyPHP-5.3.5.0\\www\\aquello.mp3";

// define una funzione di callback
function mycallback() {
// either call the ID3.getAllTags([file]) function which returns an object holding all the tags
alert("All tags in this file: " + ID3.getAllTags(file).toSource() );

// or call ID3.getTag([file], [tag]) to get a specific tag
alert("Title: " + ID3.getTag(file, "title") + " by artist: " + ID3.getTag(file, "artist") );
}

ID3.loadTags(file, mycallback);

</script>

<body bgcolor="#FFFFCC" >
<form name="datos" >
<h1><CENTER><FONT="12">UPLOAD CANZONI</FONT></CENTER> </h1>
<?php

echo "<input type=\"button\" onclick=\"mycallback()\" value=\"tagMp3\" />";

?>
</body>
</html>
 

Discussioni simili