dev-master
9999999-devVideo tools using FFMPEG
MIT
The Requires
The Development Requires
by Nick Mow
video encoding video processing video encoding
Video tools using FFMPEG
A mini library of tools to manipulate video files with FFMPEG. Use at your own risk. This is a master alpha build., (*2)
The recommended way to install Smoovie is through Composer., (*3)
{ "require": { "nm/smoovie": "dev-master" } }
Include composer's autoload file, (*4)
require_once '/path/to/vendor/autoload.php';
Import class in your scripts, (*5)
use NM\Smoovie\Smoovie;
Have fun :), (*6)
$file = '/path/to/video.mp4' $s = new Smoovie; $s->make($file); $duration = $s->duration(); $frames = $s->frames(); $fps = $s->fps(); $generate_thumbnail = $s->thumb(); $vid_trailer = $s->preview($output = null, $start = null, $seconds = null);
This project is licensed under the MIT license., (*7)
Video tools using FFMPEG
MIT
video encoding video processing video encoding