FFMPEG related, anyone has used this ?
Posted: Wed Oct 10, 2007 7:51 pm
Hi guys
I wanted to use ffmpeg, but unable to figure out how to go about it ... I will greatly appreciate if someone can help me out.
So, when user uploads a file using a form, at one point of stage we have something like
When uploading a file directly, ie, without any flv conversion, we use simply something like
However, I understand that here things are different, and between these two lines somewhere the ffmpeg will come into play, and convert the mpg or avi file to flv file. And this is where I am lost.
Can anyone help ? Thanks a lot for your time.
I wanted to use ffmpeg, but unable to figure out how to go about it ... I will greatly appreciate if someone can help me out.
So, when user uploads a file using a form, at one point of stage we have something like
Code: Select all
$movie=$_FILES['movie'];Code: Select all
ftp_put($conn_id, 'public_html/folder/'.basename('myMovie.mpg'), $movie['tmp_name'], FTP_BINARY);Can anyone help ? Thanks a lot for your time.