feat(downloads): add XID ISRC tag to MP4 metadata

- Added 'xid ' tag for ISRC in createMp4MetadataAtoms function
This commit is contained in:
Daniel 2026-03-02 19:13:18 +00:00 committed by GitHub
parent b3332084d1
commit 6c09793276
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -949,6 +949,7 @@ function createMp4MetadataAtoms(track) {
if (track.isrc) {
tags['ISRC'] = track.isrc;
tags['xid '] = ':isrc:' + track.isrc;
}
if (track.copyright) {