I want to read from my stream in chunks of 1933 bytes. As I understand, a readablestream can be constructed to emit data upon the internal buffer reaching this given size, however, my ffmpeg call is outputting its processed data into a writable stream, not a readable stream.
I tried piping the writeable stream into a readable stream, both instances of the node-stream-buffer implementation, but that didn't work out.
Is this something that is possible?
I want to read from my stream in chunks of 1933 bytes. As I understand, a readablestream can be constructed to emit data upon the internal buffer reaching this given size, however, my ffmpeg call is outputting its processed data into a writable stream, not a readable stream.
I tried piping the writeable stream into a readable stream, both instances of the node-stream-buffer implementation, but that didn't work out.
Is this something that is possible?