FFMpeg Capture Frame
Default: null
This property allows you to specify the time in seconds at which a frame should be captured from a video file during the upload process. You can set the capture frame value as null
, 0.1
, 2
, or any other desired value in seconds.
<?php
return [
'ffmpeg' => [
'capture-frame' => null
]
];
<?php
return [
'ffmpeg' => [
'capture-frame' => 0.1
]
];
<?php
return [
'ffmpeg' => [
'capture-frame' => 2
]
];
Last updated