https://bugs.kde.org/show_bug.cgi?id=522965

--- Comment #2 from Urs Fleisch <[email protected]> ---
How do you set the date with getid3? Are you using something like

$tagwriter = new getid3_writetags();
$tagwriter->tagformats = array('id3v2.3');
$tagData = array(
        'Year' => array('2026-04-17'),
);

This will result in a tag like

00000000: 4944 3303 0000 0000 1f76 5459 4552 0000  ID3......vTYER..
00000010: 000b 0000 0032 3032 362d 3034 2d31 3700  .....2026-04-17.

which is not valid - ID3v2.3 only support the year in TYER - but is accepted by
mediainfo. For ID3v2.4, this is OK and uses a TDRC frame.

00000000: 4944 3304 0000 0000 1f76 5444 5243 0000  ID3......vTDRC..
00000010: 000b 0000 0032 3032 362d 3034 2d31 3700  .....2026-04-17.

Both are correctly displayed by Kid3, so I still can't reproduce the problem.
Please provide a hex dump, e.g. using

xxd /path/to/file.mp3 | head

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to