Package xnap.io

Examples of xnap.io.VideoFile


    {
  jtLength.setText("");
  jtWidth.setText("");
  jtHeight.setText("");
 
  VideoFile vf = new VideoFile(getFile());

  if (vf.parse()) {
      jtLength.setText(Formatter.formatLength(vf.getLength()));
      jtHeight.setText(vf.getHeight() + "");
      jtWidth.setText(vf.getWidth() + "");

      setStatus(null);
  }
  else {
      setStatus("Not a valid video file");
View Full Code Here

TOP

Related Classes of xnap.io.VideoFile

Copyright © 2018 www.massapicom. 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.