I am trying to parse the mp4 video file to know the frame type of each frame in the video and I want to store them in separate folder .
How can this be done...??
--
You received this message because you are subscribed to the Google Groups "mp4parser-discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mp4parser-discus...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi,I assume you are talking about H264 video in an MP4 container?Then you might want to have a look at the isoviewer project and especially at the https://github.com/sannies/isoviewer/blob/master/src/main/java/com/github/sannies/isoviewer/NalWrapper.java class.Best Regards,Sebastian
Am 03.01.2015 09:31 schrieb "Rohit M" <powe...@gmail.com>:
I am trying to parse the mp4 video file to know the frame type of each frame in the video and I want to store them in separate folder .--
How can this be done...??
You received this message because you are subscribed to the Google Groups "mp4parser-discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mp4parser-discussion+unsub...@googlegroups.com.
val isoFile = new IsoFile(file) // blows up
val box = isoFile.getMovieBox
val mhb = box.getMovieHeaderBox