Seems to work here for onboarding the monkey.
func (Reader) CanRead(absPath string) bool {
switch ext := strings.ToLower(filepath.Ext(absPath)); ext {
case ".mp3", ".flac", ".aac", ".m4a", ".m4b", ".ogg", ".opus", ".wma", ".wav", ".wv", ".ape":
return true
}
return false
}
Hi,
I believe this was an oversight - it's actually supported:
gonic\tags\taglib\taglib.go :: add ".ape"
Seems to work here for onboarding the monkey.