-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No video thumbnails #1703
Comments
@Shadowfied Video thumbnail feature require the Please try install the |
ffmpeg is already installed. |
What results do you get of |
I did build ffmpeg from source and I thought maybe that could be the culprit, but I have a friend who installed ffmpeg straight from pacman (Arch, Manjaro) and he has the same issue - no video thumbs. |
This is test script. (test.php) <?php
$tmp = 'test.mp4';
$file = 'test.png';
$ss = 6;
$cmd = sprintf('ffmpeg -ss 00:00:%.3f -vframes 1 -i %s -f image2 %s', $ss, escapeshellarg($tmp), escapeshellarg($file));
$o = array('Results:');
exec($cmd, $o);
echo join("<br>\n", $o);
|
@nao-pon |
Please try from download test.mp4 in the same directory as the test.php. |
How is |
I did put the files in the same directory. It worked with your updated command. Works fine. Got a test.png frame. |
@Shadowfied OK, I got it. It is a bug. I'll fix it. Thanks! 👍 |
@Shadowfied You can try nightly build until release 2.1.17. Thanks for your time! |
That fixed it. Huge thanks :D |
Hiya.
I just set up elFinder and I love it. It's great. Everything seems to work great, except that I'm not getting video thumbnails. Picture thumbnails work fine.
I'm running Debian 8.6 Jessie on Linux 3.16.-0-4 64, using nginx and PHP7.
I've Googled and searched but haven't found anyone with the same issue.
What do I do?
The text was updated successfully, but these errors were encountered: