Where in the mp4 file structure is the duration of it?
相关问题
- Countdown to the end of the HTML5 video
- C++ a class with an array of structs, without know
- Python function to read video and convert to frame
- Character.getNumericvalue in char Frequency table
- Quickest method for matching nested XML data again
相关文章
- How to create a MediaClip from RenderTargetBitmap
- Safari blocks play() on video despite being called
- Is there an existing solution for these particular
- Why MPMoviePlayerController fullscreen button icon
- Systematically applying a function to all fields o
- Why can we add null elements to a java LinkedList?
- Skip UIImagePickerController Preview View?
- Is Heap considered an Abstract Data Type?
Basically MP4 structure is a tree. Macro areas are:
You can try this freeware MP4 Analyzer tool
http://www.thinmultimedia.co.kr/products/MP4Reader_download.html
See https://github.com/sannies/mp4parser project. It is a Java library that shows the structure of mp4 files.
Using MP4Parser http://code.google.com/p/mp4parser/ as previous poster mentioned - they even have a sample that provides duration:
https://mp4parser.googlecode.com/svn/trunk/examples/src/main/java/com/googlecode/mp4parser/GetDuration.java