• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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