bobleny Posted September 3, 2008 Share Posted September 3, 2008 As much as I don't want to, it seems for the best that I create ID3 tags for all 1,500+ mp3's that I have.... Xp www.php.net is usually of great help, but not this time... www.php.net/manual/en/ref.id3.php I'm at a complete loss. I simply need to take an mp3 file (file.mp3) and give it some ID3 information (Tittle = Hail Caesar | Album = Ballbreaker | Artist = AC/DC). I don't require anything fancy, I don't require any bells and whistles. I don't really require a full-blown script, just a simple one or two line, "Take file.mp3 and tittle Hail Caesar." I hope I explained what I need well enough.... Anyways, if anyone could help me out with this, that would be great! Thanks for any and all help! Quote Link to comment https://forums.phpfreaks.com/topic/122480-solved-creating-mp3-id3-tags-with-php-please-help/ Share on other sites More sharing options...
zq29 Posted September 3, 2008 Share Posted September 3, 2008 If you're running a Linux based server, you could install "id3v2" and use that to write the tags... <?php exec('id3v2 -a "AC/DC" -A "Ballbreaker" -t "Hail Caesar" file.mp3'); ?> Quote Link to comment https://forums.phpfreaks.com/topic/122480-solved-creating-mp3-id3-tags-with-php-please-help/#findComment-632589 Share on other sites More sharing options...
bobleny Posted September 3, 2008 Author Share Posted September 3, 2008 Wow, I never even thought to do that.... lol Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/122480-solved-creating-mp3-id3-tags-with-php-please-help/#findComment-633253 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.