Download the PHP package finller/laravel-aws-mediaconvert without Composer

On this page you can find all versions of the php package finller/laravel-aws-mediaconvert. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-aws-mediaconvert

Bring AWS MediaConvert to Laravel

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This package provides an easy way to interact with AWS MediaConvert. It provides usefull presets for HLS, MP4 optimization and thumbnail.

The package is greatly inspired by the work of meemalabs and their similar package https://github.com/meemalabs/laravel-media-converter !

Installation

You can install the package via composer:

You can publish the config file with:

This is the contents of the published config file:

Usage

In the most basic way, this package provides a service which is a wrap around the aws sdk. So you can simply create a MediaConvert job by calling createJob like that.

But we also provid usefull HLS and MP4 presets that are optimized for the web. Here is a more advanced usage:

Convert any video to an optimized MP4:

Convert any video to an optimized Apple HLS set of files:

Perform multiple Conversion in 1 job:

Tracks MediaConvert jobs with webhooks

1. Register the webhook route in your app.

You can simply use our prebuilt Webhook controller

In your web, api or any route file of yours, register the prebuilt route with the following macro. You can use any url

If you have put your route in a place where the VerifyCsrfToken is attached, you will have to add an exception just like that:

2. Create an SNS Topic

Go to https://console.aws.amazon.com/sns/v3/home (don't forget to select the right region for you).

On the right navigation bar, select "Topics" and click the "Create topic" button on your right. For the Type, choose "Standard" and give a name to your Topic juste like "MediaConvertJobUpdate" and click "Create topic"

Now, click "Create subscription" and select HTTPS for the "Protocol". Then enter the webhook route you have chosen like https://app.example/aws/webhooks/media-convert and confirm creation.

By default, AWS will have sent a post request to URL you defined in your "Subscription" setup. This package automatically handles the "confirmation" part. In case there is an issue and it is not confirmed yet, please click on the "Request confirmation" button.

3. Create an AWS CloudWatch rule

  1. Go to https://console.aws.amazon.com/cloudwatch/home (don't forget to select the right region for you).
  2. Open Events > Rule from the left navigation bar.
  3. Click Create Rule. In the Event Source panel select the "Event pattern" radio and "Events by Services" (it should be the default value) In "Service Name", choose "MediaConvert" et keep "All Events" for Event Type.

Your Event pattern preview should be

If you need to listen to only a specific queue for example, you can do it like that:

In the Target panel (on the right), click "Add Target" and select "SNS Topic". Then select the previously created SNS Topic.

That's all, this package will dispatch Laravel events for you to listen. But if you need more specific behavior, you can create your own controller by extending AwsMediaConvertWebhookController for example.

Testing

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-aws-mediaconvert with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
aws/aws-php-sns-message-validator Version ^1.8
aws/aws-sdk-php Version ^3.258.7
illuminate/contracts Version ^10.0|^11.0
spatie/laravel-package-tools Version ^1.14.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package finller/laravel-aws-mediaconvert contains the following files

Loading the files please wait ....