summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdocs/CHANGELOG2
-rw-r--r--lib/class/vainfo.class.php9
2 files changed, 11 insertions, 0 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG
index ddefb987..f17de45d 100755
--- a/docs/CHANGELOG
+++ b/docs/CHANGELOG
@@ -4,6 +4,8 @@
--------------------------------------------------------------------------
v.3.6-Alpha2
+ - Added support for extracting MBIDs from M4A files
+ - Fixed parsing of some tag types (most notably M4A)
- Corrected PLS output to work with more players (reported by bhassel)
- Fixed an issue with compound artists in media with MusicBrainz tags
(reported by greengeek)
diff --git a/lib/class/vainfo.class.php b/lib/class/vainfo.class.php
index fef72095..f453f398 100644
--- a/lib/class/vainfo.class.php
+++ b/lib/class/vainfo.class.php
@@ -788,6 +788,15 @@ class vainfo {
}
$array['year'] = $this->_clean_tag($data['0']);
break;
+ case 'MusicBrainz Track Id':
+ $array['mb_trackid'] = $this->_clean_tag($data['0']);
+ break;
+ case 'MusicBrainz Album Id':
+ $array['mb_albumid'] = $this->_clean_tag($data['0']);
+ break;
+ case 'MusicBrainz Artist Id':
+ $array['mb_artistid'] = $this->_clean_tag($data['0']);
+ break;
} // end switch
$array[$tag] = $this->_clean_tag($data['0']);