You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 23, 2025. It is now read-only.
Hi. I have a Java Android app that writes between 30 to 50 images to disk then produces a mp4 video. Originally I have them in byte[] format but turn them into JPEG Bitmaps that then are written to files. I some conditions, this process is a bit slow, mainly because all the writing and consequent reading of the image files.
Is there any way to pass the in memory list of byte[] or list of Bitmap to ffmpeg input in order to prevent all the initial writing operations?