Hi,
I'm trying to write a id3_v2 PIC frame in an existing mp3 file and can't get it working. Every other info I write seem ok but the PIC frame won't work.
Here is the code I'm using
RandomAccessFile imageFile = new RandomAccessFile(file, "r");
byte[] imagedata = new byte[(int) imageFile.length()];
imageFile.read(imagedata);
frameBody = new FrameBodyPIC((byte) 0...