Sonia
Sonia

Reputation: 253

Does PHP have an integrated function to read metadata from an mp4 file?

I want to know if PHP has a function to read metadata from an mp4 video-audio file. I've found some external classes that do that, but first of use them I would want to know if are necessary or PHP already have some method for do that.

Classes that I've found are php-mp4info and getID3(), which of them is better?

Upvotes: 0

Views: 8411

Answers (2)

Brian
Brian

Reputation: 8626

Best tool I have used is: https://code.google.com/p/php-reader/ have a look...also supports other forms of media.

Edit: PHP-Reader seems to be no longer maintained (project has not been updated since 2012...). You should use getID3() now.

Upvotes: 1

Chris
Chris

Reputation: 5615

I've used http://getid3.sourceforge.net/ before for something similar, worked pretty well as far as I remember.

Upvotes: 3

Related Questions