Jump to content

need help geting width/height of a video file


tbare

Recommended Posts

hello, all...

 

i'm looking for something like:

getimagesize()

but for video files (avi, wmv, mpeg...)

 

reason being is this:

if i take the hard-coded ( width='x' height='x' ) out of the string of an embedded video, it shows up fine in IE, but firefox is all distorted.

if i hard code ( width='500' height='500' ), and the video file is larger than either of those 2 dimensions, the video is distorted, so i would need to scale the video down to fit in the that size window.

 

is there anything out there for this?.... please??

http://ffmpeg-php.sourceforge.net/

http://ffmpeg-php.sourceforge.net/apidoc.php

 

It looks pretty simple

 

$movie = new ffmpeg_movie(String path_to_media, boolean persistent);
$height = $movie->getFrameHeight();
$width = $movie->getFrameWidth();

 

ffmpeg-php needs to be installed, though.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.