Walter Johnson
Walter Johnson

Reputation: 1674

Php MP3 Tag Processing

I have a php script that I want to provide a list of music from. The files are named 01.mp3 02.mp3 and 03.mp3 and so on. They all have tag info. My question is how do I access that in my php script.

Upvotes: 2

Views: 1494

Answers (1)

3on
3on

Reputation: 6339

You need a script to parse the mp3 file to acces to the data.

From google:
http://getid3.sourceforge.net
http://www.codediesel.com/pear/reading-mp3-file-tags-in-php/ ...

Upvotes: 2

Related Questions