laravel-admin-ext / media-player
Intergrates mediaelement into laravel-admin
Installs: 48 169
Dependents: 0
Suggesters: 0
Security: 0
Stars: 31
Watchers: 2
Forks: 10
Open Issues: 9
Language:JavaScript
Requires
- php: >=7.0.0
- encore/laravel-admin: ~1.6
Requires (Dev)
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2024-10-17 17:35:33 UTC
README
This extension allows you to play video or audio on grid pages and show pages with the help of mediaelement.
Screenshots
Installation
composer require laravel-admin-ext/media-player php artisan vendor:publish --tag=laravel-admin-media-player
Usage
If you have a field foo
that stores the full url of the audio/video file, or the path under the disk configured by admin.upload.disk
, you can use it in the following way.
In the grid page:
// Add a play button to the current field column. After clicking it will open a modal to play the video file. $grid->foo()->video(); // Add an audio player to the current field column $grid->foo()->audio();
In show page:
// This field will be displayed as a video player $show->foo()->video(); // this field will be displayed as an audio player $show->foo()->audio();
If the field foo
is another path or a file path under another server, you can use the following settings.
$grid->foo()->video(['server' => 'http:www.foo.com/']);
This player feature of this extension is based on mediaelement and can be referenced API and Configuration Add more settings to the player.
For example, set the size of the player:
$grid->foo()->video(['videoWidth' => 720, 'videoHeight' => 480]);
Donate
If you feel that this project has saved you time, you may wish to support it ;)
License
Licensed under The MIT License (MIT).