SD MP3 player metadata #1842
-
Hi, MP3 metadata seems to interfere with audio reading. I reworked my files removing meta, reading is perfect. I've seen a thread about a metadata filter but didn't understand how to implement it on player. MetaDataFilter filter(decoder); Actually I'm having in the loop: Would you guide me please ? Laurent |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
For the player you can use the MetaDataFilterDecoder: I2SStream i2s;
MP3DecoderHelix mp3;
MetaDataFilterDecoder filter(mp3);
AudioPlayer player(source, i2s, filter); |
Beta Was this translation helpful? Give feedback.
For the player you can use the MetaDataFilterDecoder: