I’ve tried the web plugin and it does show the tracks, but for me it doesn’t show album art.
Is there another GUI which does show the album art? (It can be a web app or a macOS app.)
Thanks for pointers!
I’ve tried the web plugin and it does show the tracks, but for me it doesn’t show album art.
Is there another GUI which does show the album art? (It can be a web app or a macOS app.)
Thanks for pointers!
You could use the beets AURA plugin along with AURA web client (both written by me). I find the main downside to be you can’t use beets queries
Not a beets plug-in, but this is the one I use. It works very good in coordination with beets.
Thanks @out-of-range. I’ve tried the AURA approach, but I get a “TypeError: Load failed” message.
What have I done?:
Any idea why this happens?
@halloleo That would be a cross-origin resource sharing error, if you put
aura:
cors:
- "null"
in your beets config file it should work.
I should definitely make it clear in both server and client documentation that that is required for using browser clients
Another option is Beetle:
@ctrueden Thanks for suggesting Beetle. I just tried it!
However in the web browser I get an error 500:
request to http://localhost:8337/album/query/added- failed, reason: connect ECONNREFUSED ::1:8337
FetchError: request to http://localhost:8337/album/query/added- failed, reason: connect ECONNREFUSED ::1:8337
at ClientRequest.<anonymous> (/Users/me/audio/beetle/src/node_modules/@sapper/server.mjs:1966:14)
at ClientRequest.emit (node:events:513:28)
at Socket.socketErrorListener (node:_http_client:494:9)
at Socket.emit (node:events:513:28)
at emitErrorNT (node:internal/streams/destroy:151:8)
at emitErrorCloseNT (node:internal/streams/destroy:116:3)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
Any idea why this happens?
Coo,l that works! Thanks.
Sorry, I’m not sure. @labecasse Any suggestions?
Hi @halloleo
It seems that your Beet API is not reachable at http://localhost:8337
. Some ideas :
http://localhost:8337/album/query/added-
?beet web
is running properly ?cors
property) ?Also both aura and web plugins are running on the port 8337 by default. So, it can lead to some conflicts if you are running them at the same time.
Ah, I guess that’s the problem. (I think I haven’t disabled the aura plugin.) Will check it out tonight.
Thanks for chiming in, @labecasse.