olelo / ffmpeg
Small helper to connect to olelo FFmpeg URLs in PHP
Installs: 1 735
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 6
Requires
- guzzlehttp/guzzle: ^6.3|^7.0
Requires (Dev)
- orchestra/testbench: ~3.0
- dev-master
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-dependabot/composer/symfony/http-kernel-4.4.50
- dev-dependabot/composer/guzzlehttp/guzzle-6.5.8
- dev-dependabot/composer/guzzlehttp/psr7-1.8.5
- dev-dependabot/composer/league/flysystem-1.1.4
- dev-dependabot/composer/laravel/framework-6.20.26
- dev-dependabot/composer/symfony/http-foundation-4.4.7
This package is not auto-updated.
Last update: 2025-03-11 11:19:35 UTC
README
This is a little helper to easily call olelo FFmpeg in your PHP projects.
Prerequisites
You need an olelo account and the FFmpeg module enabled.
Installation
You can install the package via composer:
composer require olelo/ffmpeg
If you use Laravel, add your olelo-FFmpeg token to .env as FFMPEG_API_TOKEN
.
Usage
$ffmpeg = new \Olelo\FFmpeg\FFmpeg('yourApiToken');
$convertedFile = $ffmpeg->convert('https://your-url.com/something', 'remove-silence');
Laravel
A Laravel service provider with a facade is contained in this package. It is automatically detected. You can use it like:
use Olelo\FFmpeg\Facades\FFmpeg;
$convertedFile = FFmpeg::convert('https://your-url.com/something', 'remove-silence');