Replies: 2 comments
-
Currently the build script for ci is working for windows. I build it under msys2 mingw64 environment and works. Only problem now is album photo . It works but not very good. If turn off cover, everything is fine. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks!
…On Fri, Mar 22, 2024 at 8:31 PM tramhao ***@***.***> wrote:
Currently the build script for ci is working for windows. I build it under
msys2 mingw64 environment and works. Only problem now is album photo . It
works but not very good. If turn off cover, everything is fine.
—
Reply to this email directly, view it on GitHub
<#142 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABZKUWN7APJ2IYD6AZBH23DYZTZSJAVCNFSM6AAAAAA4RWBVOSVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DQOBUGMYTQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In Ubuntu WSL using
cargo install termusic termusic-server
:TLDR: Needed to manually install 'libdbus-sys',
sudo apt install libasound2-dev
,sudo apt install protobuf-compiler
before I received a successful compile message. And after all that, when I rantermusic-server
and it failed, I realized that Ubuntu WSL doesn't even have a sound device to playback music on. /facepalm .I might try cross compiling it to Windows 10 instead before loading up a full Ubuntu desktop to try it.
per related github issue tried
sudo apt install libdbus-1-dev
and then tried cargo install again but the build failed with the following error:
per a hint in this issue comment I ran
sudo apt install libasound2-dev
and attempted to compile again:During this build a warning and error were thrown about
PROTOC
not being available resulting in the errorerror: failed to run custom build command for
termusic-playback v0.7.11`` being thrown. It instructed me toapt-get install protobuf-compiler
but since the compiler continued to chug through I didn't have a chance to actually do anything about it until finally failed completely.So I did
sudo apt install protobuf-compiler
and again, for the third time, rancargo install termusic termusic-server
.On this attempted I finally received the message
Summary Successfully installed termusic, termusic-server!
When I ran
termusic-server
, it failed withALSA lib confmisc.c:855:(parse_card) cannot find card '0'
.Duh. There isn't a sound device for it to initialize.
Beta Was this translation helpful? Give feedback.
All reactions