Reputation: 91
I have .mov
files that I want to extract metadata from. I have tried mediainfo
, but can't get the start time and end time. How can I do it in Java?
Upvotes: 2
Views: 405
Reputation: 897
Use xuggler
: http://www.xuggle.com/xuggler
For maven:
<dependency>
<groupId>xuggle</groupId>
<artifactId>xuggle-xuggler</artifactId>
<version>5.2</version>
</dependency>
Upvotes: 1