We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f83157 commit 9aeaab2Copy full SHA for 9aeaab2
ATL/AudioData/IO/MP4.cs
@@ -1350,7 +1350,8 @@ private void readTag(BinaryReader source, ReadTagParams readTagParams)
1350
source.BaseStream.Seek(4, SeekOrigin.Current); // Quicktime type
1351
string strData = Utils.Latin1Encoding.GetString(source.ReadBytes(4)); // Meta data type
1352
1353
- if (!strData.Equals("mdir"))
+ // mdir and mdta both represent the same kind of metadata
1354
+ if (!strData.Equals("mdir") && !strData.Equals("mdta"))
1355
{
1356
string errMsg = "ATL does not support ";
1357
if (strData.Equals("mp7t")) errMsg += "MPEG-7 XML metadata";
0 commit comments