0

I need to show the exact time estimated with the nice progress bar while uploading the video.

I am using the ajaxupload js + php codignator for the server side.

halfer
  • 19,824
  • 17
  • 99
  • 186
Anuja P
  • 2,123
  • 2
  • 19
  • 32

2 Answers2

1

jqUploader is a jquery plugin that substitutes html file input fields with a flash-based file upload widget, allowing to display a progressbar and percentage.

http://pixeline.be/experiments/jqUploader/

File Upload widget with multiple file selection, drag&drop support, progress bars and preview images for jQuery.

http://blueimp.github.com/jQuery-File-Upload/

More info: jQuery ajax upload with progress bar - no flash

Community
  • 1
  • 1
codef0rmer
  • 10,284
  • 9
  • 53
  • 76
  • Thanks! for this answer. I have also refereed the same plugin jQuery-File-Upload but need some solution with ajaxupload.js – Anuja P Mar 06 '12 at 08:29
  • Well it means you need php related help to fetch the progress while the file is being uploaded. This might help. http://www.ibm.com/developerworks/library/os-php-v525/ – codef0rmer Mar 06 '12 at 09:25
0

You will have difficulty doing this on a PHP stack, but if back-compatibility isn't an issue you should check out the HTML5 filesystem API for a possible client-side solution.

rjz
  • 16,182
  • 3
  • 36
  • 35