Guilherme
Guilherme
About the commandline interface, I think it would be better if we don't have to write `%__{$*}`. Something like: ``` sh beet import /path/to/album *='lower,asciify' or --apply='lower,asciify' ```
For the 1st option, I think it would be better to implement #1824 (new multi-value artist tag) and use the `inline` plugin to get the first artist (it's my manual...
When I had the same @DOFfactory questions, I created a workaround for myself this way: 1. Create a plugin using the `musicbrainzngs` library, so I could: - Fetch the artists/albumartists...
@DOFfactory Sorry for the delay. I created https://gist.github.com/GuilhermeHideki/baeb63919fd51b23d168b700f374d875 and put in `beetsplugs/artists.py` (not the best way to install, but for me, it's ok). It depends on python 3.6 ps: I...
I think I used a docker container one time to have a "relative path", when organizing the music on a external usb drive, on two computers. The idea was having...
I patched my deezer.py file with this. ```diff - album_data = requests.get(self.album_url + deezer_id).json() + headers = {"Accept-Language": "en-US,en;q=0.5"} + album_data = requests.get(self.album_url + deezer_id, headers=headers).json() ``` I didn't test...
what if `disctitle` is included in search, when someone queries something without specific fields? (old?) page about box sets in musicbrainz https://wiki.musicbrainz.org/History:Box_Set_Name_Style
Sometimes I use something like `beet ls -f '$album_id' trackLevelQuery | sort -u | xargs sh -c "beet ls -af 'some format' id:"`, but would like something more "user-friendly"