• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Issue Installing ClipBucket but installation cannot find ffmpeg

  • Thread starter Deleted member 174786
  • Start date
D

Deleted member 174786

Guest
I am running the installation of ClipBucket and I have installed ffmpeg. I rerun the installation to refresh the requirements and it continues to show:

Unable to find ffmpeg

If I do a find of ffmpeg, I find it though:

:~$ sudo find / -type f -name "ffmpeg"
/opt/ffmpeg/bin/ffmpeg

I am using Ubuntu 14.04.4 LTS with Plesk 12.5.30 Update #45, last updated at Sept 12, 2016 06:27 AM. Do I need to do something with Plesk for this to be seen by the web page?

Anyone have any suggestions?

Thanks!
 
Try to create symlink to correct path with something like:

# ln -s /opt/ffmpeg/bin/ffmpeg /usr/local/bin/
 
Thank you for your quick reply. I did this as sudo and I reran the script. It still gives me the same message that ffmpeg was not found.
 
I'm not sure if this helps, but here is the php that is checking for the ffmpeg:

case "ffmpeg":
{
$ffmpeg_path = exec("which ffmpeg");
$ffmpeg_version = shell_output("$ffmpeg_path -version");

$version = false;
preg_match("/SVN-r([0-9]+)/i",$ffmpeg_version,$matches);
if(@$matches[1])
$version = 'r'.$matches[1];
preg_match("/version ([0-9.]+)/i",$ffmpeg_version,$matches);
if(@$matches[1])
$version = $matches[1];

if(!$version)
$return['err'] = _("Unable to find ffmpeg");
else
$return['msg'] = sprintf(_("Found FFMPEG %s : %s"),$version,$$ffmpeg_path);
}
break;

So, I checked the version:

/opt/ffmpeg/bin/ffmpeg -version
ffmpeg version N-80901-gfebc862 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
configuration: --extra-libs=-ldl --prefix=/opt/ffmpeg --mandir=/usr/share/man --enable-avresample --disable-debug --enable-nonfree --enable-gpl --enable-version3 --enable-libopencore-amrnb --enable-libopencore-amrwb --disable-decoder=amrnb --disable-decoder=amrwb --enable-libpulse --enable-libfreetype --enable-gnutls --enable-libx264 --enable-libx265 --enable-libfdk-aac --enable-libvorbis --enable-libmp3lame --enable-libopus --enable-libvpx --enable-libspeex --enable-libass --enable-avisynth --enable-libsoxr --enable-libxvid --enable-libvidstab
libavutil 55. 28.100 / 55. 28.100
libavcodec 57. 48.101 / 57. 48.101
libavformat 57. 41.100 / 57. 41.100
libavdevice 57. 0.102 / 57. 0.102
libavfilter 6. 47.100 / 6. 47.100
libavresample 3. 0. 0 / 3. 0. 0
libswscale 4. 1.100 / 4. 1.100
libswresample 2. 1.100 / 2. 1.100

I'm not sure if that helps.
 
And what is output of command

# which ffmpeg

?

Not sure how this issue related to Plesk...
 
/opt/ffmpeg/bin/ffmpeg -version
ffmpeg version N-80901-gfebc862 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
configuration: --extra-libs=-ldl --prefix=/opt/ffmpeg --mandir=/usr/share/man --enable-avresample --disable-debug --enable-nonfree --enable-gpl --enable-version3 --enable-libopencore-amrnb --enable-libopencore-amrwb --disable-decoder=amrnb --disable-decoder=amrwb --enable-libpulse --enable-libfreetype --enable-gnutls --enable-libx264 --enable-libx265 --enable-libfdk-aac --enable-libvorbis --enable-libmp3lame --enable-libopus --enable-libvpx --enable-libspeex --enable-libass --enable-avisynth --enable-libsoxr --enable-libxvid --enable-libvidstab
libavutil 55. 28.100 / 55. 28.100
libavcodec 57. 48.101 / 57. 48.101
libavformat 57. 41.100 / 57. 41.100
libavdevice 57. 0.102 / 57. 0.102
libavfilter 6. 47.100 / 6. 47.100
libavresample 3. 0. 0 / 3. 0. 0
libswscale 4. 1.100 / 4. 1.100
libswresample 2. 1.100 / 2. 1.100
 
It looks like ffmpeg version doesn't match by code checking part.
 
Back
Top