Package org.ebml.matroska

Examples of org.ebml.matroska.MatroskaFile.readFile()


       
        FileDataSource fds = new FileDataSource(filename);
       
        try {
            MatroskaFile mkf = new MatroskaFile(fds);
        mkf.readFile();
   
        double duration = mkf.getDuration();
        duration = duration > 0 ? duration / 1000 : duration;
        setDuration((int) duration);
       
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.