我有一个专用服务器,配有刺.和X264工具。 我可以打上任何录像,而且确实是好的。 但现在我需要在iPads、ipes上安装密码录像。
I m using PHP to enconde videos, I m just looking for an exec command to do the above encoding. what I m using for the other videos is:
exec("ffmpeg -i movie.mov -sameq -acodec mp3 -ar 22050 -ab 32 -f flv -s 1280x720 movie.flv");
I just need something similar to that for encoding mp4 by the way, I can t use libx264. I can only use the x264 tool
Cheers