Skip to content

Commit 39e7127

Browse files
authored
ID3v2: Map "TSST" to "DISCSUBTITLE" property (#1087) (#1088)
1 parent 9720350 commit 39e7127

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

taglib/mpeg/id3v2/id3v2frame.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,7 @@ namespace
373373
std::make_pair("TSO2", "ALBUMARTISTSORT"), // non-standard, used by iTunes
374374
std::make_pair("TSRC", "ISRC"),
375375
std::make_pair("TSSE", "ENCODING"),
376+
std::make_pair("TSST", "DISCSUBTITLE"),
376377
// URL frames
377378
std::make_pair("WCOP", "COPYRIGHTURL"),
378379
std::make_pair("WOAF", "FILEWEBPAGE"),

tests/test_mpeg.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,7 @@ class TestMPEG : public CppUnit::TestFixture
325325
tags["COPYRIGHTURL"] = StringList("Copyright URL");
326326
tags["DATE"] = StringList("2021-01-03 12:29:23");
327327
tags["DISCNUMBER"] = StringList("3/5");
328+
tags["DISCSUBTITLE"] = StringList("Disc Subtitle");
328329
tags["DJMIXER"] = StringList("DJ Mixer");
329330
tags["ENCODEDBY"] = StringList("Encoded by");
330331
tags["ENCODING"] = StringList("Encoding");

0 commit comments

Comments
 (0)