When I run the conversion in the browser it simply shows the white blank space. Only after the conversion process page will load.
Please suggest how to implement a progress bar which shows the progress to the user when the video conversion takes place.
I have this in my php script
exec("ffmpeg -i filename.flv -sameq -ab 128 -s 640x480 filename.mp4");
so how should I change this script to get the progress details even to a file or directly as ouput in the page. Please can anyone give me a complete script/code to explain it in detail. Because I think I cant get the complete answers and so I am confused on what to do with this
It can be done, although it would be good idea to go for a simpler ajax indicator for smaller files, but for larger files >50-80 MBs you can do this:
You can read FFMPEG return values via PHP. ffmpeg (last few lines) returns this:
The time=74.00 is the current file time (NOT execution time). You can use some regex to parse that value and with some math you can get the percentage complete bar.
If you don't know the file time length. FFMPEG first few lines returns this:
You can parse the Duration and get the total time.
Hope this helps.
You might be interested in reading about COMET.
It is a programming technique that allows you to push information from the server to a browser without the browser having to request it.
Here's an article explaining how to implement it with PHP via the use of a hidden iframe.
http://www.zeitoun.net/articles/comet_and_php/start
Perhaps you could use this in conjunction with the answer Stewie provided relating to reading the return values from ffmpeg.
I don't believe this is possible.
The problem is that you need your
PHP
script to be aware of the currentffmpeg
processing status. If you do anffmpeg
conversion via the command line, it displays the progress to the user, but you don't have access to that output stream when you spawnffmpeg
using commands in PHP likeexec
.Rather than try to show the user a true "progress indicator", I suggest that you just lightbox a waiting indicator on the page instead. You can find many images to suit this purpose or generate one via tools like http://ajaxload.info/ .
javascript should tell php to start converting [1] and then do [2] ...
[1] php: start conversion and write status to a textfile - example syntax:
For the second part we need just javascript to read the file. The following example uses dojo.request for AJAX, but you could use jQuery or vanilla or whatever as well :
[2] js: grab the progress from the file:
If you're using PHP-FFMpeg, they've added an on function that you can listen for progress and execute a call back with. You set it up on your video format container like so:
More info found in the docs https://github.com/PHP-FFMpeg/PHP-FFMpeg