Hi,
I'm using your wrapper with eyeD3 and everything is working as expected - not only the year tag in iTunes. I tag my mp3 with "year" - and this is not showing in iTunes.
As seen on https://rubenerd.com/eyed3-not-setting-date-correctly/ the only workaround is setting every "release-year" tag:
% eyeD3 \
--release-date 2015 \
--orig-release-date 2015 \
--recording-date 2015 \
--encoding-date 2015 \
--tagging-date 2015
Do you have any idea if its possible to implement this into your wrapper?
Thanks.
Update:
Ok, if I change the eyeD3 writer (eyeD3.js in writer folder) at line 187 into this:
case 'year':
args.push('-Y ' + value);
args.push('--orig-release-date', + value);
args.push('--recording-date', + value);
args.push('--encoding-date', + value);
args.push('--tagging-date', + value);
break;
it works. I have no clue if it's a good idea to set all this tags to the same value ... but for now it's working for me.
Hi,
I'm using your wrapper with eyeD3 and everything is working as expected - not only the year tag in iTunes. I tag my mp3 with "year" - and this is not showing in iTunes.
As seen on https://rubenerd.com/eyed3-not-setting-date-correctly/ the only workaround is setting every "release-year" tag:
Do you have any idea if its possible to implement this into your wrapper?
Thanks.
Update:
Ok, if I change the eyeD3 writer (eyeD3.js in writer folder) at line 187 into this:
it works. I have no clue if it's a good idea to set all this tags to the same value ... but for now it's working for me.