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.
- Published: 05-Aug-2025IFormFile 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.
- Published: 16-Aug-2025A 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.