I have problem in php i want to convert my video file wmv, mpeg, avi to FLV through PHP class and how i can get auto thumb from video in php i search on google but not found good one.
How to convert video file in to php?
Thanks in advance.
I have problem in php i want to convert my video file wmv, mpeg, avi to FLV through PHP class and how i can get auto thumb from video in php i search on google but not found good one.
How to convert video file in to php?
Thanks in advance.
2WDH.com .:. Professional Hosting since 2003
Yep ffmpeg you'll probably need at least a VPS most shared hosts do not install this some VPS providers will charge you to install it.
you will need ffmpeg and the ffmpeg-php extension.
Or.... you can use ffmpeg and command line exec()
IIRC ffmpeg is perfectly able to decode wmv (you can also try renaming to asf). Encoding to wmv is "strongly discouraged" for legal reasons (see ffmpeg faq).
To extract a still image from the video just "wind" it to the desired position (-ss) and convert to jpeg:
Code:
ffmpeg -i video.mpeg -ss 10 -t 1 -f mjpeg screenshot.jpg
yes indeed, i was about to say the same thing as you seoexpert22
actually i don't see why you just don't convert it to silverlight or flash, because if you can do that then you can just use a javascript and put it on there...
fast for converting?
---------- Post added at 01:05 AM ---------- Previous post was at 01:05 AM ----------
to silverlight or flash is just what i want
---------- Post added at 01:06 AM ---------- Previous post was at 01:05 AM ----------
mpeg, avi to FLV through PHP class and how i can get auto thumb from video in php i search on google
Hello,
Thanks for the information. I will check
FFmepg seems great, but I cannot find the download now.
Bookmarks