I am receiving an mp3 file in packets over network and want to save them in mp3 format on my computer. I am programming in C++ and using Qt Creator as IDE.
To be more specific, I am storing the received data in a QDataStream object which is automatically writing to the file it is connected to... Do I need any encoding or should I just name the file MyMusic.mp3 and that was it?
Thanks in advance