Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Retrieve ID3 info from m4a file in PHP

Tags:

php

id3

m4a

I've written some PHP code to pull out ID3 tags from mp3 files. The next step is to do the same with .m4a files. From the research I've done it looks like most m4a files do not use ID3 but instead a format using 'atoms'.

Are there any PHP libraries out there that can parse out these 'atoms'? I've seen some C#/C++ ones but havent been able to find any PHP ones. Any other guides or documentation would be great as well.

Thanks

like image 334
Nick Avatar asked Jan 30 '12 20:01

Nick


1 Answers

This project handles many audio files formats including AAC (M4A is AAC) : http://getid3.sourceforge.net/

hope this can help

like image 180
fred727 Avatar answered Oct 02 '22 23:10

fred727