Slackware This Forum is for the discussion of Slackware Linux.
|
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
02-23-2011, 10:34 PM
|
#1
|
|
Member
Registered: Apr 2009
Location: El Salvador
Distribution: Slackware -current
Posts: 164
Rep:
|
Trying to install FFMPEG?
Hello, i have been trying to install ffmpeg but i keep getting this error:
I'm using slapt-get by the way.
slapt-get --install ffmpeg
Reading Package Lists...Done
Excluding ffmpeg, use --ignore-dep to override
The following packages have unmet dependencies:
ffmpeg: Depends: libva >= 0.31.1+sds4-i486-3sl
The following packages have been EXCLUDED:
ffmpeg
0 upgraded, 0 reinstalled, 0 newly installed, 0 to remove, 1 not upgraded.
Done
root@Stigmata:/home/miguel# slapt-get --search libva
libva-0.31.1+sds4-i486-3sl [inst=yes]: LibVA (Video Acceleration Library)
so as you can see it complains that ffmpeg needs libva >= 0.31.1+sds4-i486-3sl but i actually have installed it already.
what do you think? what can i do?
Well this is solved, just use the slackbuild 
Last edited by michaelinux; 02-23-2011 at 11:06 PM.
|
|
|
|
02-23-2011, 10:45 PM
|
#2
|
|
Member
Registered: Feb 2010
Location: Chicago, IL
Distribution: Slackware64 14.0
Posts: 742
Rep:
|
are you sure you have the right version? the output says it needs 0.31.1 or higher, so maybe you have an earlier version installed
|
|
|
|
02-23-2011, 10:46 PM
|
#3
|
|
Member
Registered: Apr 2009
Location: El Salvador
Distribution: Slackware -current
Posts: 164
Original Poster
Rep:
|
Quote:
Originally Posted by Cultist
are you sure you have the right version? the output says it needs 0.31.1 or higher, so maybe you have an earlier version installed
|
yes i'm sure, see in this line i search for libva and it says i have it installed:
root@Stigmata:/home/miguel# slapt-get --search libva
libva-0.31.1+sds4-i486-3sl [inst=yes]: LibVA (Video Acceleration Library)
|
|
|
|
02-23-2011, 10:49 PM
|
#4
|
|
Member
Registered: Feb 2010
Location: Chicago, IL
Distribution: Slackware64 14.0
Posts: 742
Rep:
|
try using the slackbuild from slackbuilds.org. That might install better than with slapt-get.
http://slackbuilds.org/repository/13...imedia/ffmpeg/
edit: now that I look at it, libva isn't even on the dep list. So I don't know why its asking for that
Last edited by Cultist; 02-23-2011 at 10:50 PM.
|
|
|
|
02-23-2011, 11:01 PM
|
#5
|
|
Member
Registered: Apr 2009
Location: El Salvador
Distribution: Slackware -current
Posts: 164
Original Poster
Rep:
|
Quote:
Originally Posted by Cultist
|
yeah, weird isn't it?, I'm gonna try the slackbuild I'm pretty sure it will work.
|
|
|
|
02-24-2011, 01:22 AM
|
#6
|
|
Senior Member
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 1,950
|
this depends on the repository you've set in slaptget (slacky's one, probably) and can manifest a problem with that: you should probably report it there.
for ffmpeg, an alternative solution, can be Eric's all-in-one static package.
|
|
|
|
02-24-2011, 04:24 AM
|
#7
|
|
Member
Registered: Mar 2006
Location: Dyserth, Wales
Distribution: Slackware 13.37, Slackware 14.0
Posts: 254
Rep:
|
Quote:
Originally Posted by ponce
|
I had problems installing ffmpeg from slackbuilds because of a small problem with where documentation was supposed to go during the install. Partially sorted in this thread.
However the best advice, aslo offered in that thread, was to build from Eric's / Alien Bob's slackbuild which has made a big difference to various multimedia packages that rely on ffmpeg since it builds with a most of the optional features "on".
|
|
|
|
02-24-2011, 01:34 PM
|
#8
|
|
Member
Registered: Jun 2010
Location: Devon,UK
Distribution: Linux From Scratch, Slackware64,
Posts: 545
Rep: 
|
Why not install it from svn? ffmpeg is one of those apps that are very often updated and the svn version is always going to be the most up to date, once all the dependencies are sorted and the various configure options are set I found that the svn version was by for the best route.
This is my configure:
Code:
./configure --enable-libspeex --enable-libschroedinger --enable-libopenjpeg --enable-nonfree --enable-libxvid --arch=x86_64 --enable-libx264 --enable-gpl --enable-libvorbis --enable-libtheora --enable-libmp3lame --enable-libfaac --disable-ffserver --prefix=/usr --libdir=/usr/lib64 --enable-pthreads --enable-postproc --shlibdir=/usr/lib64 --enable-shared
Shared libdir has to be set other wise it defaults to lib and not lib64 ( I'm on a 64 bit system obviously )
|
|
|
|
02-24-2011, 03:35 PM
|
#9
|
|
Member
Registered: Oct 2007
Distribution: Slackware
Posts: 609
Rep:
|
Quote:
Originally Posted by Keith Hedger
Why not install it from svn? ffmpeg is one of those apps that are very often updated and the svn version is always going to be the most up to date, once all the dependencies are sorted and the various configure options are set I found that the svn version was by for the best route.
|
I agree completely, breakages are rare and benefits are huge. Mind you I think you mean the git FFmpeg  .
|
|
|
1 members found this post helpful.
|
02-25-2011, 12:32 PM
|
#10
|
|
Member
Registered: Jun 2010
Location: Devon,UK
Distribution: Linux From Scratch, Slackware64,
Posts: 545
Rep: 
|
Have they gone over to git then? I am still updating via svn, I havn't been to their hompage in a while in fact I did an svn update a couple of days ago,guess I better visit the homepage and see what's what.
|
|
|
|
02-25-2011, 02:04 PM
|
#11
|
|
Member
Registered: Jun 2010
Location: Devon,UK
Distribution: Linux From Scratch, Slackware64,
Posts: 545
Rep: 
|
Yep they've changed to git, I hate git I much prefer svn, oh well 
Thanks for the heads up on the change
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 02:02 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|