mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add support for multi-line tags
This commit is contained in:
parent
99d454d8b0
commit
aee4eb71c4
4 changed files with 25 additions and 10 deletions
|
@ -53,6 +53,9 @@ var (
|
||||||
// TITLE : Back In Black
|
// TITLE : Back In Black
|
||||||
tagsRx = regexp.MustCompile(`(?i)^\s{4,6}([\w\s-]+)\s*:(.*)`)
|
tagsRx = regexp.MustCompile(`(?i)^\s{4,6}([\w\s-]+)\s*:(.*)`)
|
||||||
|
|
||||||
|
// : Second comment line
|
||||||
|
continuationRx = regexp.MustCompile(`(?i)^\s+:(.*)`)
|
||||||
|
|
||||||
// Duration: 00:04:16.00, start: 0.000000, bitrate: 995 kb/s`
|
// Duration: 00:04:16.00, start: 0.000000, bitrate: 995 kb/s`
|
||||||
durationRx = regexp.MustCompile(`^\s\sDuration: ([\d.:]+).*bitrate: (\d+)`)
|
durationRx = regexp.MustCompile(`^\s\sDuration: ([\d.:]+).*bitrate: (\d+)`)
|
||||||
|
|
||||||
|
@ -107,6 +110,7 @@ func (e *ffmpegExtractor) extractMetadata(filePath, info string) (*ffmpegMetadat
|
||||||
func (m *ffmpegMetadata) parseInfo(info string) {
|
func (m *ffmpegMetadata) parseInfo(info string) {
|
||||||
reader := strings.NewReader(info)
|
reader := strings.NewReader(info)
|
||||||
scanner := bufio.NewScanner(reader)
|
scanner := bufio.NewScanner(reader)
|
||||||
|
lastTag := ""
|
||||||
for scanner.Scan() {
|
for scanner.Scan() {
|
||||||
line := scanner.Text()
|
line := scanner.Text()
|
||||||
if len(line) == 0 {
|
if len(line) == 0 {
|
||||||
|
@ -115,15 +119,27 @@ func (m *ffmpegMetadata) parseInfo(info string) {
|
||||||
match := tagsRx.FindStringSubmatch(line)
|
match := tagsRx.FindStringSubmatch(line)
|
||||||
if len(match) > 0 {
|
if len(match) > 0 {
|
||||||
tagName := strings.TrimSpace(strings.ToLower(match[1]))
|
tagName := strings.TrimSpace(strings.ToLower(match[1]))
|
||||||
tagValue := strings.TrimSpace(match[2])
|
if tagName != "" {
|
||||||
|
tagValue := strings.TrimSpace(match[2])
|
||||||
// Skip when the tag was previously found
|
// Skip when the tag was previously found
|
||||||
if _, ok := m.tags[tagName]; !ok {
|
if _, ok := m.tags[tagName]; !ok {
|
||||||
m.tags[tagName] = tagValue
|
m.tags[tagName] = tagValue
|
||||||
|
lastTag = tagName
|
||||||
|
}
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if lastTag != "" {
|
||||||
|
match = continuationRx.FindStringSubmatch(line)
|
||||||
|
if len(match) > 0 {
|
||||||
|
tagValue := m.tags[lastTag]
|
||||||
|
m.tags[lastTag] = tagValue + "\n" + strings.TrimSpace(match[1])
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
lastTag = ""
|
||||||
match = coverRx.FindStringSubmatch(line)
|
match = coverRx.FindStringSubmatch(line)
|
||||||
if len(match) > 0 {
|
if len(match) > 0 {
|
||||||
m.tags["has_picture"] = "true"
|
m.tags["has_picture"] = "true"
|
||||||
|
|
|
@ -183,8 +183,7 @@ Input #0, flac, from '/Users/deluan/Downloads/06. Back In Black.flac':
|
||||||
Expect(md.Year()).To(Equal(1980))
|
Expect(md.Year()).To(Equal(1980))
|
||||||
})
|
})
|
||||||
|
|
||||||
// TODO Handle multiline tags
|
It("parses multiline tags", func() {
|
||||||
XIt("parses multiline tags", func() {
|
|
||||||
const outputWithMultilineComment = `
|
const outputWithMultilineComment = `
|
||||||
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'modulo.m4a':
|
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'modulo.m4a':
|
||||||
Metadata:
|
Metadata:
|
||||||
|
@ -212,8 +211,7 @@ Tracklist:
|
||||||
05. Vírus de Sírius
|
05. Vírus de Sírius
|
||||||
06. Doktor Fritz
|
06. Doktor Fritz
|
||||||
07. Wunderbar
|
07. Wunderbar
|
||||||
08. Quarta Dimensão
|
08. Quarta Dimensão`
|
||||||
`
|
|
||||||
md, _ := e.extractMetadata("tests/fixtures/test.mp3", outputWithMultilineComment)
|
md, _ := e.extractMetadata("tests/fixtures/test.mp3", outputWithMultilineComment)
|
||||||
Expect(md.Comment()).To(Equal(expectedComment))
|
Expect(md.Comment()).To(Equal(expectedComment))
|
||||||
})
|
})
|
||||||
|
|
|
@ -34,6 +34,7 @@ var _ = Describe("taglibExtractor", func() {
|
||||||
Expect(m.FilePath()).To(Equal("tests/fixtures/test.mp3"))
|
Expect(m.FilePath()).To(Equal("tests/fixtures/test.mp3"))
|
||||||
Expect(m.Suffix()).To(Equal("mp3"))
|
Expect(m.Suffix()).To(Equal("mp3"))
|
||||||
Expect(m.Size()).To(Equal(int64(60845)))
|
Expect(m.Size()).To(Equal(int64(60845)))
|
||||||
|
Expect(m.Comment()).To(Equal("Comment1\nComment2"))
|
||||||
|
|
||||||
m = mds["tests/fixtures/test.ogg"]
|
m = mds["tests/fixtures/test.ogg"]
|
||||||
Expect(err).To(BeNil())
|
Expect(err).To(BeNil())
|
||||||
|
|
BIN
tests/fixtures/test.mp3
vendored
BIN
tests/fixtures/test.mp3
vendored
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue