feat(downloads): add XID ISRC tag to MP4 metadata
- Added 'xid ' tag for ISRC in createMp4MetadataAtoms function
This commit is contained in:
parent
b3332084d1
commit
6c09793276
1 changed files with 1 additions and 0 deletions
|
|
@ -949,6 +949,7 @@ function createMp4MetadataAtoms(track) {
|
|||
|
||||
if (track.isrc) {
|
||||
tags['ISRC'] = track.isrc;
|
||||
tags['xid '] = ':isrc:' + track.isrc;
|
||||
}
|
||||
|
||||
if (track.copyright) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue