LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-17-2014, 03:23 AM   #1
PasBern
Member
 
Registered: Dec 2009
Location: Near Frankfurt, Germany
Distribution: Fedora Workstation / Silverblue 40, MacOS
Posts: 125

Rep: Reputation: 2
Unhappy WinFF error "Cannot find FFPlay"


Hi all,

first of all I'm on Sabayon Linux (a Gentoo derivative with its own package management system)


After the latest upgrade yesterday, WinFF stopped working that is extracting the audio track from video files which it nicely before. The error message is "Cannot find FFPlay"

Searching for a solution only got me threads in Ubuntu forums where people unsuccessfully compiled ffmpeg from source

All packages related to ffmpeg are installed. Still neither ffmpeg nor ffplay can be found on my system.

Code:
Sabayon ~ # equo search ffmpeg
╠  @@ Suche...
╠      @@ Paket: kde-base/ffmpegthumbs-4.12.1 Branch: 5, [sabayon-weekly] 
╠          Verfügbar:      Version: 4.12.1 ~ tag: NoTag ~ Version: 1
╠          Installiert:    Version: 4.12.1 ~ tag: NoTag ~ Version: 1
╠          Slot:           4
╠          Homepage:       http://www.kde.org/ 
╠          Beschreibung:   A FFmpeg based thumbnail Generator 
╠                          for Video Files. 
╠          Lizenz:         GPL-2
╠      @@ Paket: media-libs/ffmpegsource-2.19 Branch: 5, [sabayon-weekly] 
╠          Verfügbar:      Version: 2.19 ~ tag: NoTag ~ Version: 0
╠          Installiert:    Version: 2.19 ~ tag: NoTag ~ Version: 0
╠          Slot:           0
╠          Homepage:       https://github.com/FFMS/ffms2 
╠          Beschreibung:   A libav/ffmpeg based source library 
╠                          for easy frame accurate access 
╠          Lizenz:         MIT
╠      @@ Paket: media-plugins/gst-plugins-ffmpeg-0.10.13_p201211-r1 Branch: 5, [sabayon-weekly] 
╠          Verfügbar:      Version: 0.10.13_p201211-r1 ~ tag: NoTag ~ Version: 1
╠          Installiert:    Version: 0.10.13_p201211-r1 ~ tag: NoTag ~ Version: 1
╠          Slot:           0.10
╠          Homepage:       http://gstreamer.freedesktop.org/modules/gst-ffmpeg.html 
╠          Beschreibung:   FFmpeg based gstreamer plugin 
╠          Lizenz:         GPL-2
╠      @@ Paket: media-video/ffmpeg2theora-0.29-r1 Branch: 5, [sabayon-weekly] 
╠          Verfügbar:      Version: 0.29-r1 ~ tag: NoTag ~ Version: 1
╠          Installiert:    Version: 0.29-r1 ~ tag: NoTag ~ Version: 1
╠          Slot:           0
╠          Homepage:       http://www.v2v.cc/~j/ffmpeg2theora/ 
╠          Beschreibung:   A simple converter to create Ogg 
╠                          Theora files. 
╠          Lizenz:         GPL-3
╠      @@ Paket: media-video/ffmpegthumbnailer-2.0.8 Branch: 5, [sabayon-weekly] 
╠          Verfügbar:      Version: 2.0.8 ~ tag: NoTag ~ Version: 3
╠          Installiert:    Version: 2.0.8 ~ tag: NoTag ~ Version: 3
╠          Slot:           0
╠          Homepage:       http://code.google.com/p/ffmpegthumbnailer/ 
╠          Beschreibung:   Lightweight video thumbnailer 
╠                          that can be used by file managers 
╠          Lizenz:         GPL-2
╠      @@ Paket: media-video/kffmpegthumbnailer-1.1.0-r2 Branch: 5, [sabayon-weekly] 
╠          Verfügbar:      Version: 1.1.0-r2 ~ tag: NoTag ~ Version: 1
╠          Installiert:    Version: 1.1.0-r2 ~ tag: NoTag ~ Version: 1
╠          Slot:           4
╠          Homepage:       http://code.google.com/p/ffmpegthumbnailer/ 
╠          Beschreibung:   A thumbnailer for KDE based on ffmpegthumbnailer 
╠          Lizenz:         GPL-2
╠      @@ Paket: virtual/ffmpeg-9 Branch: 5, [sabayon-weekly] 
╠          Verfügbar:      Version: 9 ~ tag: NoTag ~ Version: 0
╠          Installiert:    Version: 9 ~ tag: NoTag ~ Version: 0
╠          Slot:           0
╠          Beschreibung:   Virtual package for FFmpeg implementation 
╠          Lizenz:         
╠   Schlüsselwörter:  ffmpeg
╠   Gefunden:         7 Einträge

The configuration file ~/.winff/cfg.xml tells me that WinFF is looking for /usr/bin/ffmpeg and /usr/bin/ffplay to do its jobs.

Code:
<?xml version="1.0"?>
<CONFIG>
  <unix ffmpeg="/usr/bin/ffmpeg" ffplay="/usr/bin/ffplay" terminal="/usr/bin/gnome-terminal" termoptions="-x"/>
  <general pause="true" playsound="true" addfilesfolder="/home/pascal/Downloads/Youtube-Downloads/" currentpreset="MP3" showoptions="false" pass2="false"/>
  <window height="977" width="1920" top="27" left="0"/>
</CONFIG>
Well, these files do not exist (anymore?) since the upgrade. A reinstallation of the ffmpeg did not solve the issue.

Could anyone help me out here?
 
Old 02-18-2014, 03:01 AM   #2
PasBern
Member
 
Registered: Dec 2009
Location: Near Frankfurt, Germany
Distribution: Fedora Workstation / Silverblue 40, MacOS
Posts: 125

Original Poster
Rep: Reputation: 2
Wink

I got the problem solved:

Sabayon uses libav and not ffmpeg anymore.

So what needed to be done was to change the settings in ~/.winff/cfg.xml to /usr/bin/avconv and /usr/bin/avplay

The configuration now looks like that:

Code:
<?xml version="1.0"?>
<CONFIG>
  <unix ffmpeg="/usr/bin/avconv" ffplay="/usr/bin/avplay" terminal="/usr/bin/gnome-terminal" termoptions="-x"/>
  <general pause="true" playsound="true" addfilesfolder="/home/pascal/Downloads/Youtube-Downloads/Preloads/" currentpreset="MP3" showoptions="true" pass2="false"/>
  <window height="977" width="1920" top="27" left="0"/>
</CONFIG>
Hope this might be helpful to other people encountering the same issue
 
  


Reply

Tags
ffmpeg, sabayon


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
BASH:find out if volume "foo"/folder "goo" can be written to SilversleevesX Programming 2 08-28-2010 10:03 AM
error: Error for wireless request "Set Mode" (8B06) : invalid argument "roaming" penguin chick Linux - Wireless Networking 5 08-22-2008 01:16 PM
Error when using 'find' -- "WARNING: Hard link count is wrong..." xGreenmanx Linux - Software 6 03-11-2006 06:35 PM
E17 compile error edje cannot find "brushed.png" inkysplat Linux - Software 1 01-06-2006 12:48 AM
Can't install "glibmm" library. "configure" script can't find "sigc++-2.0&q kornerr Linux - General 4 05-10-2005 02:32 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 10:35 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration