[PHP] getting info from video formats

2008-07-28 Thread Rene Veerman
Hi. I want to enable video and flash for my CMS, but that requires that i can read at least the dimensions of a video file.. ImageMagick's identify command supposedly reads AVI and MPEG, but i can't get it to work on my avi's: C:\Users\rene\Documents\Downloadsidentify

Re: [PHP] getting info from video formats

2008-07-28 Thread Aschwin Wesselius
Rene Veerman wrote: Hi. I want to enable video and flash for my CMS, but that requires that i can read at least the dimensions of a video file.. ImageMagick's identify command supposedly reads AVI and MPEG, but i can't get it to work on my avi's: C:\Users\rene\Documents\Downloadsidentify

Re: [PHP] getting info from video formats

2008-07-28 Thread Aschwin Wesselius
Aschwin Wesselius wrote: Rene Veerman wrote: Hi. I want to enable video and flash for my CMS, but that requires that i can read at least the dimensions of a video file.. ImageMagick's identify command supposedly reads AVI and MPEG, but i can't get it to work on my avi's:

Re: [PHP] getting info from video formats

2008-07-28 Thread Aschwin Wesselius
Rene Veerman wrote: USD 1500 for a commercial license :( That's prohibitively expensive for me atm.. Any other packages that might do the trick? Well, there's nothing wrong with taking a peek at the source code and get some idea of how they did the information gathering. Then, build your

Re: [PHP] getting info from video formats

2008-07-28 Thread mike
On 7/28/08, Rene Veerman [EMAIL PROTECTED] wrote: ImageMagick's identify command supposedly reads AVI and MPEG, but i can't get it to work on my avi's: i wouldn't rely on it; i'd rely on it for Images :) C:\Users\rene\Documents\Downloadsidentify Stargate.Atlantis.S05E02.HDTV.XviD-0TV.avi

FW: [PHP] getting info from video formats

2008-07-28 Thread Chris Scott
: mike [mailto:[EMAIL PROTECTED] Sent: Monday, July 28, 2008 1:12 PM To: Rene Veerman Cc: php-general@lists.php.net Subject: Re: [PHP] getting info from video formats On 7/28/08, Rene Veerman [EMAIL PROTECTED] wrote: ImageMagick's identify command supposedly reads AVI and MPEG, but i can't

Re: FW: [PHP] getting info from video formats

2008-07-28 Thread mike
On 7/28/08, Chris Scott [EMAIL PROTECTED] wrote: I agree. I use MPlayer to process videos. One script gets the video length like this. //use mplayer to pull some info from the video $info = exec(\$mplayer\ $videoPath/$videoName -identify -nosound -frames 0 $tmpInfoFile); //and open the

FW: FW: [PHP] getting info from video formats

2008-07-28 Thread Chris Scott
-Original Message- From: mike [mailto:[EMAIL PROTECTED] Sent: Monday, July 28, 2008 2:17 PM To: Chris Scott Cc: php-general@lists.php.net Subject: Re: FW: [PHP] getting info from video formats On 7/28/08, Chris Scott [EMAIL PROTECTED] wrote: I agree. I use MPlayer