Package ejmf.toolkit.util

Examples of ejmf.toolkit.util.MixFileData


    public int read(File trackFile) {
  Debug.printObject("enter TrackModel.read :  " + trackFile.getName());
  MixFile mixFile = new MixFile(trackFile);

  try {
      MixFileData v = mixFile.read();

      // For each entry in MIX file, assign a Track.

      for (int i = 0; i < v.getNumberOfTracks(); i++) {
          MixTrackData d = (MixTrackData) v.getMixTrackData(i);
          assignTrack(d.mediaFileName,
      d.startTime,
            d.playingTime);
      }
  } catch (Exception e) {
View Full Code Here

TOP

Related Classes of ejmf.toolkit.util.MixFileData

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.