Skip to content

Commit

Permalink
Merge pull request #33 from mctofu/opus
Browse files Browse the repository at this point in the history
Add opus metadata support
  • Loading branch information
mctofu committed Sep 28, 2022
2 parents 5ba1c90 + b53c334 commit 1ebd0f7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,18 @@ import (
)

var tagExts = map[string]struct{}{
".mp3": {},
".m4a": {},
".flac": {},
".m4a": {},
".mp3": {},
".ogg": {},
".opus": {},
".wav": {},
}

var imgExts = map[string]struct{}{
".gif": {},
".jpg": {},
".png": {},
".gif": {},
}

type WalkFunc func(dir *PathMeta, file *PathMeta) error
Expand Down

0 comments on commit 1ebd0f7

Please sign in to comment.