-
Hello. After updating to the latest version. Now import does not get discogs data for autotagging). Below is output from my testing with “Who Killed Sgt. Pepper?” The discogs plugin is installed / configured as per documentation. I tried re-authenticating my Discogs connection. That worked but did not change the import functionality. Thanks for an otherwise stellar piece of software. MacBook-Air:~ user$ beet --version Macbook-Air:~ User$ beet -vv import -Ct /Volumes/Data/Music2/AntnNwcmb2010_auk020 |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
Could you provide the normal output, without the verbose stuff? |
Beta Was this translation helpful? Give feedback.
-
There is none. Beets imports the album. No options appear despite timid
mode.
…On Thu, Jun 6, 2024 at 12:28 PM Rutger van Sleen ***@***.***> wrote:
Could you provide the normal output, without the verbose stuff?
—
Reply to this email directly, view it on GitHub
<#5273 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AIKFGL3WTMUW3VLMBCESIBDZGCS6LAVCNFSM6AAAAABITTL2JCVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TMOJSHA3DE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
ignore:
FLAC
Flac
flac
WAV
Wav
wav
96 KHz
asciify_paths:
default: yes
replace:
'[&+]': 'And'
'[()!#.?,~]': ''
'[\\/]': _
'^\.': _
'[\x00-\x1f]': _
'[<>:"\?\*\|]': _
'\.$': _
'\s+$': ''
'^\s+': ''
'^-': _
#wondering about $, %, @, ^, =, :;<>|{}
plugins: discogs the inline fetchart ftintitle edit export types play
#bandcamp = beetcamp
#importinspect, copyartifacts > unmaintained / recent py issues
#extrafiles replaces copyartifacts? But bugs out when installed
#rewrite: >> scrapping this bc sublabel names might overlap artist names
#albumartist Anything Goes: Rollover Milano Records
export:
json:
formatting:
ensure_ascii: false
indent: 4
separators: [',' , ': ']
sort_keys: true
csv:
formatting:
delimiter: ','
dialect: excel
play:
command: /Applications/VLC.app/Contents/MacOS/VLC --no-playlist-autostart
warning_threshold: 100
raw: yes
extrafiles:
patterns:
all: '*.*'
importinspect:
on_apply: yes
timid: yes
ignored: []
ignored_new:
[acoustid_fingerprint,acoustid_id,added,album,album_id,albumartist_credit,albumartist_sort,albumdisambig,albumstatus,albumtotal,albumtypes,arranger,artist,artist_credit,artist_sort,artpath,asin,bitdepth,bitrate,bpm,catalognum_adj,channels,comments,composer,composer_sort,country,day,disc,discogs_albumid,discogs_artistid,discogs_labelid,disctitle,disctotal,encoder,filesize,format,id,initial_key,initials,isrc,language,length,longAA,lyricist,lyrics,mb_albumartistid,mb_albumid,mb_artistid,mb_releasegroupid,mb_releasetrackid,mb_trackid,mb_workid,month,mtime,original_day,original_month,original_year,path,r128_album_gain,r128_track_gain,releasegroupdisambig,rg_album_gain,rg_album_peak,rg_track_gain,rg_track_peak,samplerate,script,shortAA,singleton,style,title,track,trackdisambig,tracktotal,work_disambig,year]
discogs:
source_weight: 0.0
index_tracks: yes
User_token: fPVEiOeWSwrohbGXDnfbmlNdWfwVqJzwACNhqURc
bandcamp:
source_weight: 0.0
include_digital_only_tracks: true
search_max: 3
art: false
comments_separator: "\n---\n"
exclude_extra_fields:
- lyrics
- comments
- genre
- style
- day
- month
- medium
- mediums
- medium_index
- albumstatus
- albumtypes
genre:
capitalize: no
maximum: 1
always_include: []
mode: classical # classical, progressive or psychedelic
#not using given conflict w/ inline albumartist_adj
the:
a: yes
the: yes
patterns: ^th ^a ^an
strip: no
format: '{0},{1}'
#inline
item_fields:
catalognum_adj: catalognum.replace(' ', '-') #.replace('-', '_')
album_fields:
albumartist_adj: |
import re
return re.sub(r'([a-z])\1+', r'\1', re.sub('(?<=\w)[aeiou ]', '',
albumartist, flags=re.I))
initials: |
initials = ''
for word in albumartist.replace('-', ' ').split(): #go through each
word
initials += word[0].upper() #append the initial
return initials
longAA: 1 if
(len(albumartist) - albumartist.count(' ')) >= 16 else 0
shortAA: 1 if
(len(albumartist) - albumartist.count(' ')) <= 4 else 0
catalognum_adj: catalognum.replace(' ', '-')
andAA: 1 if '&' in albumartist else 0
and_adj: |
import re
names = []
for name in albumartist.split('&'):
if (len(name) - name.count(' ') - len(re.findall('[()!#.?,~]',
name))) >= 16:
initials = ''
for word in name.replace('-', ' ').split(): #go through each word
initials += word[0].upper() #append the initial
names.append(initials)
elif (len(name) - name.count(' ')) <= 4:
names.append(name.replace(' ', ''))
else:
#import re > from before initial import
names.append(re.sub(r'([a-z])\1+', r'\1', re.sub('(?<=\w)[aeiou ]',
'', name, flags=re.I)))
return '&'.join(names).replace(' ', '')
ftintitle:
format: ft. {0}
directory: /Users/bresnick/Downloads/MusicTest
import:
write: yes
copy: yes
languages: en
autotag: no
art_filename: ${catalognum_adj}_art
#va_name: %if{albumtype='mix',$arranger,$label} not used bc references
mediabrainz not file
paths:
paths:
#default:
%if{$compilation,Music/Compilations/%if{$longAA,$initials${year}_$catalognum_adj/${catalognum_adj}_$track,%if{$shortAA,$albumartist${year}_$catalognum_adj/${catalognum_adj}_$track,$albumartist_adj${year}_$catalognum_adj/${catalognum_adj}_$track}},Music/%if{$longAA,$initials${year}_$catalognum_adj/${catalognum_adj}_$track,%if{$shortAA,$albumartist${year}_$catalognum_adj/${catalognum_adj}_$track,$albumartist_adj${year}_$catalognum_adj/${catalognum_adj}_$track}}}
#default:
Music/Compilations/%if{$longAA,$initials${year}_$catalognum_adj/${catalognum_adj}_$track,%if{$shortAA,$albumartist${year}_$catalognum_adj/${catalognum_adj}_$track,$albumartist_adj${year}_$catalognum_adj/${catalognum_adj}_$track}}
###default:
Music/%if{$longAA,$initials${year}_$catalognum_adj/${catalognum_adj}_$track,%if{$shortAA,$albumartist${year}_$catalognum_adj/${catalognum_adj}_$track,$albumartist_adj${year}_$catalognum_adj/${catalognum_adj}_$track}}
###comp:
Music/Compilations/%if{$longAA,$initials${year}_$catalognum_adj/${catalognum_adj}_$track,%if{$shortAA,$albumartist${year}_$catalognum_adj/${catalognum_adj}_$track,$albumartist_adj${year}_$catalognum_adj/${catalognum_adj}_$track}}
##default:
Music/%if{$longAA,$initials${year}_$catalognum_adj/${catalognum_adj}_$track,%if{$shortAA,$albumartist${year}_$catalognum_adj/${catalognum_adj}_$track,$albumartist_adj${year}_$catalognum_adj/${catalognum_adj}_$track}}
##comp:
Music/Compilations/%if{$longAA,$initials${year}_$catalognum_adj/${catalognum_adj}_$track,%if{$shortAA,$albumartist${year}_$catalognum_adj/${catalognum_adj}_$track,$albumartist_adj${year}_$catalognum_adj/${catalognum_adj}_$track}}
default: Music/$and_adj${year}_$catalognum_adj/${catalognum_adj}_$track
comp:
Music/Compilations/$and_adj${year}_$catalognum_adj/${catalognum_adj}_$track
ui:
color: yes
colors:
text_success: green
text_warning: yellow
text_error: red
text_highlight: red
text_highlight_minor: lightgray
action_default: turquoise
action: blue
…On Mon, Jun 10, 2024 at 12:55 AM Rutger van Sleen ***@***.***> wrote:
Huh. Could you please provide your config?
—
Reply to this email directly, view it on GitHub
<#5273 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AIKFGL6OPXNIG7RMVZLQ45DZGVEW5AVCNFSM6AAAAABITTL2JCVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TOMRTG4ZDO>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Changing that setting did not resolve the issue.
Best regards,
Ben Resnick
+1 (720) 729-7450
…On Wed, Jun 12, 2024 at 12:21 PM Rutger van Sleen ***@***.***> wrote:
For future reference: please put something like the above in codeblocks using
triple backticks
<https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks>
.
Regarding your problem, here it is:
autotag: no
With this set to "no", beets will not try to tag your files
<https://beets.readthedocs.io/en/stable/reference/config.html#autotag>.
Therefore it will not query discogs nor will it output anything about it.
—
Reply to this email directly, view it on GitHub
<#5273 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AIKFGL4PMP5KEBPDVUEEAYTZHCGSFAVCNFSM6AAAAABITTL2JCVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TONJVGI4DG>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
For future reference: please put something like the above in codeblocks using triple backticks.
Regarding your problem, here it is:
With this set to "no", beets will not try to tag your files. Therefore it will not query discogs nor will it output anything about it.