Queue Media Details Extraction
Larupload can extract media details either synchronously during the upload request or asynchronously using Laravel's queue system.
When media details extraction is queued, Larupload uploads the original file immediately and dispatches a background job to extract metadata such as duration, dimensions, and other available media information. This reduces the upload request time, especially when working with large audio and video files.
If queueing is disabled, Larupload extracts the media details during the upload request, making them available immediately after the upload completes.
To use queued extraction, ensure that your application's queue worker is running so the dispatched jobs can be processed promptly.
Last updated