Scrobber plugin does not work on mac osx #111
-
Hey, I am running Audacous on mac using brew install audacious. Mac M2 OSX 13 Is there a way to debug what is going on? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
@guysoft: The output of "audacious -VV" may be helpful. However I was able to reproduce this myself on macOS. @jlindgren90: This is an interesting issue. :) The callback function A solution would be to use our #include <glib.h>
#include <QApplication>
// Why/how is this called on Linux without a GLib mainloop?
static int timer_cb(void *)
{
g_print("%s\n", __FUNCTION__);
return true;
}
int main(int argc, char **argv)
{
QApplication app(argc, argv);
g_timeout_add(250, timer_cb, nullptr);
return app.exec();
} |
Beta Was this translation helpful? Give feedback.
-
Can confirm it works now Audacious 4.4 |
Beta Was this translation helpful? Give feedback.
Should be fixed now with audacious-media-player/audacious-plugins@895e2c3 for Audacious 4.4.