You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I usually listen to songs on youtube or songs downloaded from youtube with mpv.
For the first few tracks the scrobbling fails with the error events::add_event:queue: skipping, track is invalid.
It works again if I go backwards in the queue.
While I don't know why that makes it work again, the original error is caused by line 392 in scrobble.h: strlen(m->album) > 0 &&.
Because my music is downloaded from youtube often does not have an associated album.
Would it be a possibility to remove that requirement?
The text was updated successfully, but these errors were encountered:
Hello @MinmoTech, first of all apologies for the very late reply.
Due to the fact that Last.fm requires an album name in both the now playing and scrobble API calls, we can't remove this check. Even if we remove it, your songs would still not show up on last.fm due to the missing information.
For the other services, maybe it's possible to remove the check, but I'm no longer actively working on this, and I would need confirmation form their API docs.
A patch/pull-request (accompanied by links to the docs where listenbrainz/librefm say they accept API calls without albums) would be welcome though.
I usually listen to songs on youtube or songs downloaded from youtube with mpv.
For the first few tracks the scrobbling fails with the error
events::add_event:queue: skipping, track is invalid
.It works again if I go backwards in the queue.
While I don't know why that makes it work again, the original error is caused by line 392 in
scrobble.h
:strlen(m->album) > 0 &&
.Because my music is downloaded from youtube often does not have an associated album.
Would it be a possibility to remove that requirement?
The text was updated successfully, but these errors were encountered: