FFmpeg output seeking result to Android LruCache
问题 Dear fellow StackOverflower, In my Android application, I'm trying to quickly retrieve a frame from a video using ffmpeg-android-java to display in an ImageView . The problem is using a typical ffmpeg 's -ss seeking command will require to write the output into the memory which I suppose is the big hit on performance: ffmpeg -ss 00:23:00 -i Mononoke.Hime.mkv -frames:v 1 out1.jpg A typical command execution like above takes around 700 - 1200 milliseconds. So instead of writing into the memory,