Hi. I want to show some progress information of a server side procedure (which in fact is an ffmpeg re-encoding). The best way I though of was to use two different $.ajax() calls on myscript like this:
1) when the form is submitted (which would trigger the re-encoding) one $.ajax() would start the re-encoding like this:
$.ajax({
type: "GET",
url: "runffmpeg.php",
data: dataString,
success: function(data, textStatus, XMLHttpRequest) {
//clearInterval(repeat);
location.reload();
}});
2) Then, a second $.ajax() call would start watching the resulted file's size in order to inform the visitor of the progress, like this:
$.ajax({
type: "GET",
url: "checkprogress.php",
data: dataString,
success: function(data, textStatus, XMLHttpRequest) {
$('#submitted').html(data);
}
});
Actually this call I should be made within an setInterval of an 1 second period in order to show the progression.
Of course this doesn't work (or else why I should I posted it) and I can't find any reference of having 2 ajax calls on the same time.