-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make and osicat not found #2
Comments
Remove "--no-userinit" from the Makefile. |
And with the dependencies it's better, now running
My web search isn't much useful. thanks for the last commits and explanations. |
The dynamic linker needs a path to find whatever .so files pop out in the
libs/ directory (gen0.so).
The make install taget installs those by default, so it will work once
installed system-wide (provided you run the 'shuffletron' wrapper script
rather than shuffleton-bin directly. Otherwise you can do something like
this for local builds:
export LD_LIBRARY_PATH=`pwd`/libs
That will let you run shuffletron-bin directly from the current directory.
I suppose it would be easy enough to add something in the wrapper script to
handle this case as well. Back when I used to make precompiled binary
builds of this, I'd link the random cffi-grovel junk directly into the SBCL
runtime so that the LD_LIBRARY_PATH nonsense wasn't necessary. I tend to
overlook this nuisance since once I've done 'make install' once,
uninstalled local builds will work 99% of the time (arguably by accident)
due to the cffi-generated stuff seldom changing.
…On Fri, Aug 31, 2018 at 3:39 PM vindarel ***@***.***> wrote:
And with the dependencies it's better, now running shuf…-bin:
$ ./shuffletron-bin *[master]
Unhandled simple-error in thread #<sb-thread:thread "main thread" running
{10052C6BD3}>:
Error opening shared object "gen0.so":
gen0.so: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type.
Backtrace for: #<SB-THREAD:THREAD "main thread" RUNNING {10052C6BD3}>
0: ((LAMBDA NIL :IN SB-DEBUG::FUNCALL-WITH-DEBUG-IO-SYNTAX))
1: (SB-IMPL::CALL-WITH-SANE-IO-SYNTAX #<CLOSURE (LAMBDA NIL :IN SB-DEBUG::FUNCALL-WITH-DEBUG-IO-SYNTAX) {10052CB72B}>)
2: (SB-IMPL::%WITH-STANDARD-IO-SYNTAX #<CLOSURE (LAMBDA NIL :IN SB-DEBUG::FUNCALL-WITH-DEBUG-IO-SYNTAX) {10052CB6FB}>)
3: (PRINT-BACKTRACE :STREAM #<SYNONYM-STREAM :SYMBOL SB-SYS:*STDERR* {100017A813}> :START 0 :FROM :INTERRUPTED-FRAME :COUNT NIL :PRINT-THREAD T :PRINT-FRAME-SOURCE NIL :METHOD-FRAME-STYLE NIL)
My web search isn't much useful.
thanks for the last commits and explanations.
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#2 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAK4MVT27iLx-J7Zs_0mXidBkQFm3Pftks5uWZDagaJpZM4WUW-p>
.
|
Allright, progress again \o/
I think indeed it doesn't contain any data, it was converted from an mp4 file downloaded from youtube. I deleted this file but I have some more I want to keep :] Can't it just print a message instead of exiting ? |
In Mixalot's
to
(I can't see it though). |
btw, I think that would be very nice to have ! It's the easy way to distribute a software after all. |
Curious, if you try to play that same file without scanning tags, does it play, or do you get the same error? What does the 'file' command output when given that file as a parameter? I wonder if the file is corrupt, not actually an ogg file, or if there's a bug in the ogg code. It should be made more robust, so that scanid3 always completes, in any case. |
The
I can play it with
|
Interesting. That's a video file (Ogg Theora) rather than an audio file (Ogg Vorbis). I'm using libvorbisfile under the assumption that any .ogg file is a Vorbis-format audio file. It would take some work writing new FFI bindings and Mixalot wrappers to decode a Theora file and play it the audio track Shuffletron. I see a lot of appeal in being able to decode and play audio tracks from common video formats but it's not something Shuffletron or Mixalot can do today. Seems like you'd want Theora and mp4 at a minimum. If I had a large collection of downloaded music videos I'd definitely want the option to toggle the video display on and off as well - an audio+video player with Shuffletron-style interface could be cool. Predictably it's not something I'm likely to dive into implementing. |
Hello,
I try to build with
make shuffletron-bin
and I get:Although
osicat
is well defined in the .asd.Any hint ?
ps: hope you still maintain this I'm eager to try it :]
The text was updated successfully, but these errors were encountered: