I use ffmpeg to convert a video file uploaded via an ASPX web page.
ffmpeg conversion works fine.
I want to provide the end-user a progress bar. So I placed an updatPanel on my web page and tried to read the file size ...
- using fileinfo : ffmpeg freeze
- using [process.start()] cmd.exe /c dir : ffmpeg freeze
- using filestream : error ->> file is used by another process
- using ffmpeg -i X Y 2> log.txt : log is created only when conversion completed
Whats the proper/working way to do this?