Does anybody know a ready-made, reliable way to tell the dimensions (width x height) of a MP4 encoded using the H.264 codec without ffmpeg or similar extensions, in pure PHP?

Thanks for all the answers folks. The bounty is running out and I will not have time to check the offered solutions before it does. I will accept the solution that I feel has the greatest likelihood to work.

link|improve this question

Nothing ready-made that I know of, but the MPEG-4 standard is extremely well documented. You could parse the data out of the file yourself with a few hours coding. – Greg Beech Nov 12 '09 at 0:10
If you have the proper permissions on your server, you could execute the ffmpeg executable with the right command line arguments to get back a width x height I'm sure – Earlz Dec 1 '09 at 1:32
Nope, no command line access on this server. That's why I'm asking for PHP. But certainly the first choice when you have the permissions. – Pekka Dec 4 '09 at 18:40
feedback

6 Answers

up vote 2 down vote accepted
+100

It sounds like http://code.google.com/p/php-mp4info/ might be your answer. It reads MP4's but it doesn't mention anything about H.264.

also, what OS are you using?

link|improve this answer
Wow, this looks good! Chances are that the dimensions are stored in the metadata no matter what encoding is used. I will take a look into that. The site will be running on Linux. – Pekka Dec 4 '09 at 12:35
the only place I see this falling short is if a video doesn't have the metadata properly emebeded. – Alec Gorge Dec 5 '09 at 2:35
See my edited question above. – Pekka Dec 7 '09 at 8:56
Good luck. If you get it figured out would you mine posting it here? – Alec Gorge Dec 10 '09 at 0:34
feedback

getID3 is pure php and extracts an amazing amount of information from media files of all sorts. It will depend on what encoded your file in the first place as to what metadata is available and how reliable it is. getID3 has a nice demo page with lots of different file types. I tried to post more links but as a newbie I only get one.

link|improve this answer
Thanks for the link, but as far as I can see, getID3 doesn't do MP4. – Pekka Dec 2 '09 at 11:37
On the demo page (getid3.org/demo) there are two .mp4 files e.g. getid3.org/demo/MP4%20-%20aac.mp4.html. As I mentioned it will depend on what was used to encode your mp4, if it was Quicktime I bet getID3 would work. Without more information or an example file it is difficult to tell. What encoded your file? – Bobbin Dec 2 '09 at 12:02
feedback

What comes to mind:

  • mediainfo a huge project with GUI, but also has a CLI
  • mp4info (part of the seemingly defunct mp4mpeg project) is almost perfect for this
  • ffmpeg although this is overkill for the task. then again, you very well may need it for other tasks
link|improve this answer
feedback

ffmpeg and php: http://www.lampdeveloper.co.uk/linux/detecting-a-videos-dimensions-using-php-and-ffmpeg.html

link|improve this answer
the question mentions "without ffmpeg" :) – Gregory Pakosz Dec 6 '09 at 15:57
whoops. i clearly misread the question! – Steve Graham Dec 6 '09 at 16:12
feedback

php-reader is a full implementation of the ISO 14496 done in pure PHP. You can use this library to read all of the boxes which the mp4 consist of, like the moov atom containing metadata about the file.

link|improve this answer
feedback

Native PHP does not support anything like this, ffmpeg is only one library that come on my mind.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.