githubEdit

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.

circle-info

If the capture frame value is set to null, Larupload will automatically capture a frame from the center of the video file.

Example 1:
<?php

return [
    'ffmpeg' => [
        'capture-frame' => null
    ]
];
Example 2:
<?php

return [
    'ffmpeg' => [
        'capture-frame' => 0.1
    ]
];
Example 3:
<?php

return [
    'ffmpeg' => [
        'capture-frame' => 2
    ]
];

Last updated