mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add TAK support (#2745)
* bug(consts/mime_types): tak-support - 2514 Add tak to mime_types audioFormats Signed-off-by: apkatsikas <apkatsikas@gmail.com> * bug(scanner): tak-support - 2514 Add tak test fixture file and add fixes for tag_scanner and walk_dir_tree tests Signed-off-by: apkatsikas <apkatsikas@gmail.com> * Remove comment --------- Signed-off-by: apkatsikas <apkatsikas@gmail.com>
This commit is contained in:
parent
51e07d4cb5
commit
b4815ecee5
4 changed files with 4 additions and 2 deletions
|
@ -33,6 +33,7 @@ var audioFormats = map[string]format{
|
|||
".dsf": {typ: "audio/dsd", lossless: true},
|
||||
".wv": {typ: "audio/x-wavpack", lossless: true},
|
||||
".wvp": {typ: "audio/x-wavpack", lossless: true},
|
||||
".tak": {typ: "audio/tak", lossless: true},
|
||||
".mka": {typ: "audio/x-matroska"},
|
||||
}
|
||||
var imageFormats = map[string]string{
|
||||
|
|
|
@ -10,11 +10,12 @@ var _ = Describe("TagScanner", func() {
|
|||
It("return all audio files from the folder", func() {
|
||||
files, err := loadAllAudioFiles("tests/fixtures")
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(files).To(HaveLen(11))
|
||||
Expect(files).To(HaveLen(12))
|
||||
Expect(files).To(HaveKey("tests/fixtures/test.aiff"))
|
||||
Expect(files).To(HaveKey("tests/fixtures/test.flac"))
|
||||
Expect(files).To(HaveKey("tests/fixtures/test.m4a"))
|
||||
Expect(files).To(HaveKey("tests/fixtures/test.mp3"))
|
||||
Expect(files).To(HaveKey("tests/fixtures/test.tak"))
|
||||
Expect(files).To(HaveKey("tests/fixtures/test.ogg"))
|
||||
Expect(files).To(HaveKey("tests/fixtures/test.wav"))
|
||||
Expect(files).To(HaveKey("tests/fixtures/test.wma"))
|
||||
|
|
|
@ -34,7 +34,7 @@ var _ = Describe("walk_dir_tree", func() {
|
|||
Expect(collected[baseDir]).To(MatchFields(IgnoreExtras, Fields{
|
||||
"Images": BeEmpty(),
|
||||
"HasPlaylist": BeFalse(),
|
||||
"AudioFilesCount": BeNumerically("==", 12),
|
||||
"AudioFilesCount": BeNumerically("==", 13),
|
||||
}))
|
||||
Expect(collected[filepath.Join(baseDir, "artist", "an-album")]).To(MatchFields(IgnoreExtras, Fields{
|
||||
"Images": ConsistOf("cover.jpg", "front.png", "artist.png"),
|
||||
|
|
BIN
tests/fixtures/test.tak
vendored
Normal file
BIN
tests/fixtures/test.tak
vendored
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue