Package Data | |
---|---|
Maintainer Username: | tylercd100 |
Maintainer Contact: | tylercd100@gmail.com (Tyler Arbon) |
Package Create Date: | 2016-07-28 |
Package Last Update: | 2021-12-17 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-14 15:01:30 |
Package Statistics | |
---|---|
Total Downloads: | 279 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This package makes uploading videos to Viddler easier
Install via composer - In the terminal:
composer require leadthread/laravel-viddler-upload
Now add the following to the providers
array in your config/app.php
LeadThread\Viddler\Upload\Providers\Viddler::class
and this to the aliases
array in config/app.php
"Viddler" => LeadThread\Viddler\Upload\Facades\Viddler::class,
Then you will need to run these commands in the terminal in order to copy the config file
php artisan vendor:publish --provider="LeadThread\Viddler\Upload\Providers\Viddler"
This package includes a migration file. Before you run the migration you may want to take a look at config/viddler.php
and change the table
property to a table name that you would like to use. After that run the migration
php artisan migrate
function upload(Request $request)
{
$file = $request->file('file');
$name = "My Video Title";
/*
* Returns an Eloquent Model
*/
$model = Viddler::create($file, $name);
// Convert the file
$model->convert();
// Upload it
$model->upload();
// Check the encoding status
$model->check();
return $model;
}
Contributions are always welcome!