List of Posts written during Aug 2025

This is a list of of posts written during the month Aug 2025
(Rev. 16-Aug-2025)

Categories | About |     |  

List of Posts

This is the complete list of categories of posts written during Aug 2025. They have been ordered by the publish date, with the most recent first.

  1. Published: 05-Aug-2025
    IFormFile leads to practical problems when concurrent users are uploading large files. Following explains the problems, and also a solution that reads the multipart body and streams the bytes directly to the file on your disk. Buffering is not done; IFormFile is not used.


  2. Published: 16-Aug-2025
    A user authenticates with his phone, and sees a file upload control where she can upload a video, and see the progress as the upload completes. After the upload is completed, the request for extraction is queued. A background service de-queues the requests and processes them one by one. A user can see the progress of extraction if he is online at the time of extraction. Processing is done with the ffmpeg software. The attached video shows the project running, followed by how to obtain ffmpeg and finally an overview of the source code.