phpvideotoolkit-v2
phpvideotoolkit-v2 copied to clipboard
PHP Video Toolkit version 2 helps take the voodoo out of ffmpeg and provides a convenient object oriented wrapper around the ffmpeg programme.
Hi, not sure how to install via composer. thanks
Hi, is possible to autodetect from metadata and fix orientation? Thanks
Is there support for HLS?
https://github.com/buggedcom/phpvideotoolkit-v2/blob/master/src/PHPVideoToolkit/Format.php#L121 Not passing $config object into FfmpegParser(), this causes issues unless Config is default config.
Hi, I'm trying to make thumbnails for user videos on my application. All went well on my localhost (running on windows platform) but when i transferred all code to live...
Need help with putting water mark on video, would be great if ratio can automatic adopt. Thank you
Hello @buggedcom , thank you for making these awesome things . i am trying to use phpvideotoolkit for extracting some screenshoots with an interval ( from zero to 1/5 of...
When multiple streams to single output, probe is displaying incorrect data. Solved by modifying ProgressHandlerPortable.php line 231 like below. ``` php $video_stream_count = preg_match_all('/\s*Stream\s*\#([0-9]+):[0-9]+s*\(...\)\s*:\s*Video\s*:/i', substr($raw_data, strpos($raw_data, 'Output #0'))); ```
Example: $process->addPreInputCommand('-i', $example_images_dir."P1110%d.jpg");
As far as I understand, 0 means no channel (i.e. mute) 1 means mono 2 means stereo 6 means 5.1. But sending in 0 in setAudioChannels gives the same video...