My mp3 has a cover and i run the code, the cover has removed.
ffmetadata.write(p, data, function(err) {
if (err) {
console.log(err);
} else {
ffmetadata.read(p, function(err, data) {
if (err) console.error("Error reading metadata", err);
else console.log(data);
});
}
});