This package offers an extremely flexible media library, enabling you to store any type of file along with their conversions (nested conversions are supported). It is designed to work seamlessly with any filesystem solutions (local or cloud) such as Bunny.net, AWS S3/MediaConvert, Transloadit, among others.
The inspiration for this package is derived from the exceptional spatie/laravel-media-library
package (be sure to check out Spatie's packages, they are top-notch). However, it is not a fork, as the internal architecture is different, providing you with more capabilities. Migration from spatie/laravel-media-library
is feasible but may be challenging if you wish to retain your conversion files.
The Spatie team has developed a remarkable package, spatie/laravel-media-library
, which is well-suited for most common scenarios. However, I found myself constrained by their architecture for my own project. To address this, I required the following features:
- File transformations
- Advanced media conversions
- Nested media conversions
Consequently, I developed this package with the highest degree of flexibility possible. I have been utilizing it in production for nearly a year, handling terabytes of files monthly.
The following example will provide you with a better understanding of the package's capabilities.
We will create a YouTube-like service, with a model named Channel
. This Channel
will have two types of media: avatar
and videos
. We will define these media types in the registerMediaCollections
method.
We want to store the avatars in a square format, with dimensions not exceeding 500px, and in the WebP format. We will accomplish this in the transform
parameter.
For each media type, we will need a set of conversions, as illustrated in the following tree:
/avatar
/avatar-360
/video
/poster
/poster-360
/360
/720
We will define these conversions in the conversions
parameter.
Here is how our Channel
class will be defined:
namespace App\Models;
use Elegantly\Media\Concerns\HasMedia;
use Elegantly\Media\MediaCollection;
use Elegantly\Media\MediaConversion;
use Elegantly\Media\Enums\MediaType;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Spatie\Image\Enums\Fit;
use \App\Jobs\Media\OptimizedImageConversionJob;
use Elegantly\Media\Models\Media;
use Elegantly\Media\Contracts\InteractWithMedia;
use Illuminate\Contracts\Support\Arrayable;
use Elegantly\Media\Definitions\MediaConversionImage;
use Elegantly\Media\Definitions\MediaConversionPoster;
class Channel extends Model implements InteractWithMedia
{
use HasMedia;
public function registerMediaCollections(): Arrayable|iterable|null;
{
return [
new MediaCollection(
name: 'avatar',
acceptedMimeTypes: [
'image/jpeg', 'image/png', 'image/gif', 'image/webp',
],
transform: function($file){
Image::load($file->getRealPath())
->fit(Fit::Crop, 500, 500)
->optimize()
->save();
},
conversions: [
new MediaConversionImage(
name: '360',
width: 360
),
],
)
new MediaCollection(
name: 'videos',
acceptedMimeTypes: [
'video/mp4', 'video/webm', 'video/ogg', 'video/quicktime',
],
conversions: [
new MediaConversionPoster(
name: 'poster',
conversions: [
new MediaConversionImage(
name: '360',
width: 360
),
],
),
new MediaConversionVideo(
name: '360',
width: 360
),
new MediaConversionVideo(
name: '720',
width: 720
),
],
)
];
}
}
From now, we will be able to store files in the easiest way possible:
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ChannelAvatarController extends Controller
{
function function store(Request $request, Channel $channel)
{
$channel->addMedia(
file: $request->file('avatar'),
collectionName: 'avatar',
name: "{$channel->name}-avatar",
)
}
}
namespace App\Livewire;
use Livewire\Features\SupportFileUploads\TemporaryUploadedFile;
use Livewire\WithFileUploads;
use Livewire\Component;
class ImageUploader extends Component
{
use WithFileUploads;
function function save()
{
/** @var TemporaryUploadedFile */
$file = $this->avatar;
$this->channel->addMedia(
file: $file->getRealPath(),
collectionName: 'avatar',
name: "{$channel->name}-avatar",
)
}
}
You can install the package via composer:
composer require elegantly/laravel-media
You have to publish and run the migrations with:
php artisan vendor:publish --tag="laravel-media-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="laravel-media-config"
This is the contents of the published config file:
use Elegantly\Media\Jobs\DeleteModelMediaJob;
use Elegantly\Media\Models\Media;
return [
/**
* The media model
* Define your own model here by extending \Elegantly\Media\Models\Media::class
*/
'model' => Media::class,
/**
* The path used to store temporary file copy for conversions
* This will be used with storage_path() function
*/
'temporary_storage_path' => 'app/tmp/media',
/**
* The default disk used for storing files
*/
'disk' => env('MEDIA_DISK', env('FILESYSTEM_DISK', 'local')),
/**
* Determine if media should be deleted with the model
* when using the HasMedia Trait
*/
'delete_media_with_model' => true,
/**
* Determine if media should be deleted with the model
* when it is soft deleted
*/
'delete_media_with_trashed_model' => false,
/**
* Deleting a large number of media attached to a model can be time-consuming
* or even fail (e.g., cloud API error, permissions, etc.)
* For performance and monitoring, when a model with the HasMedia trait is deleted,
* each media is individually deleted inside a job.
*/
'delete_media_with_model_job' => DeleteModelMediaJob::class,
/**
* The default collection name
*/
'default_collection_name' => 'default',
/**
* Prefix for the generated path of files
* Set to null if you do not want any prefix
* To fully customize the generated default path, extend the Media model and override the generateBasePath method
*/
'generated_path_prefix' => null,
/**
* Customize the queue connection used when dispatching conversion jobs
*/
'queue_connection' => env('QUEUE_CONNECTION', 'sync'),
/**
* Customize the queue used when dispatching conversion jobs
* null will fall back to the default Laravel queue
*/
'queue' => null,
];
Optionally, you can publish the views using
php artisan vendor:publish --tag="laravel-media-views"
There are two essential concepts to understand, both of which are associated with the Model and its media:
-
Media Collection: This defines a group of media with its specific settings (the group can only contain one or more media). For example, avatar, thumbnail, and upload are all media collections.
-
Media Conversion: This defines a file conversion of a particular media item. For instance, a 720p version of a larger 1440p video, a WebP or PNG conversion of an image, are all examples of media conversions. Notably, a media conversion can also have its own media conversions.
This package is designed to associate media with a model, but it can also be used without any model association.
First, you need to add the HasMedia
trait and the InteractWithMedia
interface to your Model:
namespace App\Models;
use Elegantly\Media\Concerns\HasMedia;
use Illuminate\Database\Eloquent\Model;
use Elegantly\Media\Contracts\InteractWithMedia;
class Channel extends Model implements InteractWithMedia
{
use HasMedia;
}
You can then define your media collections in the registerMediaCollections
method:
namespace App\Models;
use Elegantly\Media\Concerns\HasMedia;
use Elegantly\Media\MediaCollection;
use Illuminate\Database\Eloquent\Model;
use Elegantly\Media\Contracts\InteractWithMedia;
use Illuminate\Contracts\Support\Arrayable;
class Channel extends Model implements InteractWithMedia
{
use HasMedia;
public function registerMediaCollections(): Arrayable|iterable|null;
{
return [
new MediaCollection(
name: 'avatar',
acceptedMimeTypes: [
'image/jpeg', 'image/png', 'image/gif', 'image/webp',
],
)
new MediaCollection(
name: 'videos',
acceptedMimeTypes: [
'video/mp4', 'video/webm', 'video/ogg', 'video/quicktime',
],
)
];
}
}
This package provides common converions to simplify your work:
MediaConversionImage
: This conversion optimizes, resizes, or converts any image usingspatie/image
.MediaConversionVideo
: This conversion optimizes, resizes, or converts any video usingpbmedia/laravel-ffmpeg
.MediaConversionAudio
: This conversion optimizes, resizes, converts or extract any audio usingpbmedia/laravel-ffmpeg
.MediaConversionPoster
: This conversion extracts a poster usingpbmedia/laravel-ffmpeg
.
namespace App\Models;
use Elegantly\Media\Concerns\HasMedia;
use Elegantly\Media\MediaCollection;
use Elegantly\Media\MediaConversion;
use Elegantly\Media\Enums\MediaType;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Spatie\Image\Enums\Fit;
use \App\Jobs\Media\OptimizedImageConversionJob;
use Elegantly\Media\Models\Media;
use Elegantly\Media\Contracts\InteractWithMedia;
use Illuminate\Contracts\Support\Arrayable;
use Elegantly\Media\Support\ResponsiveImagesConversionsPreset;
class Channel extends Model implements InteractWithMedia
{
use HasMedia;
public function registerMediaCollections(): Arrayable|iterable|null;
{
return [
new MediaCollection(
name: 'avatar',
acceptedMimeTypes: [
'image/jpeg', 'image/png', 'image/gif', 'image/webp',
],
conversions: [
// using preset conversion definition
new MediaConversionImage(
name: '360',
width: 360,
),
// using custom conversion definition
new MediaConversionDefinition(
name: 'webp',
when: fn($media, $parent) => $media->type === MediaType::Image,
handle: function($media, $parent, $file, $filesystem, $temporaryDirectory){
$target = $filesystem->path("{$media->name}.webp");
Image::load($filesystem->path($file))
->optimize($this->optimizerChain)
->save($target);
return $media->addConversion(
file: $target,
conversionName: $this->name,
parent: $parent,
);
}
),
]
)
new MediaCollection(
name: 'videos',
acceptedMimeTypes: [
'video/mp4', 'video/webm', 'video/ogg', 'video/quicktime',
],
conversions: [
new MediaConversionAudio(
name: 'audio'
),
new MediaConversionPoster(
name: 'poster'
),
]
)
];
}
}
You can define your own Media model to use with the library.
First, create your own model class:
namespace App\Models;
use Elegantly\Media\Models\Media as ElegantlyMedia;
class Media extends ElegantlyMedia
{
// ...
}
Then, update the config
file:
use App\Models\Media;
return [
'model' => Media::class,
// ...
];
The library is typed with generics, so you can use your own Media model seamlessly:
namespace App\Models;
use App\Models\Media;
use Elegantly\Media\Concerns\HasMedia;
use Elegantly\Media\Contracts\InteractWithMedia;
/**
* @implements InteractWithMedia<Media>
*/
class Post extends Model implements InteractWithMedia
{
/** @use HasMedia<Media> **/
use HasMedia;
// ...
}
composer test
Please see the CHANGELOG for more information on recent changes.
Feel free to open an issue or a discussion.
Please contact me to report security vulnerabilities.
The MIT License (MIT). Please see the License File for more information.