I am developing a P2P streaming application.
There are many library for playing multimedia file, but I can’t find the one that can play from byte array.
Is there any recommendation? Thank You.
I am developing a P2P streaming application. There are many library for playing multimedia
Share
Any media API worth using will accept an
InputStream. Abyte[]can be be turned into anInputStreamas simply asnew ByteArrayInputStream(byteArray);