I m developing a PHP application that uses FFMPEG-PHP
to split videos and convert them to FLV
. And I ran into this problem :
FFMPEG
does not support G2M3
or G2M2
encoded videos, and I have to make the process of splitting and converting videos effortless for the client, I don t want him to convert the video locally before uploading to the server.
All I want to do is to find a way to convert the G2M3
encoded videos online to FLV
or to any other video type that FFMPEG
supports.
So, is there any way I can do that?
Can MEncoder
handle this type of videos?
I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...