.batch audio quality analyzer

This commit is contained in:
afkarxyz
2026-04-02 11:30:00 +07:00
parent 78caf6cc61
commit 41eda2d230
5 changed files with 1376 additions and 172 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ func ListAudioFiles(dirPath string) ([]FileInfo, error) {
}
ext := strings.ToLower(filepath.Ext(path))
if ext == ".flac" || ext == ".mp3" || ext == ".m4a" {
if ext == ".flac" || ext == ".mp3" || ext == ".m4a" || ext == ".aac" {
result = append(result, FileInfo{
Name: info.Name(),
Path: path,