-
|
Hi. Fetchart ain't fetcharting. What am I doing wrong? Please help! paul:~ $ beet -v fetchart -f
user configuration: /home/cylenia/.config/beets/config.yaml
data directory: /home/cylenia/.config/beets
plugin paths: []
Loading plugins: fetchart, musicbrainz
fetchart: lastfm: Disabling art source due to missing key
fetchart: google: Disabling art source due to missing key
Sending event: pluginload
library database: /home/cylenia/.config/beets/library.db
library directory: /home/cylenia/music
Sending event: library_opened
Parsed query: AndQuery([TrueQuery()])
Parsed sort: NullSort()
Sending event: cli_exit |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
The important line is not the missing Last.fm/Google keys; it is that
beet ls -aIf that prints nothing, the library database is empty or this command is using a different config/database than the one you imported with. Import an album first, or point beets at the right config with If albums do show up, run fetchart against one explicit album so the verbose log is smaller: beet -v fetchart -f 'artist name album name'The Last.fm and Google messages only mean those two sources are disabled because they need API keys. They should not make the command exit immediately by themselves; the zero-album case is the first thing to rule out. If that was the missing piece, please mark this as answered. |
Beta Was this translation helpful? Give feedback.
The important line is not the missing Last.fm/Google keys; it is that
fetchartexits without ever listing an album to process.beet fetchartworks on albums already imported into the beets library. Check that first:If that prints nothing, the library database is empty or this command is using a different config/database than the one you imported with. Import an album first, or point beets at the right config with
-c.If albums do show up, run fetchart against one explicit album so the verbose log is smaller:
beet -v fetchart -f 'artist name album name'The Last.fm and Google messages only mean those two sources are disabled because they need API keys. They should not make the …