How can I use JavaScript to convert a byte array (ArrayBuffer) into a live stream video?
I have created a screen recording application in Java, which works fine and encodes the video stream using MediaCodec. Then, I send the bytes through a socket connection to JavaScript. However, I am having trouble playing the live stream after converting the bytes to a stream using JavaScript libraries such as Bradway.js and Jmuxer.js.
how to decode the byte array in to live stream video using javascript?
I have created a screen recording application in Java, which works fine and encodes the video stream using MediaCodec. Then, I send the bytes through a socket connection to JavaScript. However, I am having trouble playing the live stream after converting the bytes to a stream using JavaScript libraries such as Bradway.js and Jmuxer.js.