Is there any API which can give me the list of time stamps of the key frames for the given video file in Android?
|
For an elegant solution, it seems as if you'd need to use ffmpeg for android to achieve this. Someone else tried it that way: How to get the frame from video file in android ; and was suggested to use ffmpeg. I checked the reference manual, but could only find a way to get a keyframe itself (without timestamp) relative to a given position in time using the MediaMetadataRetriever() as explained here: http://developer.android.com/reference/android/media/MediaMetadataRetriever.html#extractMetadata%28int%29 If you don't want to use ffmpeg you could try the following:
This is of course not very elegant, but would probably work without hassle to install ffmpeg... It's probably also quite slow (I don't know). But maybe it's just what you need. PS: An ffmpeg tutorial that fits your problem can be found here: http://dranger.com/ffmpeg/tutorial07.html |
|||||||||||
|
|
I believe the correct answer is http://code.google.com/p/mp4parser/
Nice API and ways much faster than ffmpeg behemoth |
|||
|
|