View Full Version : Determine the Video Duration
cancer10
04-13-2011, 01:56 AM
Hi
Using PHP, is there anyway we can know the length of a video (not size but duration of the video) that has been uploaded?
Any help is appreciated.
Thanks
djr33
04-13-2011, 02:20 AM
PHP does not have this feature built in. You can theoretically get the image data and attempt to find out (this would be hard) or you can attempt to use a library that already exists. Using ffmpeg and perhaps some other things you can probably figure out information. There might also be metadata in the file though this could be misleading.
Of course the simple answer is to check for filesize if you are worried about space, though that won't do much toward telling you how long the video is because there are various formats.
The real question is what format(s) the video will use. Once you know that, you can start to work out how to handle the information.
However, as a general warning, this won't be easy. In fact, it might be easier if you can install a program on the server that can read the videos natively then use an exec() command in PHP to ask that program how long the video is.
cancer10
04-13-2011, 02:41 AM
PHP does not have this feature built in. You can theoretically get the image data and attempt to find out (this would be hard) or you can attempt to use a library that already exists. Using ffmpeg and perhaps some other things you can probably figure out information. There might also be metadata in the file though this could be misleading.
Of course the simple answer is to check for filesize if you are worried about space, though that won't do much toward telling you how long the video is because there are various formats.
The real question is what format(s) the video will use. Once you know that, you can start to work out how to handle the information.
However, as a general warning, this won't be easy. In fact, it might be easier if you can install a program on the server that can read the videos natively then use an exec() command in PHP to ask that program how long the video is.
HI djr33
I see your point.
Thanks for replying.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.