Yes my ego isnt big enough yet.
Its pretty simple anyway just search for convert video to 3gp, and youll find some examples.
Then set the interface for different video conversion types, quality, audio etc by adjusting variables
This is exactly what im using
Code:
exec ('ffmpeg -i ' . $root . $file . ' '.$params.' '.$size.' ' . $root . $newfile);
/*
Here's an explanation of the options used here:
-b bitrate: set the video bitrate in kbit/s (default = 200 kb/s)
-ab bitrate: set the audio bitrate in kbit/s (default = 64)
-ar sample rate: set the audio samplerate in Hz (default = 44100 Hz)
-s size: set frame size. The format is WxH (default 160x128 )
*/
Bookmarks