[beets] Autotagger Re-arranging tracks

2016-09-06 Thread G Derber
I am trying to understand how the autotagger works a little better. On some albums, it's rearranging the numbers and the names. For example, this album is a soundtrack from a game I bought on GoG, Freespace 2. Correcting tags from: Freespace 2 - Freespace 2 To: Dan Wentz - Freespace 2

[beets] Date Queries max date

2016-09-22 Thread G Derber
Is it possible to do a query based on the most recent date added? Something like beet list added:$((max date) - 7 days) to list the most recently added up to a week before the day I most recently added music. -- You received this message because you are subscribed to the Google Groups "beets"

Re: [beets] Date Queries max date

2016-09-23 Thread G Derber
Thank you for the reply. I may try a bash work around, but so far: "beet info -i added -l |grep added|cut -d\ -f2|sort -u" has been running for 10 minutes on over 8k songs. -- You received this message because you are subscribed to the Google Groups "beets" group. To unsubscribe from this gro

Re: [beets] Keeping multiple copies of tracks in different formats

2016-09-28 Thread G Derber
I tried out the alternatives plugin. It worked as advertised, and provided what I was looking for. I had a couple issues with it. First, beet started spewing error messages, that did not seem to affect what I wanted to do. Bash completion broke. Looking at the GitHub sit for the plugin, noth

[beets] Beets pluginpath problem

2016-09-28 Thread G Derber
I have an error message if I have more than one plugin defined in the plugin path. Which according to the documentation should work. What am I doing wrong? The relevant lines from my config file are: plugins: [ ... #Other plugins alternatives setlister ] # Directories to search for plugins

[beets] Beets pluginpath problem

2016-09-28 Thread G Derber
I have tried the plugin paths both with and without the "-". -- You received this message because you are subscribed to the Google Groups "beets" group. To unsubscribe from this group and stop receiving emails from it, send an email to beets-users+unsubscr...@googlegroups.com. For more options,

Re: [beets] Beets pluginpath problem

2016-09-28 Thread G Derber
Sure thing https://gist.github.com/gderber/2756c7fea95f7066b0b4c47dad4e10eb Thank you. -- You received this message because you are subscribed to the Google Groups "beets" group. To unsubscribe from this group and stop receiving emails from it, send an email to beets-users+unsubscr...@googleg

Re: [beets] Beets pluginpath problem

2016-09-29 Thread G Derber
I got it working, stupid missing comma in the plugin section. -- You received this message because you are subscribed to the Google Groups "beets" group. To unsubscribe from this group and stop receiving emails from it, send an email to beets-users+unsubscr...@googlegroups.com. For more options

[beets] Whats your best smart playlist?

2016-09-30 Thread G Derber
I'll bite. I've got a couple for workouts based on BPM. - name: 'Workout.m3u' query:'bpm:120..140' - name: 'Workout - Intense.m3u' query: 'bpm:141..160' - name: 'Workout - Rediculous.m3u' query: 'bpm:161..180' - name: 'Workout - Ludicrous.m3u' query: 'b

[beets] Whats your best smart playlist?

2016-10-01 Thread G Derber
Here is another playlist, this one bash generated. It's a playlist for everything up to a week prior to the most recent import. function generated loyalist (){ local CONFIGFILE="${HOME}/.config/beets/config.yaml" && local MUSICDIR="${HOME}/Music" && # Get the PLAYLIST DIRECTORY from

[beets] Whats your best smart playlist?

2016-10-01 Thread G Derber
The last script is very slow, but it works. If anyone has any ideas on how to speed it up, I'd like to know it. Most of the time is spent with the beet command to obtain the most recent import date. -- You received this message because you are subscribed to the Google Groups "beets" group. T

[beets] Beets config.yaml template

2016-10-16 Thread G Derber
While creating a config file for myself, I created a template with all possible options and notes, primarily from the documentation on what the options do and what values each option accepts. There are some options I wasn't 100% sure of, that someone who knows beets better might be able to clar