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. |
|
 |
09-30-2009, 02:54 AM
|
#1
|
|
Member
Registered: Apr 2006
Location: Sweden
Distribution: Slackware64 13.1 multilib, 2.6.37.2
Posts: 101
Rep:
|
Running vlc 1.0.2 compiled from alien slackbuilds fail
After compiling and installing vlc 1.0.2 from alien's slackbuilds I get these messages after trying to run vlc (the program window does not show up at all):
Code:
[0x62c698] main libvlc error: no memcpy module matched "any"
[0x711a48] main interface error: no interface module matched "hotkeys,none"
[0x711a48] main interface error: no suitable interface module
[0x62c698] main libvlc error: interface "hotkeys,none" initialization failed
[0x711de8] main interface error: no interface module matched "inhibit,none"
[0x711de8] main interface error: no suitable interface module
[0x62c698] main libvlc error: interface "inhibit,none" initialization failed
[0x711af8] main interface error: no interface module matched "screensaver,none"
[0x711af8] main interface error: no suitable interface module
[0x62c698] main libvlc error: interface "screensaver,none" initialization failed
[0x62c698] main libvlc error: option drawable-xid does not exist
[0x711e08] main interface error: no interface module matched "signals"
[0x711e08] main interface error: no suitable interface module
[0x62c698] main libvlc error: interface "signals" initialization failed
[0x711e08] main interface error: no interface module matched "globalhotkeys,none"
The pre-built package seems to work, but that does not contain all the codecs, that is, I get this message when I try to encode ogg->mp3:
Code:
[0xddecc8] main input error: ES_OUT_RESET_PCR called
[0xe38e58] avcodec encoder error: cannot find encoder MPEG Audio layer 1/2/3
*** Your FFMPEG installation is crippled. ***
*** Please check with your FFMPEG packager. ***
*** This is NOT a VLC media player issue. ***
[0xdda3f8] stream_out_transcode stream out error: cannot find audio encoder (module:any fourcc:mp3 )
Anyone have any ideas what went wrong with my build?
|
|
|
|
09-30-2009, 02:55 AM
|
#2
|
|
Senior Member
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-13.37
Posts: 1,183
Rep: 
|
Are you running 64bit with multilib?
|
|
|
|
09-30-2009, 03:32 AM
|
#3
|
|
Member
Registered: Apr 2006
Location: Sweden
Distribution: Slackware64 13.1 multilib, 2.6.37.2
Posts: 101
Original Poster
Rep:
|
Quote:
Originally Posted by Daedra
Are you running 64bit with multilib?
|
Sure, and because of that I changed
Code:
ARCH=${ARCH:-"i486"}
to
Code:
ARCH=${ARCH:-"x86_64"}
in the build script (and also opted to not have the plugins built). That shouldn't really be the problem I think.
|
|
|
|
09-30-2009, 03:36 AM
|
#4
|
|
Senior Member
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-13.37
Posts: 1,183
Rep: 
|
I was having the same problem with 1.0.1. The best I could figure from the logs is that the build was picking up some of the 32bit libraries in /usr/lib which was causing the errors since VLC was excepting the 64bit libraries. I removed the multilib packages and re-ran the build and it worked fine. It might work for you too, cant be certain though.
|
|
|
|
09-30-2009, 05:23 AM
|
#5
|
|
Member
Registered: Apr 2006
Location: Sweden
Distribution: Slackware64 13.1 multilib, 2.6.37.2
Posts: 101
Original Poster
Rep:
|
Quote:
Originally Posted by Daedra
I was having the same problem with 1.0.1. The best I could figure from the logs is that the build was picking up some of the 32bit libraries in /usr/lib which was causing the errors since VLC was excepting the 64bit libraries. I removed the multilib packages and re-ran the build and it worked fine. It might work for you too, cant be certain though.
|
Thanks for the tip, I might try it. As for now, I am using ffmpeg for the conversion (which didn't have any problems compiling...)
|
|
|
|
09-30-2009, 05:45 AM
|
#6
|
|
Slackware Contributor
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 4,733
Rep: 
|
Quote:
Originally Posted by Olaus
After compiling and installing vlc 1.0.2 from alien's slackbuilds I get these messages after trying to run vlc (the program window does not show up at all):
Code:
[0x62c698] main libvlc error: no memcpy module matched "any"
[0x711a48] main interface error: no interface module matched "hotkeys,none"
[0x711a48] main interface error: no suitable interface module
[0x62c698] main libvlc error: interface "hotkeys,none" initialization failed
[0x711de8] main interface error: no interface module matched "inhibit,none"
[0x711de8] main interface error: no suitable interface module
[0x62c698] main libvlc error: interface "inhibit,none" initialization failed
[0x711af8] main interface error: no interface module matched "screensaver,none"
[0x711af8] main interface error: no suitable interface module
[0x62c698] main libvlc error: interface "screensaver,none" initialization failed
[0x62c698] main libvlc error: option drawable-xid does not exist
[0x711e08] main interface error: no interface module matched "signals"
[0x711e08] main interface error: no suitable interface module
[0x62c698] main libvlc error: interface "signals" initialization failed
[0x711e08] main interface error: no interface module matched "globalhotkeys,none"
The pre-built package seems to work, but that does not contain all the codecs, that is, I get this message when I try to encode ogg->mp3:
Code:
[0xddecc8] main input error: ES_OUT_RESET_PCR called
[0xe38e58] avcodec encoder error: cannot find encoder MPEG Audio layer 1/2/3
*** Your FFMPEG installation is crippled. ***
*** Please check with your FFMPEG packager. ***
*** This is NOT a VLC media player issue. ***
[0xdda3f8] stream_out_transcode stream out error: cannot find audio encoder (module:any fourcc:mp3 )
Anyone have any ideas what went wrong with my build?
|
If you want a pre-built VlC package with full MP3 encoding capability, get it from http://slackware.org.uk/3rd-party/al...ackbuilds/vlc/
The packages I host in the US (like, on http://slackware.com/~alien/) don't contain code that has patent/copyright issues, because I do not want to risk patent claims. The UK server does not have these restrictions.
Eric
|
|
|
|
| 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 09:09 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
|
|