我希望使用 MediaMetadataRetriever 在 5 秒视频上每秒检索 10 帧并将它们存储到 Arraylist 中。我对使用 ffmpeg 不感兴趣。
目前我的应用程序正在创建 50 个静止图像 - 每秒间隔 10 个相同的帧,而不是每秒 10 个不同的帧。
public class FrameCollector {
MediaMetadataRetriever mmr;
double fps;
double duration;
long counter = 0;
long incrementer;
public FrameCollector(String path, Context context)
{
try
{
mmr = new MediaMetadataRetriever();
mmr.setDataSource(path);
SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(context);
String fpsString = pref.getString("prefFPS", "10");
fps = Double.parseDouble(fpsString);
incrementer = (long) (1000000 / fps);
String stringDuration = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION);
duration = Double.parseDouble(stringDuration) * 1000;
}
catch(Exception ex)
{
ex.printStackTrace();
}
}
public ArrayList<Bitmap> getBitmaps()
{
try
{
ArrayList<Bitmap> bitFrames = new ArrayList<Bitmap>();
Bitmap b = mmr.getFrameAtTime(counter);
while (counter < duration && b != null)
{
bitFrames.add(b);
counter += incrementer;
b = mmr.getFrameAtTime(counter);
}
return bitFrames;
}
catch (Exception ex)
{
ex.printStackTrace();
return null;
}
}
}