I am new to Laravel 4. I have installed php-ffmpeg
in my local Laravel setup, but I need help on how to use this ffmpeg with Laravel 4?
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
Assuming that you already have
ffmpeg
installed on your localhost server, then in Laravel, you need to set the paths for the ffmpeg and ffprobe binaries, like so:By doing so, then you can:
There are more examples provided in the PHP-FFMpeg documentation on github