I have thousands of frame arrays (NumPy) with shape (3, 225, 400), which were obtained from game screens.
Each one of those frame buffers has a label (screen class and timestamp). I'd like to create a bitstream from those arrays, to be used for analysis with an RNN or similar ML technique.
Can I use FFmpeg to create a bitstream (e.g. bitrate on the y-axis, timestamp on the x-axis)?
I appreciate any help, thanks!