![]() |
problem in converting video avi to flv using ffmpeg probelm?? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: problem in converting video avi to flv using ffmpeg probelm?? (/showthread.php?tid=28303) |
problem in converting video avi to flv using ffmpeg probelm?? - El Forum - 03-07-2010 [eluser]Zeeshan Rasool[/eluser] Hi, im using ffmpeg to convert my avi file to flv, its fine on local but not working on server online. one thing i noticed that on local apche error log it produce some thing like this. Code: FFmpeg version SVN-r7760, Copyright (c) 2000-2006 Fabrice Bellard, et al. in my model i am using this code after file is uploaded Code: $tmp = exec( '.\ffmpeg -i '.$directory_path_full.' -y -acodec copy -ar 22050 -ab 64k -ac 1 '.$directory_path.'/'.$file_name.'.'.'flv'); problem in converting video avi to flv using ffmpeg probelm?? - El Forum - 03-07-2010 [eluser]mallcom[/eluser] possible causes: php.ini-> max_execution_time max_upload= 2m proper rights? problem in converting video avi to flv using ffmpeg probelm?? - El Forum - 03-07-2010 [eluser]Zeeshan Rasool[/eluser] thanks, but max_execution time is 30 in my php.ini on localhost. how much it should be ? problem in converting video avi to flv using ffmpeg probelm?? - El Forum - 03-08-2010 [eluser]xeroblast[/eluser] if your problem is the php.ini then you could add ini_set('max_execution_time',30)... problem in converting video avi to flv using ffmpeg probelm?? - El Forum - 03-08-2010 [eluser]Zeeshan Rasool[/eluser] actually i dont know where is problem. ffmpeg is not converting the video file to flv, its fine on localhost some bugs in log file as i provided in first posting problem in converting video avi to flv using ffmpeg probelm?? - El Forum - 03-08-2010 [eluser]xeroblast[/eluser] if it is running perfectly on your local then the problem is in your server... is FFMPEG installed in your server? if it is, is it running correctly? |