For the complete documentation index, see llms.txt. This page is also available as Markdown.

Queue Media Details Extraction

If you are reading this, we assume you know what is Laravel Queue. if not, please read Laravel's documentation first.

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.

This feature only works in ORM mode! Media details for standalone uploads will be extracted synchronously during the request.

Last updated