This package provides an integration with FFmpeg for Laravel 6.0 and higher. Laravel's Filesystem handles the storage of the files.
Hey! We've built a Docker-based deployment tool to launch apps and sites fully containerized. You can find all features and the roadmap on our website, and we are on Twitter as well!
We proudly support the community by developing Laravel packages and giving them away for free. Keeping track of issues and pull requests takes time, but we're happy to help! If this package saves you time or if you're relying on it professionally, please consider supporting the maintenance and development.
You can install the package via composer:
composer require pbmedia/laravel-ffmpeg
Add the Service Provider and Facade to your app.php
config file if you're not using Package Discovery.
// config/app.php
'providers' => [
...
ProtoneMedia\LaravelFFMpeg\Support\ServiceProvider::class,
...
];
'aliases' => [
...
'FFMpeg' => ProtoneMedia\LaravelFFMpeg\Support\FFMpeg::class
...
];
Publish the config file using the artisan CLI tool:
php artisan vendor:publish --provider="ProtoneMedia\LaravelFFMpeg\Support\ServiceProvider"
ProtoneMedia\LaravelFFMpeg
, the facade has been renamed to ProtoneMedia\LaravelFFMpeg\Support\FFMpeg
, and the Service Provider has been renamed to ProtoneMedia\LaravelFFMpeg\Support\ServiceProvider
.map
and filter_complex
features. It might be sufficient to replace all calls to addFilter
with addLegacyFilter
, but some filters should be migrated manually. Please read the documentation on HLS to find out more about adding filters.Convert an audio or video file:
FFMpeg::fromDisk('songs')
->open('yesterday.mp3')
->export()
->toDisk('converted_songs')
->inFormat(new \FFMpeg\Format\Audio\Aac)
->save('yesterday.aac');
Instead of the fromDisk()
method you can also use the fromFilesystem()
method, where $filesystem
is an instance of Illuminate\Contracts\Filesystem\Filesystem
.
$media = FFMpeg::fromFilesystem($filesystem)->open('yesterday.mp3');
You can monitor the transcoding progress. Use the onProgress
method to provide a callback, which gives you the completed percentage. In previous versions of this package you had to pass the callback to the format object.
FFMpeg::open('steve_howe.mp4')
->export()
->onProgress(function ($percentage) {
echo "{$percentage}% transcoded";
});
As of version 7.0, the callback also exposes $remaining
(in seconds) and $rate
:
FFMpeg::open('steve_howe.mp4')
->export()
->onProgress(function ($percentage, $remaining, $rate) {
echo "{$remaining} seconds left at rate: {$rate}";
});
You can open files from the web by using the openUrl
method. You can specify custom HTTP headers with the optional second parameter:
FFMpeg::openUrl('https://videocoursebuilder.com/lesson-1.mp4');
FFMpeg::openUrl('https://videocoursebuilder.com/lesson-2.mp4', [
'Authorization' => 'Basic YWRtaW46MTIzNA==',
]);
When the encoding fails, a ProtoneMedia\LaravelFFMpeg\Exporters\EncodingException
shall be thrown, which extends the underlying FFMpeg\Exception\RuntimeException
class. This class has two methods that can help you identify the problem. Using the getCommand
method, you can get the executed command with all parameters. The getErrorOutput
method gives you a full output log.
For legacy reasons, the message of the exception is always Encoding failed. You can replace this message with a more informative message by updating the set_command_and_error_output_on_exception
configuration key to true
.
try {
FFMpeg::open('yesterday.mp3')
->export()
->inFormat(new Aac)
->save('yesterday.aac');
} catch (EncodingException $exception) {
$command = $exception->getCommand();
$errorLog = $exception->getErrorOutput();
}
You can add filters through a Closure
or by using PHP-FFMpeg's Filter objects:
use FFMpeg\Filters\Video\VideoFilters;
FFMpeg::fromDisk('videos')
->open('steve_howe.mp4')
->addFilter(function (VideoFilters $filters) {
$filters->resize(new \FFMpeg\Coordinate\Dimension(640, 480));
})
->export()
->toDisk('converted_videos')
->inFormat(new \FFMpeg\Format\Video\X264)
->save('small_steve.mkv');
// or
$start = \FFMpeg\Coordinate\TimeCode::fromSeconds(5)
$clipFilter = new \FFMpeg\Filters\Video\ClipFilter($start);
FFMpeg::fromDisk('videos')
->open('steve_howe.mp4')
->addFilter($clipFilter)
->export()
->toDisk('converted_videos')
->inFormat(new \FFMpeg\Format\Video\X264)
->save('short_steve.mkv');
As of version 7.0, you can also call the addFilter
method after the export
method:
use FFMpeg\Filters\Video\VideoFilters;
FFMpeg::fromDisk('videos')
->open('steve_howe.mp4')
->export()
->toDisk('converted_videos')
->inFormat(new \FFMpeg\Format\Video\X264)
->addFilter(function (VideoFilters $filters) {
$filters->resize(new \FFMpeg\Coordinate\Dimension(640, 480));
})
->save('small_steve.mkv');
Since resizing is a common operation, we've added a dedicated method for it:
FFMpeg::open('steve_howe.mp4')
->export()
->resize(640, 480);
The first argument is the width, and the second argument the height. The optional third argument is the mode. You can choose between fit
(default), inset
, width
or height
. The optional fourth argument is a boolean whether or not to force the use of standards ratios. You can find about these modes in the FFMpeg\Filters\Video\ResizeFilter
class.
Sometimes you don't want to use the built-in filters. You can apply your own filter by providing a set of options. This can be an array or multiple strings as arguments:
FFMpeg::fromDisk('videos')
->open('steve_howe.mp4')
->addFilter(['-itsoffset', 1]);
// or
FFMpeg::fromDisk('videos')
->open('steve_howe.mp4')
->addFilter('-itsoffset', 1);
As of version 7.3, you can easily add a watermark using the addWatermark
method. With the WatermarkFactory
, you can open your watermark file from a specific disk, just like opening an audio or video file. When you discard the fromDisk
method, it uses the default disk specified in the filesystems.php
configuration file.
After opening your watermark file, you can position it with the top
, right
, bottom
, and left
methods. The first parameter of these methods is the offset, which is optional and can be negative.
use ProtoneMedia\LaravelFFMpeg\Filters\WatermarkFactory;
FFMpeg::fromDisk('videos')
->open('steve_howe.mp4')
->addWatermark(function(WatermarkFactory $watermark) {
$watermark->fromDisk('local')
->open('logo.png')
->right(25)
->bottom(25);
});
Instead of using the position methods, you can also use the horizontalAlignment
and verticalAlignment
methods.
For horizontal alignment, you can use the WatermarkFactory::LEFT
, WatermarkFactory::CENTER
and WatermarkFactory::RIGHT
constants. For vertical alignment, you can use the WatermarkFactory::TOP
, WatermarkFactory::CENTER
and WatermarkFactory::BOTTOM
constants. Both methods take an optional second parameter, which is the offset.
FFMpeg::open('steve_howe.mp4')
->addWatermark(function(WatermarkFactory $watermark) {
$watermark->open('logo.png')
->horizontalAlignment(WatermarkFactory::LEFT, 25)
->verticalAlignment(WatermarkFactory::TOP, 25);
});
The WatermarkFactory
also supports opening files from the web with the openUrl
method. It supports custom HTTP headers as well.
FFMpeg::open('steve_howe.mp4')
->addWatermark(function(WatermarkFactory $watermark) {
$watermark->openUrl('https://videocoursebuilder.com/logo.png');
// or
$watermark->openUrl('https://videocoursebuilder.com/logo.png', [
'Authorization' => 'Basic YWRtaW46MTIzNA==',
]);
});
If you want more control over the GET request, you can pass in an optional third parameter, which gives you the Curl resource.
$watermark->openUrl('https://videocoursebuilder.com/logo.png', [
'Authorization' => 'Basic YWRtaW46MTIzNA==',
], function($curl) {
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
});
This package can manipulate watermarks by using Spatie's Image package. To get started, install the package with Composer:
composer require spatie/image
Now you can chain one more manipulation methods on the WatermarkFactory
instance:
FFMpeg::open('steve_howe.mp4')
->addWatermark(function(WatermarkFactory $watermark) {
$watermark->open('logo.png')
->right(25)
->bottom(25)
->width(100)
->height(100)
->greyscale();
});
Check out the documentation for all available methods.
This package comes with a ProtoneMedia\LaravelFFMpeg\FFMpeg\CopyFormat
class that allows you to export a file without transcoding the streams. You might want to use this to use another container:
use ProtoneMedia\LaravelFFMpeg\FFMpeg\CopyFormat;
FFMpeg::open('video.mp4')
->export()
->inFormat(new CopyFormat)
->save('video.mkv');
// The 'fromDisk()' method is not required, the file will now
// be opened from the default 'disk', as specified in
// the config file.
FFMpeg::open('my_movie.mov')
// export to FTP, converted in WMV
->export()
->toDisk('ftp')
->inFormat(new \FFMpeg\Format\Video\WMV)
->save('my_movie.wmv')
// export to Amazon S3, converted in X264
->export()
->toDisk('s3')
->inFormat(new \FFMpeg\Format\Video\X264)
->save('my_movie.mkv');
// you could even discard the 'toDisk()' method,
// now the converted file will be saved to
// the same disk as the source!
->export()
->inFormat(new FFMpeg\Format\Video\WebM)
->save('my_movie.webm')
// optionally you could set the visibility
// of the exported file
->export()
->inFormat(new FFMpeg\Format\Video\WebM)
->withVisibility('public')
->save('my_movie.webm')
FFMpeg::fromDisk('videos')
->open('steve_howe.mp4')
->getFrameFromSeconds(10)
->export()
->toDisk('thumnails')
->save('FrameAt10sec.png');
// Instead of the 'getFrameFromSeconds()' method, you could
// also use the 'getFrameFromString()' or the
// 'getFrameFromTimecode()' methods:
$media = FFMpeg::open('steve_howe.mp4');
$frame = $media->getFrameFromString('00:00:13.37');
// or
$timecode = new FFMpeg\Coordinate\TimeCode(...);
$frame = $media->getFrameFromTimecode($timecode);
You can also get the raw contents of the frame instead of saving it to the filesystem:
$contents = FFMpeg::open('video.mp4')
->getFrameFromSeconds(2)
->export()
->getFrameContents();
Chaining multiple conversions works because the save
method of the MediaExporter
returns a fresh instance of the MediaOpener
. You can use this to loop through items, for example, to exports multiple frames from one video:
$mediaOpener = FFMpeg::open('video.mp4');
foreach ([5, 15, 25] as $key => $seconds) {
$mediaOpener = $mediaOpener->getFrameFromSeconds($seconds)
->export()
->save("thumb_{$key}.png");
}
The MediaOpener
comes with an each
method as well. The example above could be refactored like this:
FFMpeg::open('video.mp4')->each([5, 15, 25], function ($ffmpeg, $seconds, $key) {
$ffmpeg->getFrameFromSeconds($seconds)->export()->save("thumb_{$key}.png");
});
You can create a timelapse from a sequence of images by using the asTimelapseWithFramerate
method on the exporter
FFMpeg::open('feature_%04d.png')
->export()
->asTimelapseWithFramerate(1)
->inFormat(new X264)
->save('timelapse.mp4');
As of version 7.0 you can open multiple inputs, even from different disks. This uses FFMpeg's map
and filter_complex
features. You can open multiple files by chaining the open
method of by using an array. You can mix inputs from different disks.
FFMpeg::open('video1.mp4')->open('video2.mp4');
FFMpeg::open(['video1.mp4', 'video2.mp4']);
FFMpeg::fromDisk('uploads')
->open('video1.mp4')
->fromDisk('archive')
->open('video2.mp4');
When you open multiple inputs, you have to add mappings so FFMpeg knows how to route them. This package provides a addFormatOutputMapping
method, which takes three parameters: the format, the output, and the output labels of the -filter_complex
part.
The output (2nd argument) should be an instanceof ProtoneMedia\LaravelFFMpeg\Filesystem\Media
. You can instantiate with the make
method, call it with the name of the disk and the path (see example).
Check out this example, which maps separate video and audio inputs into one output.
FFMpeg::fromDisk('local')
->open(['video.mp4', 'audio.m4a'])
->export()
->addFormatOutputMapping(new X264, Media::make('local', 'new_video.mp4'), ['0:v', '1:a'])
->save();
This is an example from the underlying library:
// This code takes 2 input videos, stacks they horizontally in 1 output video and
// adds to this new video the audio from the first video. (It is impossible
// with a simple filter graph that has only 1 input and only 1 output).
FFMpeg::fromDisk('local')
->open(['video.mp4', 'video2.mp4'])
->export()
->addFilter('[0:v][1:v]', 'hstack', '[v]') // $in, $parameters, $out
->addFormatOutputMapping(new X264, Media::make('local', 'stacked_video.mp4'), ['0:a', '[v]'])
->save();
Just like single inputs, you can also pass a callback to the addFilter
method. This will give you an instance of \FFMpeg\Filters\AdvancedMedia\ComplexFilters
:
use FFMpeg\Filters\AdvancedMedia\ComplexFilters;
FFMpeg::open(['video.mp4', 'video2.mp4'])
->export()
->addFilter(function(ComplexFilters $filters) {
// $filters->watermark(...);
});
Opening files from the web works similarly. You can pass an array of URLs to the openUrl
method, optionally with custom HTTP headers.
FFMpeg::openUrl([
'https://videocoursebuilder.com/lesson-3.mp4',
'https://videocoursebuilder.com/lesson-4.mp4',
]);
FFMpeg::openUrl([
'https://videocoursebuilder.com/lesson-3.mp4',
'https://videocoursebuilder.com/lesson-4.mp4',
], [
'Authorization' => 'Basic YWRtaW46MTIzNA==',
]);
If you want to use another set of HTTP headers for each URL, you can chain the openUrl
method:
FFMpeg::openUrl('https://videocoursebuilder.com/lesson-5.mp4', [
'Authorization' => 'Basic YWRtaW46MTIzNA==',
])->openUrl('https://videocoursebuilder.com/lesson-6.mp4', [
'Authorization' => 'Basic bmltZGE6NDMyMQ==',
]);
FFMpeg::fromDisk('local')
->open(['video.mp4', 'video2.mp4'])
->export()
->concatWithoutTranscoding()
->save('concat.mp4');
FFMpeg::fromDisk('local')
->open(['video.mp4', 'video2.mp4'])
->export()
->inFormat(new X264)
->concatWithTranscoding($hasVideo = true, $hasAudio = true)
->save('concat.mp4');
With the Media
class you can determinate the duration of a file:
$media = FFMpeg::open('wwdc_2006.mp4');
$durationInSeconds = $media->getDurationInSeconds(); // returns an int
$durationInMiliseconds = $media->getDurationInMiliseconds(); // returns a float
When opening or saving files from or to a remote disk, temporary files will be created on your server. After you're done exporting or processing these files, you could clean them up by calling the cleanupTemporaryFiles()
method:
FFMpeg::cleanupTemporaryFiles();
By default, the root of the temporary directories is evaluated by PHP's sys_get_temp_dir()
method, but you can modify it by setting the temporary_files_root
configuration key to a custom path.
You can create a M3U8 playlist to do HLS.
$lowBitrate = (new X264)->setKiloBitrate(250);
$midBitrate = (new X264)->setKiloBitrate(500);
$highBitrate = (new X264)->setKiloBitrate(1000);
FFMpeg::fromDisk('videos')
->open('steve_howe.mp4')
->exportForHLS()
->setSegmentLength(10) // optional
->setKeyFrameInterval(48) // optional
->addFormat($lowBitrate)
->addFormat($midBitrate)
->addFormat($highBitrate)
->save('adaptive_steve.m3u8');
The addFormat
method of the HLS exporter takes an optional second parameter which can be a callback method. This allows you to add different filters per format. First, check out the Multiple inputs section to understand how complex filters are handled.
You can use the addFilter
method to add a complex filter (see $lowBitrate
example). Since the scale
filter is used a lot, there is a helper method (see $midBitrate
example). You can also use a callable to get access to the ComplexFilters
instance. The package provides the $in
and $out
arguments so you don't have to worry about it (see $highBitrate
example).
As of version 7.0, HLS export is built using FFMpeg's map
and filter_complex
features. This is a breaking change from previous versions which performed a single export for each format. If you're upgrading, replace the addFilter
calls with addLegacyFilter
calls and verify the result (see $superBitrate
example). Not all filters will work this way and some need to be upgraded manually.
$lowBitrate = (new X264)->setKiloBitrate(250);
$midBitrate = (new X264)->setKiloBitrate(500);
$highBitrate = (new X264)->setKiloBitrate(1000);
$superBitrate = (new X264)->setKiloBitrate(1500);
FFMpeg::open('steve_howe.mp4')
->exportForHLS()
->addFormat($lowBitrate, function($media) {
$media->addFilter('scale=640:480');
})
->addFormat($midBitrate, function($media) {
$media->scale(960, 720);
})
->addFormat($highBitrate, function ($media) {
$media->addFilter(function ($filters, $in, $out) {
$filters->custom($in, 'scale=1920:1200', $out); // $in, $parameters, $out
});
})
->addFormat($superBitrate, function($media) {
$media->addLegacyFilter(function ($filters) {
$filters->resize(new \FFMpeg\Coordinate\Dimension(2560, 1920));
});
})
->save('adaptive_steve.m3u8');
You can use a custom pattern to name the segments and playlists. The useSegmentFilenameGenerator
gives you 5 arguments. The first, second and third argument provide information about the basename of the export, the format of the current iteration and the key of the current iteration. The fourth argument is a callback you should call with your segments pattern. The fifth argument is a callback you should call with your playlist pattern. Note that this is not the name of the primary playlist, but the name of the playlist of each format.
FFMpeg::fromDisk('videos')
->open('steve_howe.mp4')
->exportForHLS()
->useSegmentFilenameGenerator(function ($name, $format, $key, callable $segments, callable $playlist) {
$segments("{$name}-{$format}-{$key}-%03d.ts");
$playlist("{$name}-{$format}-{$key}.m3u8");
});
As of version 7.5, you can encrypt each HLS segment using AES-128 encryption. To do this, call the withEncryptionKey
method on the HLS exporter with a key. We provide a generateEncryptionKey
helper method on the HLSExporter
class to generate a key. Make sure you store the key well, as the exported result is worthless without the key. By default, the filename of the key is secret.key
, but you can change that with the optional second parameter of the withEncryptionKey
method.
use ProtoneMedia\LaravelFFMpeg\Exporters\HLSExporter;
$encryptionKey = HLSExporter::generateEncryptionKey();
FFMpeg::open('steve_howe.mp4')
->exportForHLS()
->withEncryptionKey($encryptionKey)
->addFormat($lowBitrate)
->addFormat($midBitrate)
->addFormat($highBitrate)
->save('adaptive_steve.m3u8');
To secure your HLS export even further, you can rotate the key on each exported segment. By doing so, it will generate multiple keys that you'll need to store. Use the withRotatingEncryptionKey
method to enable this feature and provide a callback that implements the storage of the keys.
FFMpeg::open('steve_howe.mp4')
->exportForHLS()
->withRotatingEncryptionKey(function ($filename, $contents) {
$videoId = 1;
// use this callback to store the encryption keys
Storage::disk('secrets')->put($videoId . '/' . $filename, $contents);
// or...
DB::table('hls_secrets')->insert([
'video_id' => $videoId,
'filename' => $filename,
'contents' => $contents,
]);
})
->addFormat($lowBitrate)
->addFormat($midBitrate)
->addFormat($highBitrate)
->save('adaptive_steve.m3u8');
The withRotatingEncryptionKey
method has an optional second argument to set the number of segments that use the same key. This defaults to 1
.
FFMpeg::open('steve_howe.mp4')
->exportForHLS()
->withRotatingEncryptionKey($callable, 10);
To make working with encrypted HLS even better, we've added a DynamicHLSPlaylist
class that modifies playlists on-the-fly and specifically for your application. This way, you can add your authentication and authorization logic. As we're using a plain Laravel controller, you can use features like Gates and Middleware.
In this example, we've saved the HLS export to the public
disk, and we've stored the encryption keys to the secrets
disk, which isn't publicly available. As the browser can't access the encryption keys, it won't play the video. Each playlist has paths to the encryption keys, and we need to modify those paths to point to an accessible endpoint.
This implementation consists of two routes. One that responses with an encryption key and one that responses with a modified playlist. The first route (video.key
) is relatively simple, and this is where you should add your additional logic.
The second route (video.playlist
) uses the DynamicHLSPlaylist
class. Call the dynamicHLSPlaylist
method on the FFMpeg
facade, and similar to opening media files, you can open a playlist utilizing the fromDisk
and open
methods. Then you must provide three callbacks. Each of them gives you a relative path and expects a full path in return. As the DynamicHLSPlaylist
class implements the Illuminate\Contracts\Support\Responsable
interface, you can return the instance.
The first callback (KeyUrlResolver) gives you the relative path to an encryption key. The second callback (MediaUrlResolver) gives you the relative path to a media segment (.ts files). The third callback (PlaylistUrlResolver) gives you the relative path to a playlist.
Now instead of using Storage::disk('public')->url('adaptive_steve.m3u8')
to get the full url to your primary playlist, you can use route('video.playlist', ['playlist' => 'adaptive_steve.m3u8'])
. The DynamicHLSPlaylist
class takes care of all the paths and urls.
Route::get('/video/secret/{key}', function ($key) {
return Storage::disk('secrets')->download($key);
})->name('video.key');
Route::get('/video/{playlist}', function ($playlist) {
return FFMpeg::dynamicHLSPlaylist()
->fromDisk('public')
->open($playlist)
->setKeyUrlResolver(function ($key) {
return route('video.key', ['key' => $key]);
})
->setMediaUrlResolver(function ($mediaFilename) {
return Storage::disk('public')->url($mediaFilename);
})
->setPlaylistUrlResolver(function ($playlistFilename) {
return route('video.playlist', ['playlist' => $playlistFilename]);
});
})->name('video.playlist');
Here you can find a Live Coding Session about HLS encryption:
https://www.youtube.com/watch?v=WlbzWoAcez4
You can get the raw process output by calling the getProcessOutput
method. Though the use-case is limited, you can use it to analyze a file (for example, with the volumedetect
filter). It returns a ProtoneMedia\LaravelFFMpeg\Support\ProcessOutput
class that has three methods: all
, errors
and output
. Each method returns an array with the corresponding lines.
$processOutput = FFMpeg::open('video.mp4')
->export()
->addFilter(['-filter:a', 'volumedetect', '-f', 'null'])
->getProcessOutput();
$processOutput->all();
$processOutput->errors();
$processOutput->out();
The Media object you get when you 'open' a file, actually holds the Media object that belongs to the underlying driver. It handles dynamic method calls as you can see here. This way all methods of the underlying driver are still available to you.
// This gives you an instance of ProtoneMedia\LaravelFFMpeg\MediaOpener
$media = FFMpeg::fromDisk('videos')->open('video.mp4');
// The 'getStreams' method will be called on the underlying Media object since
// it doesn't exists on this object.
$codec = $media->getStreams()->first()->get('codec_name');
If you want direct access to the underlying object, call the object as a function (invoke):
// This gives you an instance of ProtoneMedia\LaravelFFMpeg\MediaOpener
$media = FFMpeg::fromDisk('videos')->open('video.mp4');
// This gives you an instance of FFMpeg\Media\MediaTypeInterface
$baseMedia = $media();
The progress listener exposes the transcoded percentage, but the underlying package also has an internal AbstractProgressListener
that exposes the current pass and the current time. Though the use-case is limited, you might want to get access to this listener instance. You can do this by decorating the format with the ProgressListenerDecorator
. This feature is highly experimental, so be sure the test this thoroughly before using it in production.
use FFMpeg\Format\ProgressListener\AbstractProgressListener;
use ProtoneMedia\LaravelFFMpeg\FFMpeg\ProgressListenerDecorator;
$format = new \FFMpeg\Format\Video\X264;
$decoratedFormat = ProgressListenerDecorator::decorate($format);
FFMpeg::open('video.mp4')
->export()
->inFormat($decoratedFormat)
->onProgress(function () use ($decoratedFormat) {
$listeners = $decoratedFormat->getListeners(); // array of listeners
$listener = $listeners[0]; // instance of AbstractProgressListener
$listener->getCurrentPass();
$listener->getTotalPass();
$listener->getCurrentTime();
})
->save('new_video.mp4');
Since we can't get rid of some of the underlying options, you can interact with the final FFmpeg command by adding a callback to the exporter. You can add one or more callbacks by using the beforeSaving
method:
FFMpeg::open('video.mp4')
->export()
->inFormat(new X264)
->beforeSaving(function ($commands) {
$commands[] = '-hello';
return $commands;
})
->save('concat.mp4');
Note: this does not work with concatenation and frame exports
Here's a blog post that will help you get started with this package:
https://protone.media/en/blog/how-to-use-ffmpeg-in-your-laravel-projects
Here's a 20-minute overview how to get started with Video.js. It covers including Video.js from a CDN, importing it as an ES6 module with Laravel Mix (Webpack) and building a reusable Vue.js component.
https://www.youtube.com/watch?v=nA1Jy8BPjys
Please see CHANGELOG for more information about what has changed recently.
$ composer test
Please see CONTRIBUTING for details.
Laravel Analytics Event Tracking
: Laravel package to easily send events to Google Analytics.Laravel Blade On Demand
: Laravel package to compile Blade templates in memory.Laravel Cross Eloquent Search
: Laravel package to search through multiple Eloquent models.Laravel Eloquent Scope as Select
: Stop duplicating your Eloquent query scopes and constraints in PHP. This package lets you re-use your query scopes and constraints by adding them as a subquery.Laravel Eloquent Where Not
: This Laravel package allows you to flip/invert an Eloquent scope, or really any query constraint.Laravel Form Components
: Blade components to rapidly build forms with Tailwind CSS Custom Forms and Bootstrap 4. Supports validation, model binding, default values, translations, includes default vendor styling and fully customizable!Laravel Mixins
: A collection of Laravel goodies.Laravel Paddle
: Paddle.com API integration for Laravel with support for webhooks/events.Laravel Verify New Email
: This package adds support for verifying new email addresses: when a user updates its email address, it won't replace the old one until the new one is verified.Laravel WebDAV
: WebDAV driver for Laravel's Filesystem.If you discover any security-related issues, please email code@protone.media instead of using the issue tracker. Please do not email any questions, open an issue if you have a question.
The MIT License (MIT). Please see License File for more information.
一、安装ffmpeg #快速安装的脚本 wget https://raw.githubusercontent.com/q3aql/ffmpeg-install/master/ffmpeg-install chmod a+x ffmpeg-install ./ffmpeg-install --install release 二、安装laravel-ffmpeg 1. 执行composer命令 co
1.laravel根目录下composer安装ffmpeg ,不加版本号默认使用0.14版本 composer require php-ffmpeg/php-ffmpeg 2.安装EPEL Release,因为安装需要使用其他的repo源,所以需要EPEL支持 sudo yum install -y epel-release rpm sudo rpm --import /etc/pki/rpm
laravel 6.0安装php-ffmpeg/php-ffmpeg时报如下错误: ➜ bee-api git:(master) ✗ composer require php-ffmpeg/php-ffmpeg Using version ^0.14.0 for php-ffmpeg/php-ffmpeg ./composer.json has been updated Loading comp
写在前面 FFmpeg是一套可以用来记录、转换数字音频、视频,并能将其转化为流的开源计算机程序。 FFmpeg有非常强大的功能包括视频采集功能、视频格式转换、视频抓图、给视频加水印等。 在PHP中使用ffmpeg,可以用开源composer包 php-ffmpeg,不过使用前提是安装了ffmpeg。 1. 安装ffmpeg 另一篇博文有写,ubuntu安装ffmpeg,centos安装ffmpeg
先安装php拓展 https://github.com/PHP-FFMpeg/PHP-FFMpeg/ <?php namespace App\Jobs; use FFMpeg; use Illuminate\Bus\Queueable; use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\File; use Il
1、首先要安装PHP-FFMpeg扩展,这里是通过composer下载;大家可以看自己习惯来决定。 composer require php-ffmpeg/php-ffmpeg 2、下载完成后这里要注意一个use的使用 use FFMpeg\FFMpeg; use FFMpeg\Coordinate\TimeCode; 3、注意试列代码 !!!!(这里获取视频的基本信息) //1.获取ffmpeg
1、安装PHP-FFMpeg扩展 composer require php-ffmpeg/php-ffmpeg 2、use的引用 use FFMpeg\FFMpeg; use FFMpeg\Coordinate\TimeCode; 3、获取视频的基本信息 //1.获取ffmpeg实例 $ffmpeg = FFMpeg::create(array( 'ffmpeg.binaries'
Laravel 是一套简洁、优雅的PHP Web开发框架(PHP Web Framework)。它可以让你从面条一样杂乱的代码中解脱出来;它可以帮你构建一个完美的网络APP,而且每行代码都可以简洁、富于表达力。 功能特点 1、语法更富有表现力 你知道下面这行代码里 “true” 代表什么意思么? $uri = Uri::create(‘some/uri’, array(), array(), tr
我需要空间/Laravel权限的帮助。当我试图分配它给我错误哎呀,看起来像出了问题。 错误 Connection.php第761行中的QueryExcema:SQLSTATE[23000]:完整性约束冲突:1048列role_id不能为空(SQL:插入到(,)值(9,))
Laravel 作为现在最流行的 PHP 框架,其中的知识较多,所以单独拿出来写一篇。 简述 Laravel 的生命周期 Laravel 采用了单一入口模式,应用的所有请求入口都是 public/index.php 文件。 注册类文件自动加载器 : Laravel通过 composer 进行依赖管理,无需开发者手动导入各种类文件,而由自动加载器自行导入。 创建服务容器:从 bootstrap/ap
简介 Laravel Scout 为 Eloquent 模型 全文搜索提供了简单的,基于驱动的解决方案。通过使用模型观察者,Scout 会自动同步 Eloquent 记录的搜索索引。 目前,Scout 自带一个 Algolia 驱动;不过,编写自定义驱动很简单, 你可以轻松的通过自己的搜索实现来扩展 Scout。 安装 首先,通过 Composer 包管理器来安装 Scout: composer
简介 Laravel 致力于让整个 PHP 开发体验变得愉快, 包括你的本地开发环境。 Vagrant 提供了一种简单,优雅的方式来管理和配置虚拟机。 Laravel Homestead 是一个官方预封装的 Vagrant box,它为你提供了一个完美的开发环境,而无需在本地机器安装 PHP 、Web 服务器和其他服务器软件。不用担心会搞乱你的操作系统!Vagrant boxes 是一次性的。如果
WebStack-Laravel 一个开源的网址导航网站项目,具备完整的前后台,您可以拿来制作自己的网址导航。 部署 克隆代码: git clone https://github.com/hui-ho/WebStack-Laravel.git 安装依赖: composer installphp artisan key:generate 编辑配置: cp .env.example .env ...D